summaryrefslogtreecommitdiff
path: root/qpid/cpp/rpm/Makefile.am
blob: 7f3a4b4b6ba5817b1480da1d0b7b5573397a0ecf (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
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