diff options
author | Jakob Bornecrantz <[email protected]> | 2010-07-04 01:35:05 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-07-04 13:31:55 +0100 |
commit | ed5ce78b8146a485f418a3ca06e545ab297f6f93 (patch) | |
tree | e385ca23f2103c0cadf3b3cf671154df744a1203 /src/gallium/tests/trivial/Makefile | |
parent | abbb96b2fe4173f1234ae357786fbff54f7bb9d6 (diff) |
gallium: Make trivial examples use target helpers
Diffstat (limited to 'src/gallium/tests/trivial/Makefile')
-rw-r--r-- | src/gallium/tests/trivial/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/tests/trivial/Makefile b/src/gallium/tests/trivial/Makefile index bfcbdd9712d..2ed63419c7e 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) |