# This Makefile has been simplified as much as possible, by putting all # generic material, independent of this specific directory, into # ../Rules.make. Read that file for details TOPDIR := $(shell cd .; pwd) include $(TOPDIR)/Rules.make CFLAGS += -O2 -I.. # To please automatic compilation, no TARGET is there, only OBJS OBJS = video.o all: $(OBJS) install: install -d $(INSTALLDIR) install -c video.o $(INSTALLDIR) clean: rm -f *.o *~ core