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 \ -lInventor -lInventorXt -lglut -lGLU -lGL -L/usr/X11R6/lib -lX11 -lm \ -L/home/dms/dave/lib -limage -ltiff ALLTARGETS = ivdraw0 ivdraw1 \ texTranslate texRotate texXform texSphere texGrow texIv all: $(ALLTARGETS) clean: rm -f $(ALLTARGETS) *.o ivdraw0: ivdraw0.o c++ $(LFLAGS) -o ivdraw0 ivdraw0.o $(LIBS) ivdraw1: ivdraw1.o InventorModel.o c++ $(LFLAGS) -o ivdraw1 ivdraw1.o InventorModel.o $(LIBS) texTranslate: texTranslate.o c++ $(LFLAGS) -o texTranslate texTranslate.o $(LIBS) texRotate: texRotate.o c++ $(LFLAGS) -o texRotate texRotate.o $(LIBS) texXform: texXform.o c++ $(LFLAGS) -o texXform texXform.o $(LIBS) texSphere: texSphere.o c++ $(LFLAGS) -o texSphere texSphere.o $(LIBS) texGrow: texGrow.o c++ $(LFLAGS) -o texGrow texGrow.o $(LIBS) texIv: texIv.o InventorModel.o c++ $(LFLAGS) -o texIv texIv.o InventorModel.o $(LIBS)