diff options
author | Brian Paul <[email protected]> | 2006-07-04 21:43:21 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-07-04 21:43:21 +0000 |
commit | 1ff8daf21e570fe9525bc5075ecdd52d424891c8 (patch) | |
tree | 0aff7cee95d66230c3d26559aef984acbb45d387 /progs/demos/Makefile | |
parent | 1ad914575a89f3fdbfa5bce863e14f8d4679ed3b (diff) |
New animated engine demo.
Diffstat (limited to 'progs/demos/Makefile')
-rw-r--r-- | progs/demos/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/demos/Makefile b/progs/demos/Makefile index aadf33e1ba5..44b79c26f1d 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 *~ |