summaryrefslogtreecommitdiff
path: root/progs/tests/Makefile
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2009-03-12 15:07:22 +0100
committerRoland Scheidegger <sroland@vmware.com>2009-03-12 15:07:22 +0100
commit45b8e76b5ced9f9fddf2d41ce8c64d2f642a5786 (patch)
tree79cccff7ab5a9cfec193d388d21e55f91f1205d5 /progs/tests/Makefile
parent3327cc64e7fdc13d3843ccb17763f68dd381185f (diff)
mesa test prog for ATI_envmap_bumpmap
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r--progs/tests/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile
index b6ce44008d..eb6b6bd639 100644
--- a/progs/tests/Makefile
+++ b/progs/tests/Makefile
@@ -28,6 +28,7 @@ SOURCES = \
blendsquare.c \
blendxor.c \
bufferobj.c \
+ bumpmap.c \
bug_3050.c \
bug_3101.c \
bug_3195.c \
@@ -147,6 +148,12 @@ afsmultiarb: afsmultiarb.o readtex.o
afsmultiarb.o: afsmultiarb.c readtex.h
$(APP_CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) afsmultiarb.c -o $@
+bumpmap: bumpmap.o readtex.o
+ $(CC) $(CFLAGS) $(LDFLAGS) bumpmap.o readtex.o $(LIBS) -o $@
+
+bumpmap.o: bumpmap.c readtex.h
+ $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) bumpmap.c -o $@
+
drawbuffers: drawbuffers.o
$(APP_CC) $(CFLAGS) $(LDFLAGS) drawbuffers.o $(LIBS) -o $@