INCDIR = /usr/local/share/CUnit-1.0-8A/include/
LIBDIR = /usr/local/share/CUnit-1.0-8A/lib/
LIBS = -lcunit -lcurses

ALL: peano.c peano.h peanotest.c
	gcc -o test -I $(INCDIR) -L$(LIBDIR) peano.c peanotest.c $(LIBS)
 
