CFLAGS = -O -I../inc

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

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