summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-04-11 22:32:30 +0000
committerAlan Conway <aconway@apache.org>2007-04-11 22:32:30 +0000
commit37bd625f00f9c6d53d8ab8ee2f62ac30713ae02f (patch)
treeb9432fcaeca3c74289922d0857620501363e3de8 /cpp/src
parent9c7b2f6814076f87baffcf0d7af1833864c9c2cb (diff)
downloadqpid-python-37bd625f00f9c6d53d8ab8ee2f62ac30713ae02f.tar.gz
* cpp/configure.ac: Disable static libraries by default. Half the build time!
* cpp/src/Makefile.am (maintainer-clean): added missing maintainer-clean * cpp/src/tests/Makefile.am (check): remove un-necessary dependencies that were causing trouble with parallel builds. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@527712 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Makefile.am4
-rw-r--r--cpp/src/tests/Makefile.am5
2 files changed, 6 insertions, 3 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am
index 32c2e1a00d..6937db2e1b 100644
--- a/cpp/src/Makefile.am
+++ b/cpp/src/Makefile.am
@@ -312,5 +312,9 @@ $(gen)/gen-src.mk: $(gen)/timestamp
mv $@-t $@
endif
+maintainer-clean:
+ rm -f $(gentools_srcdir)/*.class
+ rm -f $(BUILT_SOURCES)
+
# Force build during dist phase so help2man will work.
dist-hook: $(lib_LTLIBRARIES) $(sbin_PROGRAMS)
diff --git a/cpp/src/tests/Makefile.am b/cpp/src/tests/Makefile.am
index 6fc3b97324..3e96581573 100644
--- a/cpp/src/tests/Makefile.am
+++ b/cpp/src/tests/Makefile.am
@@ -111,13 +111,12 @@ gen.mk: Makefile.am
> $@-t
mv $@-t $@
-check: .valgrindrc $(check_LTLIBRARIES) \
- $(lib_common) $(lib_client) $(lib_broker) ../qpidd
+check: .valgrindrc ../qpidd
check-unit:
$(MAKE) check TESTS=run-unit-tests
-# Create a copy so user can modify without risk of checking in their mods.
+# Create a copy so that can be modified without risk of committing the changes.
.valgrindrc: .valgrindrc-default
cp $(srcdir)/.valgrindrc-default .valgrindrc