Makefile.am 661 字节
Newer Older
D
Daniel Veillard 已提交
1 2
## Process this file with automake to produce Makefile.in

D
Daniel P. Berrange 已提交
3
SUBDIRS = src qemud proxy include docs @PYTHON_SUBDIR@ tests po
4 5

ACLOCAL_AMFLAGS = -I m4
6

7 8
EXTRA_DIST = libvirt.spec.in libvirt.spec COPYING.LIB \
             libvirt.pc.in libvirt.pc TODO AUTHORS ChangeLog \
9
	     NEWS README $(man_MANS) autobuild.sh
10 11

man_MANS = virsh.1
D
Daniel Veillard 已提交
12 13

pkgconfigdir = $(libdir)/pkgconfig
14
pkgconfig_DATA = libvirt.pc
D
Daniel Veillard 已提交
15

16 17
rpm: clean
	@(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
18 19 20 21

check-local: all tests

tests:
22
	@(cd docs/examples ; $(MAKE) MAKEFLAGS+=--silent tests)
23
	@(if [ "@PYTHON_SUBDIR@" != "" ] ; then cd python ; \
K
Karel Zak 已提交
24
	  $(MAKE) MAKEFLAGS+=--silent tests ; fi)