diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2005-01-08 23:51:50 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2005-01-08 23:51:50 +0000 |
commit | 0261042bebe4c17afd3b581fac0ab5274dac3740 (patch) | |
tree | 7541e3dc03e0fe7fdca8d6ae3cec2cfde8330290 /progs/samples | |
parent | b45ce5c6079afc9be98e2c2ad50897455b33c5bc (diff) |
fix-up rules for sphere demo, which uses readtex utility
Diffstat (limited to 'progs/samples')
-rw-r--r-- | progs/samples/Makefile | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/progs/samples/Makefile b/progs/samples/Makefile index 36de6e28cf..2b8ea09fa1 100644 --- a/progs/samples/Makefile +++ b/progs/samples/Makefile @@ -18,8 +18,7 @@ PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \ .SUFFIXES: .c .c: $(LIB_DEP) - $(CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@ - + $(CC) -I$(INCDIR) $(CFLAGS) $< readtex.o $(APP_LIB_DEPS) -o $@ ##### TARGETS ##### @@ -27,6 +26,22 @@ PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \ default: $(PROGS) +sphere: sphere.o readtex.o + $(CC) -I$(INCDIR) $(CFLAGS) sphere.o readtex.o $(APP_LIB_DEPS) -o $@ + +sphere.o: sphere.c readtex.h + $(CC) -c -I$(INCDIR) $(CFLAGS) sphere.c + +readtex.c: ../util/readtex.c + cp ../util/readtex.c . + +readtex.h: ../util/readtex.h + cp ../util/readtex.h . + +readtex.o: readtex.c readtex.h + $(CC) -c -I$(INCDIR) $(CFLAGS) $< -o $@ + + clean: -rm -f $(PROGS) -rm -f *.o *~ |