diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-08-02 12:42:25 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-08-02 12:42:25 +0200 |
| commit | cb2e54162f127615732e456b4f2cdc8224ad6f15 (patch) | |
| tree | 63388f3918561669ed13b14342c90975ef41cebc /Makefile | |
| parent | 4ad36d52c2687c52a4fb82521a50a248894f4d14 (diff) | |
Start integrating Readline
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) |
