export FTAG_ROOT := $(shell pwd) export __CFLAGS := -std=c99 -Wall -DFTAG_ROOT=\"$(FTAG_ROOT)\" -D_POSIX_C_SOURCE=200809L 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