new Makefiles for subset

This commit is contained in:
Brian Paul 2003-01-17 21:21:57 +00:00
parent f58e67787f
commit 8a63d4bc99

24
progs/demos/Makefile Normal file
View file

@ -0,0 +1,24 @@
PROGS = gears \
glinfo \
morph3d \
texobj
##### RULES #####
.SUFFIXES:
.SUFFIXES: .c
# make executable from .c file:
.c: $(LIB_DEP)
gcc -I../include -g $< -L../lib -lglut -lGL -lm -o $@
default: $(PROGS)
clean:
-rm *.o *~