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