diff options
author | Brian <brian@nostromo.localnet.net> | 2007-04-08 15:42:26 -0600 |
---|---|---|
committer | Brian <brian@nostromo.localnet.net> | 2007-04-08 15:42:26 -0600 |
commit | 9612a3011f52ab98b42e48d0eed76b68bca92e57 (patch) | |
tree | d3d11985199186c16e3897d36e8eba44038a7100 | |
parent | 0d3d930912d0e4c78f5e4785625614fe8b5b613e (diff) |
fix some dependencies, remove some CFLAGS
-rw-r--r-- | progs/demos/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/progs/demos/Makefile b/progs/demos/Makefile index 6369746f00..cf96828ed7 100644 --- a/progs/demos/Makefile +++ b/progs/demos/Makefile @@ -118,34 +118,39 @@ extfuncs.h: $(TOP)/progs/util/extfuncs.h reflect: reflect.o showbuffer.o readtex.o - $(CC) -I$(INCDIR) $(CFLAGS) reflect.o showbuffer.o readtex.o $(APP_LIB_DEPS) -o $@ + $(CC) reflect.o showbuffer.o readtex.o $(APP_LIB_DEPS) -o $@ reflect.o: reflect.c showbuffer.h $(CC) -c -I$(INCDIR) $(CFLAGS) reflect.c shadowtex: shadowtex.o showbuffer.o - $(CC) -I$(INCDIR) $(CFLAGS) shadowtex.o showbuffer.o $(APP_LIB_DEPS) -o $@ + $(CC) shadowtex.o showbuffer.o $(APP_LIB_DEPS) -o $@ shadowtex.o: shadowtex.c showbuffer.h $(CC) -c -I$(INCDIR) $(CFLAGS) shadowtex.c gloss: gloss.o trackball.o readtex.o - $(CC) -I$(INCDIR) $(CFLAGS) gloss.o trackball.o readtex.o $(APP_LIB_DEPS) -o $@ + $(CC) gloss.o trackball.o readtex.o $(APP_LIB_DEPS) -o $@ 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 $@ + $(CC) engine.o trackball.o readtex.o $(APP_LIB_DEPS) -o $@ engine.o: engine.c trackball.h $(CC) -c -I$(INCDIR) $(CFLAGS) engine.c -fslight.c: extfuncs.h +fslight: fslight.o + $(CC) fslight.o $(APP_LIB_DEPS) -o $@ + +fslight.o: fslight.c extfuncs.h + $(CC) -c -I$(INCDIR) $(CFLAGS) fslight.c + clean: |