Rework hash implementations to provide additional algorithms.
[cumulus.git] / Makefile
index e707305..a57062c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,8 @@ CXXFLAGS=-O -Wall -Wextra -D_FILE_OFFSET_BITS=64 $(DEBUG) \
         -DCUMULUS_VERSION=$(shell cat version)
 LDFLAGS=$(DEBUG) $(shell pkg-config --libs $(PACKAGES))
 
-THIRD_PARTY_SRCS=chunk.cc sha1.cc
-SRCS=exclude.cc localdb.cc main.cc metadata.cc ref.cc remote.cc \
+THIRD_PARTY_SRCS=chunk.cc sha1.cc sha256.cc
+SRCS=exclude.cc hash.cc localdb.cc main.cc metadata.cc ref.cc remote.cc \
      store.cc subfile.cc util.cc $(addprefix third_party/,$(THIRD_PARTY_SRCS))
 OBJS=$(SRCS:.cc=.o)