diff options
author | Brian Paul <[email protected]> | 2008-10-07 16:24:43 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-10-07 16:24:43 -0600 |
commit | b99c39ea7bf7ff3d6c0fe8599ce25a6b6bf154fd (patch) | |
tree | 6079dfa1928c8d4d7a8d6e2510f7ae8c711bf45c /progs/glsl/Makefile | |
parent | 800c350d71132bbb5126bd89310df540332978f4 (diff) |
mesa: use the shaderutil.c helper functions
Diffstat (limited to 'progs/glsl/Makefile')
-rw-r--r-- | progs/glsl/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index eacd6dfe098..04c1d25ed7f 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -107,6 +107,13 @@ deriv: deriv.o shaderutil.o $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) deriv.o shaderutil.o $(LIBS) -o $@ +identity.o: identity.c extfuncs.h shaderutil.h + $(APP_CC) -c -I$(INCDIR) $(CFLAGS) identity.c + +identity: identity.o shaderutil.o + $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) identity.o shaderutil.o $(LIBS) -o $@ + + mandelbrot.o: mandelbrot.c extfuncs.h shaderutil.h $(APP_CC) -c -I$(INCDIR) $(CFLAGS) mandelbrot.c |