2005-11-02 06:50:21 -06:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2005-12-19 10:34:11 -06:00
|
|
|
SUBDIRS = src include docs @PYTHON_SUBDIR@
|
|
|
|
|
2006-02-09 11:45:11 -06:00
|
|
|
EXTRA_DIST = libvirt.spec.in libvirt.spec COPYING.LIB \
|
|
|
|
libvirt.pc.in libvirt.pc TODO AUTHORS ChangeLog \
|
2006-04-10 09:15:33 -05:00
|
|
|
NEWS README $(man_MANS)
|
|
|
|
|
|
|
|
man_MANS = virsh.1
|
2005-11-02 06:50:21 -06:00
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2006-02-09 11:45:11 -06:00
|
|
|
pkgconfig_DATA = libvirt.pc
|
2005-11-02 06:50:21 -06:00
|
|
|
|
2005-11-02 09:37:34 -06:00
|
|
|
rpm: clean
|
|
|
|
@(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
|
2006-02-14 08:30:42 -06:00
|
|
|
|
|
|
|
check-local: all tests
|
|
|
|
|
|
|
|
tests:
|
2006-02-21 08:15:32 -06:00
|
|
|
@(cd docs/examples ; $(MAKE) MAKEFLAGS+=--silent tests)
|
2006-02-14 08:30:42 -06:00
|
|
|
@(if [ "@PYTHON_SUBDIR@" != "" ] ; then cd python ; \
|
|
|
|
$(MAKE) MAKEFLAGS+=--silent tests ; fi)
|
|
|
|
|