From d547f1ca7708004ef5515ef14dafdff365b2d064 Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Sun, 31 May 2026 11:50:23 +0200 Subject: Actually add the uconfig submodule --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a31484b..e598f42 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,6 @@ export FTAG_CONFIG_DIR ?= $(shell pwd)/ftag_config export PROG ?= ftag export CFLAGS ?= -O0 -g3 -export UCONFIG_ROOT ?= /usr/local export LDFLAGS ?= export LIBS ?= @@ -24,9 +23,9 @@ export __CFLAGS := -std=c99 -Wall \ -DFTAG_VERSION=\"$(FTAG_VERSION)\" \ -D_POSIX_C_SOURCE=200809L \ $(shell pkg-config --cflags sqlite3) \ - -I$(UCONFIG_ROOT)/include -export __LDFLAGS := -L$(UCONFIG_ROOT)/lib -export __LIBS := $(shell pkg-config --libs sqlite3) -l uconfig + -I./uconfig/include +export __LDFLAGS := -L./uconfig +export __LIBS := $(shell pkg-config --libs sqlite3) -luconfig all: $(PROG) -- cgit v1.2.3