1 2 3 4 5 6 7 8 9
CXXFLAGS=-O2 -Wall all: spark spark: src/main.cpp g++ $(CXXFLAGS) -o spark src/main.cpp clean: rm -f spark