CFLAGS = -O -I. LFLAGS = -O LIBS = -lglut -lGLU -lGL -L/usr/X11R6/lib -lX11 -lm -L. -limage ALLTARGETS = texture0 texture1 texture2 texture3 texture4 texture5 all: $(ALLTARGETS) clean: rm -f $(ALLTARGETS) *.o texture0: texture0.o cc $(LFLAGS) -o texture0 texture0.o $(LIBS) texture1: texture1.o cc $(LFLAGS) -o texture1 texture1.o $(LIBS) texture2: texture2.o cc $(LFLAGS) -o texture2 texture2.o $(LIBS) texture3: texture3.o cc $(LFLAGS) -o texture3 texture3.o $(LIBS) texture4: texture4.o cc $(LFLAGS) -o texture4 texture4.o $(LIBS) texture5: texture5.o cc $(LFLAGS) -o texture5 texture5.o $(LIBS)