all: parsefloats 

parsefloats: parsefloats.cpp
	$(CXX) -O2 -std=c++17 -o parsefloats parsefloats.cpp -Wall -I.

clean:
	rm -r -f parsefloats
