summaryrefslogtreecommitdiff
path: root/qpid/cpp/rpm
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-21 02:08:18 +0000
committerAlan Conway <aconway@apache.org>2007-03-21 02:08:18 +0000
commitd2eb3361494710466280341c98f76c03536d2ebe (patch)
treef16ec2eacd8383e388657e54a22fc0214a0ce023 /qpid/cpp/rpm
parent732544fe86089ab86c03fcc48d5ca4c72667c275 (diff)
downloadqpid-python-d2eb3361494710466280341c98f76c03536d2ebe.tar.gz
Renamed cpp-0-9 to cpp
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@520706 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/rpm')
-rw-r--r--qpid/cpp/rpm/Makefile.am27
1 files changed, 27 insertions, 0 deletions
diff --git a/qpid/cpp/rpm/Makefile.am b/qpid/cpp/rpm/Makefile.am
new file mode 100644
index 0000000000..363a444f4f
--- /dev/null
+++ b/qpid/cpp/rpm/Makefile.am
@@ -0,0 +1,27 @@
+#
+# Build RPMs from the distribution tarball.
+#
+
+# TODO aconway 2006-12-21: use autoconf macros for version, base name etc.
+
+SPEC=${top_srcdir}/qpidc.spec
+RPMOPTS=--define "_sourcedir ${abs_top_srcdir}" --define "_topdir ${abs_builddir}"
+
+clean-local:
+ -rm -rf BUILD RPMS SOURCES SPECS SRPMS
+
+.PHONY: rpm srpm dist
+
+# Build source and binary RPMs.
+rpm: dist
+ rpmbuild $(RPMOPTS) $(RPMEXTRAOPTS) -ba $(SPEC)
+ rpmlint RPMS/*/*.rpm
+
+# Build source RPM only.
+srpm: dist
+ rpmbuild $(RPMOPTS) -bs $(SPEC)
+
+# Build source distribution and create required subdirs.
+dist:
+ cd .. && $(MAKE) $(AM_MAKEFLAGS) dist
+ mkdir -p BUILD RPMS SOURCES SPECS SRPMS