diff options
author | Brian Paul <[email protected]> | 2009-08-13 12:52:13 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-13 12:52:13 -0600 |
commit | ae99e4c67ebc3adb0b71e427723f34085801c3ac (patch) | |
tree | af58f9b6a8adcf9bed2ed6effd548c8c884ae10d /progs/glsl/Makefile | |
parent | 03ba461c1956a466f1c6cb885d208b7a7ac4b4fe (diff) |
progs/glsl: new shtest program, a simple shader test harness app
This commit includes some sample config files (*.shtest)
Diffstat (limited to 'progs/glsl/Makefile')
-rw-r--r-- | progs/glsl/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index eedd866c957..bbe08c46ac0 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -33,6 +33,7 @@ DEMO_SOURCES = \ points.c \ samplers.c \ shadow_sampler.c \ + shtest.c \ skinning.c \ texaaline.c \ texdemo1.c \ @@ -198,9 +199,14 @@ shadow_sampler.o: $(UTIL_HEADERS) shadow_sampler: shadow_sampler.o $(UTIL_OBJS) -skinning.o: $(UTIL_HEADERS) +shtest.o: $(UTIL_HEADERS) -skinning: skinning.o $(UTIL_OBJS) +shtest: shtest.o $(UTIL_OBJS) + + +shtest.o: $(UTIL_HEADERS) + +shtest: shtest.o $(UTIL_OBJS) texaaline.o: $(UTIL_HEADERS) |