diff options
author | Brian Paul <[email protected]> | 2008-08-13 08:49:39 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-13 08:49:39 -0600 |
commit | b9c6f2b1330a71042d3c495a1c97c4cadeff71b5 (patch) | |
tree | 2fd89a34962f0635fd17939428a3ce5c918b5709 /progs/glsl/Makefile | |
parent | 60b92129b1334bd8a1dea3dcf153871f0e73f756 (diff) |
mesa: added new glsl/pointcoord.c 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 e3f205cdb92..7a13c189d0e 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -18,6 +18,7 @@ PROGS = \ multitex \ noise \ points \ + pointcoord \ texdemo1 \ toyball \ twoside \ @@ -124,6 +125,13 @@ points: points.o shaderutil.o $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) points.o shaderutil.o $(LIBS) -o $@ +pointcoord.o: pointcoord.c readtex.h extfuncs.h shaderutil.h + $(CC) -c -I$(INCDIR) $(CFLAGS) pointcoord.c + +pointcoord: pointcoord.o readtex.o shaderutil.o + $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) pointcoord.o readtex.o shaderutil.o $(LIBS) -o $@ + + texdemo1.o: texdemo1.c readtex.h extfuncs.h shaderutil.h $(CC) -c -I$(INCDIR) $(CFLAGS) texdemo1.c |