CC=gcc
all:api
api:main.c gfex_hdr.h
	$(CC) main.c -lexanic -o api
clean:
	rm -rf api
