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