BIN = main CXXFLAGS = -Wall -Wold-style-cast -Wundef -Wsign-compare -Wconversion -Wpointer-arith -pedantic -O2 CPPFLAGS = -I. -DNDEBUG .PHONY: build clean build: $(BIN) clean: rm -f $(BIN) $(BIN).exe $(BIN).o