summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0495d56..f4dea37 100644
--- a/Makefile
+++ b/Makefile
@@ -45,6 +45,9 @@ CFLAGS += -pedantic
CFLAGS += -isystem/usr/local/include
# CFLAGS += -march=native -O2 -pipe
+LDFLAGS := -L/usr/local/lib
+LDFLAGS += -lmpd
+
RM := rm -f
MKDIR := mkdir -p
SED := sed -i ''
@@ -59,7 +62,7 @@ INSTALL := install
${CC} -c ${CFLAGS} -o ${.TARGET} ${.IMPSRC}
${NAME}: ${OBJS}
- ${CC} ${CFLAGS} -o ${.TARGET} ${.ALLSRC}
+ ${CC} ${CFLAGS} -o ${.TARGET} ${.ALLSRC} ${LDFLAGS}
all: ${OBJS_DIR} ${NAME}