1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
CXX = g++ CXXFLAGS = -Wall -O2 -std=c++11 OBJECTS = postrun.o runtime.o functions.o .PHONY: all clean remake all: postrun clean: rm -f $(OBJECTS) postrun remake: clean all postrun: $(OBJECTS) g++ $(CXXFLAGS) -o postrun $(OBJECTS) strip postrun