]> git.sesse.net Git - remoteglot-book/blobdiff - Makefile
Treat 0-length moves as not having a move.
[remoteglot-book] / Makefile
index cd85e4fdeebb10acbe1a71d2f8cf45561c642c3d..1dc36ce7b1ad6e31034cf298dd118cc0bbbf430f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,12 +5,12 @@ PROTOC=protoc
 all: binloader binlookup binmerger
 
 binloader: binloader.o hash.o count.pb.o
-binmerger: binmerger.o count.pb.o
-binlookup: binlookup.o hash.o count.pb.o
+binmerger: binmerger.o merge_count.o count.pb.o
+binlookup: binlookup.o hash.o merge_count.o count.pb.o
 
 binloader.o: binloader.cpp count.pb.h
-binmerger.o: binmerger.cpp count.pb.h
-binlookup.o: binlookup.cpp count.pb.h
+binmerger.o: binmerger.cpp merge_count.h count.pb.h
+binlookup.o: binlookup.cpp merge_count.h count.pb.h
 
 %.pb.cc %.pb.h : %.proto
        $(PROTOC) --cpp_out=. $<