aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2026-05-31 17:27:25 +0200
committerTristan Riehs <tristan.riehs@inria.fr>2026-05-31 17:27:25 +0200
commit784b87aab4add9db1d316d85c85f1aa40d63ac00 (patch)
tree4e032ad8c793c7d562afc876d5d463b2aa37a286 /Makefile
parent9b69b2ff7563fb89ea8589d307a1c0b83cd6ed7f (diff)
Integrate config to the rest of the code
Compile-time values such as DATABASE_PATH are no longer needed.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 0 insertions, 7 deletions
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) \