X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=blobdiff_plain;f=Makefile;h=e70730503c1df0c645e675545bbeb6e4aa5c3e98;hp=162d9f98f6b26f8ec6fa15e50754045487123d22;hb=35dd99aa3d47805b661fe3126a951710fa7dee11;hpb=cdbe16714a926da9f8ae752027138aa15cda7f60 diff --git a/Makefile b/Makefile index 162d9f9..e707305 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,9 @@ CXXFLAGS=-O -Wall -Wextra -D_FILE_OFFSET_BITS=64 $(DEBUG) \ -DCUMULUS_VERSION=$(shell cat version) LDFLAGS=$(DEBUG) $(shell pkg-config --libs $(PACKAGES)) -SRCS=chunk.cc exclude.cc localdb.cc main.cc metadata.cc ref.cc remote.cc \ - sha1.cc store.cc subfile.cc util.cc +THIRD_PARTY_SRCS=chunk.cc sha1.cc +SRCS=exclude.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) cumulus : $(OBJS)