CFLAGS = -Wall -W -Wshadow -Wuninitialized CCG = g++ $(CFLAGS) -g CCO = g++ $(CFLAGS) -O closest: closest.cpp $(CCO) -o closest closest.cpp run: closest ./closest test: closest chmod u+x dotest ./dotest clean: rm closest