summaryrefslogtreecommitdiff
path: root/progs/demos/Makefile
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-07-04 21:43:21 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-07-04 21:43:21 +0000
commit1ff8daf21e570fe9525bc5075ecdd52d424891c8 (patch)
tree0aff7cee95d66230c3d26559aef984acbb45d387 /progs/demos/Makefile
parent1ad914575a89f3fdbfa5bce863e14f8d4679ed3b (diff)
New animated engine demo.
Diffstat (limited to 'progs/demos/Makefile')
-rw-r--r--progs/demos/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/demos/Makefile b/progs/demos/Makefile
index aadf33e1ba..44b79c26f1 100644
--- a/progs/demos/Makefile
+++ b/progs/demos/Makefile
@@ -21,6 +21,7 @@ PROGS = \
clearspd \
cubemap \
drawpix \
+ engine \
fire \
fogcoord \
fplight \
@@ -131,6 +132,13 @@ gloss.o: gloss.c trackball.h
$(CC) -c -I$(INCDIR) $(CFLAGS) gloss.c
+engine: engine.o trackball.o readtex.o
+ $(CC) -I$(INCDIR) $(CFLAGS) engine.o trackball.o readtex.o $(APP_LIB_DEPS) -o $@
+
+engine.o: engine.c trackball.h
+ $(CC) -c -I$(INCDIR) $(CFLAGS) engine.c
+
+
clean:
-rm -f $(PROGS)
-rm -f *.o *~