From cb2e54162f127615732e456b4f2cdc8224ad6f15 Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Sun, 2 Aug 2026 12:42:25 +0200 Subject: Start integrating Readline --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit v1.2.3