summaryrefslogtreecommitdiff
path: root/src/gallium/tests/trivial
diff options
context:
space:
mode:
authorJakob Bornecrantz <wallbraker@gmail.com>2010-04-18 02:43:47 +0100
committerJakob Bornecrantz <wallbraker@gmail.com>2010-04-18 02:50:35 +0100
commit29ff6e87f50808708f53ab0531d3da4cf7db4475 (patch)
tree79ec4a40e0deb6de4d3e3b833970524b6e4db3ce /src/gallium/tests/trivial
parent0b4df63609e9fb25319debd56142a90b11d75671 (diff)
gallium/tests: Make trivial apps depend on libs
Diffstat (limited to 'src/gallium/tests/trivial')
-rw-r--r--src/gallium/tests/trivial/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/tests/trivial/Makefile b/src/gallium/tests/trivial/Makefile
index 346e33c28e..bfcbdd9712 100644
--- a/src/gallium/tests/trivial/Makefile
+++ b/src/gallium/tests/trivial/Makefile
@@ -40,5 +40,5 @@ clean:
$(OBJECTS): %.o: %.c
$(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $(PROG_DEFINES) $< -o $@
-$(PROGS): %: %.o
+$(PROGS): %: %.o $(LINKS)
$(CC) $(LDFLAGS) $< $(LINKS) -lm -lpthread -ldl -o $@