summaryrefslogtreecommitdiff
path: root/qpid/cpp/Makefile
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-11-03 21:06:51 +0000
committerAlan Conway <aconway@apache.org>2006-11-03 21:06:51 +0000
commitd899c5f7120dc85197363abf5a5ad4a3a5e2c8ef (patch)
treecc682624e335506ed7744542459fb3f18e0b2cb2 /qpid/cpp/Makefile
parent2fbf815c086589af8f218690981eb7af21441e6f (diff)
downloadqpid-python-d899c5f7120dc85197363abf5a5ad4a3a5e2c8ef.tar.gz
2006-11-03 Jim Meyering <meyering@redhat.com>
* qpid/cpp/Makefile ($(TESTDIR)/%Test.so): Depend on $(LIB_common) and $(LIB_client), just as is done for the $(TESTDIR)/% rule. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@470994 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/Makefile')
-rw-r--r--qpid/cpp/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/Makefile b/qpid/cpp/Makefile
index b3cd65f6d7..95d9af73f4 100644
--- a/qpid/cpp/Makefile
+++ b/qpid/cpp/Makefile
@@ -100,7 +100,7 @@ endef
$(foreach dir,$(SRCDIRS),$(eval $(call CPPRULE,$(dir))))
# Unit test plugin libraries.
-$(TESTDIR)/%Test.so: test/unit/%Test.cpp
+$(TESTDIR)/%Test.so: test/unit/%Test.cpp $(LIB_common) $(LIB_client)
mkdir -p $(dir $@)
$(CXX) -shared -o $@ $< $(CXXFLAGS) -Itest/include $(LDFLAGS) -lcppunit $(LIB_common) $(LIB_broker)