blob: 288082b0aa9bc420e204170dbd4a676aafd45faa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export FTAG_ROOT := $(shell pwd)
export __CFLAGS := -std=c99 -Wall -DFTAG_ROOT=\"$(FTAG_ROOT)\"
export __LIBS := $(shell pkg-config --libs sqlite3)
export PROG ?= ftag
export CFLAGS ?= -O0 -g3
all: $(PROG)
$(PROG):
make -C src
clean:
make -C src clean
rm -f $(PROG)
.PHONY: all clean
|