summaryrefslogtreecommitdiff
path: root/Makefile
blob: ad763d5a1a538de0d1b2f8d393151c766cf9babc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)