From 5e8a7aad13b6442d2acf9113eb576a1ea4c22ab3 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Tue, 25 Aug 2015 20:51:03 +0200 Subject: Refactor --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad763d5 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +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++ -Wall -O2 -std=c++11 -o postrun $(OBJECTS) -- cgit v1.2.3-70-g09d2