diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 58 |
1 files changed, 52 insertions, 6 deletions
@@ -1,7 +1,53 @@ -json_examples: - ./main.rb -w example/3/weights.init < example/3/in.sgm > example/3/3.json 2>/dev/null - ./main.rb -w example/3/weights.init -l < example/3/in.sgm > example/3/3-with-glue.json 2>/dev/null - ./main.rb -w example/glue/weights -l < example/glue/in.sgm > example/glue/glue.json 2>/dev/null - ./main.rb -w example/toy/weights < example/toy/in.sgm > example/toy/toy.json 2>/dev/null - ./main.rb -w example/toy/weights < example/toy/in-test.sgm > example/toy/toy-test.json 2>/dev/null +COMPILER=clang +CFLAGS=-std=c++11 -O3 -Wall +TCMALLOC=$(shell pwd)/external/gperftools-2.1/lib/libtcmalloc_minimal.a -pthread +SRC=src + +all: $(SRC)/hypergraph.o $(SRC)/fast_weaver.cc + $(COMPILER) $(CFLAGS) -lstdc++ -lm -lmsgpack $(TCMALLOC) $(SRC)/hypergraph.o \ + $(SRC)/fast_weaver.cc \ + -o fast_weaver + +$(SRC)/hypergraph.o: $(SRC)/hypergraph.cc $(SRC)/hypergraph.hh \ + $(SRC)/semiring.hh $(SRC)/sparse_vector.hh \ + $(SRC)/types.hh + $(COMPILER) $(CFLAGS) -g -c $(TCMALLOC) \ + $(SRC)/hypergraph.cc \ + -o $(SRC)/hypergraph.o + +util: make_pak read_pak + +make_pak: $(SRC)/make_pak.cc external/json-cpp/single_include/json-cpp.hpp \ + $(SRC)/hypergraph.hh $(SRC)/types.hh + $(COMPILER) $(CFLAGS) -lstdc++ -lm -lmsgpack -I./external \ + $(SRC)/make_pak.cc \ + -o make_pak + +read_pak: $(SRC)/read_pak.cc + $(COMPILER) $(CFLAGS) -lstdc++ -lmsgpack \ + $(SRC)/read_pak.cc \ + -o read_pak + +test: test_grammar test_parse test_sparse_vector + +test_grammar: $(SRC)/test_grammar.cc $(SRC)/grammar.hh + $(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) \ + $(SRC)/test_grammar.cc \ + -o test_grammar + +test_parse: $(SRC)/test_parse.cc $(SRC)/parse.hh \ + $(SRC)/grammar.hh $(SRC)/util.hh + $(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) \ + $(SRC)/test_parse.cc \ + -o test_parse + +test_sparse_vector: $(SRC)/test_sparse_vector.cc $(SRC)/sparse_vector.hh + $(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) \ + $(SRC)/test_sparse_vector.cc \ + -o test_sparse_vector + +clean: + rm -f fast_weaver hypergraph.o + rm -f make_pak read_pak + rm -f test_grammar test_sparse_vector test_parse |