diff options
author | Brian Paul <[email protected]> | 2008-05-20 11:01:17 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-20 11:01:17 -0600 |
commit | 4978953c7962f33fa1eddbe75e5ef3736fbe7f06 (patch) | |
tree | 449e1e1f2f166c470a68c706196cef483c811def /progs/glsl/Makefile | |
parent | b6fb0940c226373ac235a5d327d3fcfd742bc6b9 (diff) |
new multi-texture GLSL test
Diffstat (limited to 'progs/glsl/Makefile')
-rw-r--r-- | progs/glsl/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index ff8fbeb99bb..7e769d07465 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -15,6 +15,7 @@ PROGS = \ bump \ deriv \ mandelbrot \ + multitex \ noise \ points \ texdemo1 \ @@ -102,6 +103,13 @@ mandelbrot: mandelbrot.o shaderutil.o $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) mandelbrot.o shaderutil.o $(LIBS) -o $@ +multitex.o: multitex.c extfuncs.h shaderutil.h + $(CC) -c -I$(INCDIR) $(CFLAGS) multitex.c + +multitex: multitex.o readtex.o shaderutil.o + $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) multitex.o readtex.o shaderutil.o $(LIBS) -o $@ + + noise.o: noise.c extfuncs.h shaderutil.h $(CC) -c -I$(INCDIR) $(CFLAGS) noise.c |