PERLPP=perlpp

all : testPoint

testPoint : testPoint.cpp
	$(CXX) -g -o testPoint testPoint.cpp

testPoint.cpp : testPoint.cpp.ppp Point.Template.pl
	$(PERLPP) testPoint.cpp.ppp

Point.Template.pl : Point.Template.ppp
	$(PERLPP) -pl Point.Template.ppp

clean :
	/bin/rm -f testPoint testPoint.cpp Point.Template.pl core



