summaryrefslogtreecommitdiff
path: root/progs/glsl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'progs/glsl/Makefile')
-rw-r--r--progs/glsl/Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile
index 174f5bebe4..fa7f191986 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)