From 7f10a53e805f26f3c6e0cceea5569b40a43af275 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 29 Nov 2014 21:49:46 +0100 Subject: first starting worker --- src/GNUmakefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/GNUmakefile') diff --git a/src/GNUmakefile b/src/GNUmakefile index eb4bfb9..3a574e2 100644 --- a/src/GNUmakefile +++ b/src/GNUmakefile @@ -6,7 +6,9 @@ CFLAGS = -g -O0 -std=c99 -Wall -pedantic -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE CFLAGS += -I/usr/local/include -I3rdParty/linenoise -I3rdParty/http_tiny CFLAGS += `pkg-config --cflags glib-2.0` LDFLAGS = -L/usr/local/lib +LDFLAGS += `pkg-config --libs-only-L glib-2.0` LIBS = -lconfuse -lpthread -lnanomsg -ljson-c -lmicrohttpd +LIBS += `pkg-config --libs-only-l glib-2.0` %.o : %.c $(CC) $(CFLAGS) -c -o $@ $< -- cgit v1.2.3-54-g00ecf