From 3caf569a1f1602335c5a57bf666f1bd6d48dd147 Mon Sep 17 00:00:00 2001 From: FRuffy Date: Mon, 10 Apr 2017 19:56:19 -0700 Subject: [PATCH] Fix makefile, switch ${OBS} and ${LIBS}. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f37eca..9935214 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ ndppd.conf.5.gz: ${GZIP} < ndppd.conf.5 > ndppd.conf.5.gz ndppd: ${OBJS} - ${CXX} -o ndppd ${LDFLAGS} ${LIBS} ${OBJS} + ${CXX} -o ndppd ${LDFLAGS} ${OBJS} ${LIBS} nd-proxy: nd-proxy.c ${CXX} -o nd-proxy -Wall -Werror ${LDFLAGS} `${PKG_CONFIG} --cflags glib-2.0` nd-proxy.c `${PKG_CONFIG} --libs glib-2.0`