diff options
author | Brian <[email protected]> | 2007-01-16 14:55:43 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-01-16 14:55:43 -0700 |
commit | f44ba11815fecedbbcd9eaaa9c43d2fd6537b88e (patch) | |
tree | fd7c232f8955ccf41870fd944648ab61fe15e8f2 /progs/glsl/Makefile | |
parent | 9b5dc1358a82949aaf9a25abb18c5df64d5f01a1 (diff) |
Added toyball and bumpmap tests using shaders from the OpenGL Shading Language (orange) book.
Diffstat (limited to 'progs/glsl/Makefile')
-rw-r--r-- | progs/glsl/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index 174f5bebe4d..fa7f191986e 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -15,7 +15,9 @@ LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) $(T PROGS = \ brick \ - mandelbrot + bump \ + mandelbrot \ + toyball ##### RULES ##### @@ -33,7 +35,9 @@ PROGS = \ default: $(PROGS) -$(PROGS): + + +##### Extra dependencies extfuncs.h: $(TOP)/progs/util/extfuncs.h cp $< . @@ -41,8 +45,12 @@ extfuncs.h: $(TOP)/progs/util/extfuncs.h brick.c: extfuncs.h +bump.c: extfuncs.h + mandelbrot.c: extfuncs.h +toyball.c: extfuncs.h + clean: -rm -f $(PROGS) |