aboutsummaryrefslogtreecommitdiff
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 1d60747..e09682b 100644
--- a/Makefile
+++ b/Makefile
@@ -15,9 +15,12 @@ __CFLAGS := -std=c99 -Wall \
-DFTAG_VERSION=\"$(FTAG_VERSION)\" \
-D_POSIX_C_SOURCE=200809L \
$(shell pkg-config --cflags sqlite3) \
+ $(shell pkg-config --cflags readline) \
-I./uconfig/include
__LDFLAGS := -L./uconfig
-__LIBS := $(shell pkg-config --libs sqlite3) -luconfig
+__LIBS := -luconfig \
+ $(shell pkg-config --libs sqlite3) \
+ $(shell pkg-config --libs readline)
all: $(PROG)