summaryrefslogtreecommitdiff
path: root/Makefile
blob: ded45036a57d0e861869414192147a07930c52e4 (plain)
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++ -Wall -O2 -std=c++11 -o postrun $(OBJECTS)
	strip postrun