diff options
author | Patrick Simianer <p@simianer.de> | 2016-06-24 13:27:40 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-06-24 13:27:40 +0200 |
commit | 09444990ea43f2562b44c028297cfec115f5c646 (patch) | |
tree | 327cc00b6d4428a93df7388a15bd55195231462b /Makefile | |
parent | 912641117aa3feaf237662e011147ad7a2efeed9 (diff) |
ow binary
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -14,13 +14,13 @@ PRINT_END = @echo -e "\e[1;32mfinished building $@\e[0m" ############################################################################### # all # -all: $(BIN)/fast_weaver util test +all: $(BIN)/ow util test ############################################################################### -# fast_weaver +# ow # -$(BIN)/fast_weaver: $(BIN) $(SRC)/hypergraph.o $(SRC)/fast_weaver.cc +$(BIN)/ow: $(BIN) $(SRC)/hypergraph.o $(SRC)/odenwald.cc $(PRINT_BEGIN) $(COMPILER) $(CFLAGS) \ -lstdc++ \ @@ -28,8 +28,8 @@ $(BIN)/fast_weaver: $(BIN) $(SRC)/hypergraph.o $(SRC)/fast_weaver.cc $(MSGPACK_C) \ $(TCMALLOC) \ $(SRC)/hypergraph.o \ - $(SRC)/fast_weaver.cc \ - -o $(BIN)/fast_weaver + $(SRC)/odenwald.cc \ + -o $(BIN)/ow $(PRINT_END) $(BIN): |