CFLAGS = -O -I../inc

test : test.o ../lib/libcurses.a
	gcc $(CFLAGS) $^ -lpc -o test

test.o : test.c
	gcc $(CFLAGS) -c test.c
