summaryrefslogtreecommitdiff
path: root/src/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-05-30 17:21:37 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-05-30 17:21:37 +0200
commit3edc21dfc5182d4e96888b1667f05f9aaef88623 (patch)
tree3368bd4644bfdd933194d0f828b484898455f65e /src/GNUmakefile
parent3eec45a48d03fff4e8653dc8fd5617f74c64f3a8 (diff)
downloadbiruda-3edc21dfc5182d4e96888b1667f05f9aaef88623.tar.gz
biruda-3edc21dfc5182d4e96888b1667f05f9aaef88623.tar.bz2
ported and added docu for NetBSD
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r--src/GNUmakefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile
index 2f32b49..bba3ad0 100644
--- a/src/GNUmakefile
+++ b/src/GNUmakefile
@@ -8,8 +8,14 @@ CFLAGS = -g -O0 -std=c99 -Wall -pedantic -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE
#CFLAGS = -g
CFLAGS += -I/usr/local/include -I3rdParty/linenoise -I3rdParty/http_tiny
CFLAGS += `pkg-config --cflags glib-2.0`
+CFLAGS += `pkg-config --cflags libconfuse`
+CFLAGS += `pkg-config --cflags json-c`
+CFLAGS += `pkg-config --cflags libmicrohttpd`
LDFLAGS = -L/usr/local/lib
LDFLAGS += `pkg-config --libs-only-L glib-2.0`
+LDFLAGS += `pkg-config --libs-only-L libconfuse`
+LDFLAGS += `pkg-config --libs-only-L json-c`
+LDFLAGS += `pkg-config --libs-only-L libmicrohttpd`
LIBS = -lconfuse -lpthread -lnanomsg -ljson-c -lmicrohttpd
LIBS += `pkg-config --libs-only-l glib-2.0`