summaryrefslogtreecommitdiff
path: root/cpp/rpm/Makefile.am
blob: 92a190aa0da1181fe786b4c0afde8306efdc6ea1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# 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) -ba $(SPEC)

# 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