all:  testPoint

testPoint:	point.o testPoint.cpp
	clang++ -o testPoint point.o testPoint.cpp

point.o: point.h point.cpp
	clang++ -c point.cpp

clean:	
	rm -f point.o testPoint

