gallium/tests: Make trivial apps depend on libs

This commit is contained in:
Jakob Bornecrantz 2010-04-18 02:43:47 +01:00
parent 0b4df63609
commit 29ff6e87f5

View file

@ -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 $@