f-stack/example/Makefile

8 lines
205 B
Makefile
Raw Normal View History

2017-04-21 13:43:26 +03:00
LIBS = $(shell pkg-config --define-variable=TOPDIR=${CURDIR}/.. --libs f-stack.pc)
TARGET="helloworld"
all:
cc -O -gdwarf-2 -I../lib -o ${TARGET} main.c ${LIBS}
.PHONY: clean
clean:
rm -f *.o ${TARGET}