X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=Makefile;h=454f1c47b1f7d3c4537f692b8a59df7964e30db4;hb=8f5e4e22660dba64b733acdaa9e4ed94731bdb72;hp=a57062c92cc612cc68ef3f47ae5e7f7db61b1104;hpb=15f090d3b2f0bf3994aacd00ab07da3b1f65ea00;p=cumulus.git diff --git a/Makefile b/Makefile index a57062c..454f1c4 100644 --- a/Makefile +++ b/Makefile @@ -10,9 +10,14 @@ 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) +all : cumulus cumulus-chunker-standalone + cumulus : $(OBJS) $(CXX) -o $@ $^ $(LDFLAGS) +cumulus-chunker-standalone : chunker-standalone.o third_party/chunk.o + $(CXX) -o $@ $^ $(LDFLAGS) + version : NEWS (git describe || (head -n1 NEWS | cut -d" " -f1)) >version 2>/dev/null $(OBJS) : version