CXX = g++
FLAGS=-std=c++11

main:
	$(CXX) $(FLAGS) -o segmentator segmentator.cpp tinyply.cpp

clean:
	rm -f *~ *.o segmentator
