CC     = cc
CFLAGS = -I../../../include -L../../../lib

testvec: testvec.c
	$(CC) $(CFLAGS) -o $@ testvec.c -lhib
clean:
	rm -f *.o testvec *~
