all : process_to_points

process_to_points : process_to_points.c
	gcc -o $@ $^ -Os

clean :
	rm -rf process_to_points
