summaryrefslogtreecommitdiff
path: root/util/Makefile
blob: 08ead267fe52a482ea0f51a18174f4a6a6483dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
COMPILER=clang


all: make_pak read_pak

make_pak: make_pak.cc
	$(COMPILER) -std=c++11 -lstdc++ -lm -lmsgpack make_pak.cc -o make_pak

read_pak: read_pak.cc
	$(COMPILER) -std=c++11 -lstdc++ -lmsgpack read_pak.cc -o read_pak

clean:
	rm -f make_pak read_pak