summaryrefslogtreecommitdiff
path: root/src/gallium/tests/trivial/Makefile
diff options
context:
space:
mode:
authorJakob Bornecrantz <wallbraker@gmail.com>2010-07-04 01:35:05 +0100
committerJakob Bornecrantz <wallbraker@gmail.com>2010-07-04 13:31:55 +0100
commited5ce78b8146a485f418a3ca06e545ab297f6f93 (patch)
treee385ca23f2103c0cadf3b3cf671154df744a1203 /src/gallium/tests/trivial/Makefile
parentabbb96b2fe4173f1234ae357786fbff54f7bb9d6 (diff)
gallium: Make trivial examples use target helpers
Diffstat (limited to 'src/gallium/tests/trivial/Makefile')
-rw-r--r--src/gallium/tests/trivial/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/tests/trivial/Makefile b/src/gallium/tests/trivial/Makefile
index bfcbdd9712..2ed63419c7 100644
--- a/src/gallium/tests/trivial/Makefile
+++ b/src/gallium/tests/trivial/Makefile
@@ -12,7 +12,9 @@ INCLUDES = \
$(PROG_INCLUDES)
LINKS = \
+ $(TOP)/src/gallium/drivers/rbug/librbug.a \
$(TOP)/src/gallium/drivers/trace/libtrace.a \
+ $(TOP)/src/gallium/drivers/galahad/libgalahad.a \
$(TOP)/src/gallium/winsys/sw/null/libws_null.a \
$(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
$(GALLIUM_AUXILIARIES) \
@@ -26,6 +28,9 @@ OBJECTS = $(SOURCES:.c=.o)
PROGS = $(OBJECTS:.o=)
+PROG_DEFINES = \
+ -DGALLIUM_SOFTPIPE -DGALLIUM_RBUG -DGALLIUM_TRACE -DGALLIUM_GALAHAD
+
##### TARGETS #####
default: $(PROGS)