diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |
