blob: 6f38997fc73fd30f9d230d7da461d1371a5e8a47 (
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
28
29
30
31
32
33
|
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src po icons tests doc
DISTCHECK_CONFIGURE_FLAGS = \
--with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
EXTRA_DIST = doc/coding-style abrt.spec abrt.pc.in doc/abrt-plugin/ doc/howto-write-reporter
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = abrt.pc
RPM_DIRS = --define "_sourcedir `pwd`" \
--define "_rpmdir `pwd`" \
--define "_specdir `pwd`" \
--define "_builddir `pwd`" \
--define "_srcrpmdir `pwd`"
rpm: dist
rpmbuild $(RPM_DIRS) -ba abrt.spec
srpm: dist
rpmbuild $(RPM_DIRS) -bs abrt.spec
test-rpm: dist
rpmbuild --define "_buildid `date +%G%m%d%H%M%S`" \
$(RPM_DIRS) -ba abrt.spec
test-srpm: dist
rpmbuild --define "_buildid `date +%G%m%d%H%M%S`" \
$(RPM_DIRS) -bs abrt.spec
scratch-build: srpm
koji build --scratch dist-f12 $(PACKAGE)-$(VERSION)-1.fc12.src.rpm
|