CC=gcc
CFLAGS=-I ../include
test:test.o ../api/libRockey2.a
	$(CC) $(CFLAGS) -o $@ $^

clean:
	rm -f test *.o
