diff options
author | Brian Paul <[email protected]> | 2008-12-19 16:56:56 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-12-19 16:56:56 -0700 |
commit | 58a82ee57f1e1e67387dd860ac253223db250789 (patch) | |
tree | 031ee528fc49bec03d767c8c697f40d15a9ed616 /progs/glsl | |
parent | 9c8db8685432fedd068157795422764ce96b89a0 (diff) | |
parent | f83f5ec8f5f1159cfd0ec2596ceab725c073266e (diff) |
Merge commit 'origin/master' into gallium-0.2
Diffstat (limited to 'progs/glsl')
-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 0849223cd82..ff6359d0344 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -202,6 +202,14 @@ vert-or-frag-only: vert-or-frag-only.o shaderutil.o +vert-or-frag-only.o: vert-or-frag-only.c extfuncs.h shaderutil.h + $(CC) -c -I$(INCDIR) $(CFLAGS) vert-or-frag-only.c + +vert-or-frag-only: vert-or-frag-only.o shaderutil.o + $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) vert-or-frag-only.o shaderutil.o $(LIBS) -o $@ + + + vert-tex.o: vert-tex.c extfuncs.h shaderutil.h $(APP_CC) -c -I$(INCDIR) $(CFLAGS) vert-tex.c |