aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 5ae355e..8028648 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
-export FTAG_ROOT ?= $(shell pwd)
-export PROG ?= ftag
-export CFLAGS ?= -O0 -g3
-export LDFLAGS ?=
-export LIBS ?=
+export FTAG_ROOT ?= $(shell pwd)/ftag
+export PROG ?= ftag
+export CFLAGS ?= -O0 -g3
+export LDFLAGS ?=
+export LIBS ?=
export __CFLAGS := -std=c99 -Wall \
-DFTAG_ROOT=\"$(FTAG_ROOT)\" \
-D_POSIX_C_SOURCE=200809L \
$(shell pkg-config --cflags sqlite3)
-export __LIBS := $(shell pkg-config --libs sqlite3)
+export __LIBS := $(shell pkg-config --libs sqlite3)
all: $(PROG)