INCDIR = /usr/local/share/CUnit-1.0-8A/include/
LIBDIR = /usr/local/share/CUnit-1.0-8A/lib/
LIBS = -lcunit -lcurses
DBG = -g
ALL: peano.c peano.h peanotest.c
	gcc $(DBG) -o test -I $(INCDIR) -L$(LIBDIR) peano.c peanotest.c $(LIBS)
 
