blob: 30564fe58f52b2136c8fd8a39c1587977f2f4609 (
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 json-cpp/single_include/json-cpp.hpp ../fast/hypergraph.hh ../fast/weaver.hh
$(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
|