summaryrefslogtreecommitdiff
path: root/util/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/Makefile')
-rw-r--r--util/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/util/Makefile b/util/Makefile
new file mode 100644
index 0000000..08ead26
--- /dev/null
+++ b/util/Makefile
@@ -0,0 +1,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
+