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

@ -14,7 +14,7 @@ HEADERS=$(wildcard *.h)
all: ${FILES}
echo "LINK i3-input"
$(CC) -o i3-input ${FILES} $(LDFLAGS)
$(CC) $(LDFLAGS) -o i3-input ${FILES} $(LIBS)
install: all
echo "INSTALL"