Makefile: respect and use LIBS (Thanks Kacper)

This commit is contained in:
Michael Stapelberg
2011-07-13 13:28:31 +02:00
parent 93f906308d
commit 3749ed2fbe
6 changed files with 22 additions and 22 deletions

View File

@ -25,7 +25,7 @@ src/%.o: src/%.c ${HEADERS}
all: src/cfgparse.y.o src/cfgparse.yy.o src/cmdparse.y.o src/cmdparse.yy.o ${FILES}
echo "LINK i3"
$(CC) -o i3 $^ $(LDFLAGS)
$(CC) $(LDFLAGS) -o i3 $^ $(LIBS)
loglevels.h:
echo "LOGLEVELS"