From 784b87aab4add9db1d316d85c85f1aa40d63ac00 Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Sun, 31 May 2026 17:27:25 +0200 Subject: Integrate config to the rest of the code Compile-time values such as DATABASE_PATH are no longer needed. --- Makefile | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7cd7651..f6473ce 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,5 @@ # Temporary development value, real default will be /usr/local export PREFIX ?= $(shell pwd)/ftag_prefix -# Temporary development value, real default will be $HOME/.cache/ftag -export FTAG_CACHE_DIR ?= $(shell pwd)/ftag_cache -# Temporary development value, real default will be $HOME/.config/ftag -export FTAG_CONFIG_DIR ?= $(shell pwd)/ftag_config - export PROG ?= ftag export CFLAGS ?= -O0 -g3 export LDFLAGS ?= @@ -18,8 +13,6 @@ FTAG_ARCHIVE := ftag-$(FTAG_VERSION).tar.gz export __CFLAGS := -std=c99 -Wall \ -DFTAG_PREFIX=\"$(PREFIX)\" \ - -DFTAG_CACHE_DIR=\"$(FTAG_CACHE_DIR)\" \ - -DFTAG_CONFIG_DIR=\"$(FTAG_CONFIG_DIR)\" \ -DFTAG_VERSION=\"$(FTAG_VERSION)\" \ -D_POSIX_C_SOURCE=200809L \ $(shell pkg-config --cflags sqlite3) \ -- cgit v1.2.3