CFLAGS = -g -O2 -I../inc

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

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

