xref: /f-stack/example/Makefile (revision a9643ea8)
1LIBS = $(shell pkg-config --define-variable=TOPDIR=${CURDIR}/.. --libs f-stack.pc)
2TARGET="helloworld"
3all:
4	cc -O -gdwarf-2  -I../lib -o ${TARGET} main.c ${LIBS}
5
6.PHONY: clean
7clean:
8	rm -f *.o ${TARGET}