summaryrefslogtreecommitdiff
path: root/cpp/rpm
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-12-23 17:20:37 +0000
committerAlan Conway <aconway@apache.org>2006-12-23 17:20:37 +0000
commit6536407690660e10529c826ab3aa21baaa121ea1 (patch)
treeaacbd4397be2fc04e394d77f83732bd77e5f4b99 /cpp/rpm
parenta958033ea68c9154da02d4378c4031f9dc02897e (diff)
downloadqpid-python-6536407690660e10529c826ab3aa21baaa121ea1.tar.gz
- rpm: make rpm now builds RPMs under rpm/ directory.
- src/qpidd.cpp: added --daemon option to run as daemon. - etc/qpidd: fixed bugs in init.rc script. - qpidc.spec: fixed rpmlint warnings, added apache URL git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@489905 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/rpm')
-rw-r--r--cpp/rpm/Makefile.am25
1 files changed, 25 insertions, 0 deletions
diff --git a/cpp/rpm/Makefile.am b/cpp/rpm/Makefile.am
new file mode 100644
index 0000000000..46c071ec87
--- /dev/null
+++ b/cpp/rpm/Makefile.am
@@ -0,0 +1,25 @@
+#
+# 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:
+ rm -rf BUILD RPMS SOURCES SPECS SRPMS
+
+.PHONY: rpm srpm dist
+
+# Build source and binary RPMs.
+rpm: dist
+ rpmbuild $(RPMOPTS) -ba $(SPEC)
+
+# Source RPM only.
+srpm: dist
+ rpmbuild $(RPMOPTS) -bs $(SPEC)
+
+# Build source distribution.
+dist:
+ cd .. && $(MAKE) $(AM_MAKEFLAGS) dist