]> git.sur5r.net Git - i3/i3/commitdiff
makefile: use LDFLAGS when linking test.commands_parser (Thanks Marcus)
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 2 May 2012 18:00:50 +0000 (20:00 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 2 May 2012 18:00:50 +0000 (20:00 +0200)
Makefile

index 25290b81318e52ad558c90a20c02ab751915412a..192d3d78cf370aa90ccbbf86ee5d9342aa81d36b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -67,7 +67,7 @@ include/GENERATED_tokens.h: include/GENERATED_call.h
 # and once as an object file for i3.
 src/commands_parser.o: src/commands_parser.c ${HEADERS} ${CMDPARSE_HEADERS}
        echo "[i3] CC $<"
-       $(CC) $(CPPFLAGS) $(CFLAGS) -DTEST_PARSER -DLOGLEVEL="((uint64_t)1 << $(shell awk '/$(shell basename $< .c)/ { print NR; exit 0; }' loglevels.tmp))" -o test.commands_parser $< $(LIBS)
+       $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -DTEST_PARSER -DLOGLEVEL="((uint64_t)1 << $(shell awk '/$(shell basename $< .c)/ { print NR; exit 0; }' loglevels.tmp))" -o test.commands_parser $< $(LIBS)
        $(CC) $(CPPFLAGS) $(CFLAGS) -DLOGLEVEL="((uint64_t)1 << $(shell awk '/$(shell basename $< .c)/ { print NR; exit 0; }' loglevels.tmp))" -c -o $@ $<
 
 src/cfgparse.yy.o: src/cfgparse.l src/cfgparse.y.o ${HEADERS}