CFLAGS = -O -I/home/dms/dave/include -I/home/dms/dave/424/include CPPFLAGS = $(CFLAGS) LFLAGS = -O LIBS = -L/home/dms/dave/424/lib -ldms \ -lglut -lGLU -lGL -L/usr/X11R6/lib -lX11 -lm \ -L/home/dms/dave/lib -limage -ltiff ALLTARGETS = example0 example1 example2 example3 all: $(ALLTARGETS) clean: rm -f $(ALLTARGETS) *.o example0: example0.o c++ $(LFLAGS) -o example0 example0.o $(LIBS) example1: example1.o c++ $(LFLAGS) -o example1 example1.o $(LIBS) example2: example2.o c++ $(LFLAGS) -o example2 example2.o $(LIBS) example3: example3.o c++ $(LFLAGS) -o example3 example3.o $(LIBS)