#	CC              =gcc
LINKDIR	= ../../api/capi/
DYNAMIC_LIBS = -L$(LINKDIR) -lRockey3
all:
	gcc test.c -Wformat=0 -o test -I ../../include $(DYNAMIC_LIBS)
clean:
	rm -f test *.bin
