CC=gcc
OBJS=test.o
CFLAGS= -O2
INCLUDE=-I ../include
test:
	$(CC) $(CFLAGS) $(INCLUDE) -c *.c
	$(CC) -o test test.o ../Api/rockeyapi.o
clean:
	rm *.o;
	rm test;
