diff options
author | Brian Paul <[email protected]> | 2008-08-16 09:34:12 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-16 09:34:12 -0600 |
commit | ce00d232f3c01c71fb659568e9b58da1f24b2519 (patch) | |
tree | 4e191cfe00a517763fb28b466fbceeb345d830de /progs/glsl/Makefile | |
parent | db1103ebe8a4c683805694528e0a9c7a97c5769d (diff) |
mesa: added glsl/convolutions test from gallium branch
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 7a13c189d0e..850b6bdbd1c 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -13,6 +13,7 @@ PROGS = \ bitmap \ brick \ bump \ + convolutions \ deriv \ mandelbrot \ multitex \ @@ -90,6 +91,13 @@ bump: bump.o shaderutil.o $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) bump.o shaderutil.o $(LIBS) -o $@ +convolutions.o: convolutions.c readtex.h + $(CC) -c -I$(INCDIR) $(CFLAGS) convolutions.c + +convolutions: convolutions.o readtex.o + $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) convolutions.o readtex.o $(LIBS) -o $@ + + deriv.o: deriv.c extfuncs.h shaderutil.h $(CC) -c -I$(INCDIR) $(CFLAGS) deriv.c |