Skip to content

Commit

Permalink
Makefile: fix paralell building (bdelta depends on it's shared library)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
  • Loading branch information
Sergei Trofimovich authored and jjwhitney committed Dec 17, 2011
1 parent b93066e commit 19c74b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Expand Up @@ -11,7 +11,7 @@ all: $(ALL_TARGETS)
libbdelta.so: libbdelta.cpp compatibility.h container.h checksum.h file.h
$(CXX) -shared -fPIC $(CXXFLAGS) $(LDFLAGS) $< -o $@

bdelta: bdelta.cpp bdelta.h compatibility.h container.h file.h
bdelta: bdelta.cpp bdelta.h compatibility.h container.h file.h libbdelta.so
$(CXX) $< -o $@ $(CXXFLAGS) $(LDFLAGS) -L. -lbdelta

bpatch: bpatch.cpp compatibility.h bdelta.h file.h
Expand Down

0 comments on commit 19c74b3

Please sign in to comment.