summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4edfcbae27bcebd02c39f6cd44b8226f34143677 (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++ $(CXXFLAGS) -o postrun $(OBJECTS)
	strip postrun