2005-11-02 12:50:21 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
2008-05-29 19:27:04 +00:00
|
|
|
LCOV = lcov
|
|
|
|
|
GENHTML = genhtml
|
|
|
|
|
|
2009-04-19 15:10:45 +00:00
|
|
|
SUBDIRS = gnulib/lib include src qemud tools proxy docs gnulib/tests \
|
2009-02-26 16:14:50 +00:00
|
|
|
python tests po examples/domain-events/events-c examples/hellolibvirt
|
2006-09-21 15:24:37 +00:00
|
|
|
|
2009-07-09 12:18:14 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I m4 -I gnulib/m4
|
2005-12-19 16:34:11 +00:00
|
|
|
|
2008-01-29 17:42:39 +00:00
|
|
|
EXTRA_DIST = \
|
2009-07-08 08:54:25 +02:00
|
|
|
ChangeLog-old \
|
2008-01-29 17:42:39 +00:00
|
|
|
libvirt.spec libvirt.spec.in \
|
2008-10-10 11:33:10 +00:00
|
|
|
mingw32-libvirt.spec.in \
|
2008-01-29 17:42:39 +00:00
|
|
|
libvirt.pc libvirt.pc.in \
|
|
|
|
|
$(man_MANS) autobuild.sh \
|
2008-01-29 18:15:54 +00:00
|
|
|
.x-sc_avoid_if_before_free \
|
2008-12-17 17:23:21 +00:00
|
|
|
.x-sc_require_config_h_first \
|
2008-05-14 21:18:27 +00:00
|
|
|
.x-sc_prohibit_strcmp \
|
2009-07-06 18:28:10 +02:00
|
|
|
.x-sc_prohibit_strcmp_and_strncmp \
|
2008-06-13 09:08:44 +00:00
|
|
|
.x-sc_require_config_h \
|
2009-01-20 20:19:55 +00:00
|
|
|
.x-sc_prohibit_nonreentrant \
|
|
|
|
|
Makefile.nonreentrant \
|
2009-07-08 11:51:59 +02:00
|
|
|
autogen.sh
|
2006-04-10 14:15:33 +00:00
|
|
|
|
|
|
|
|
man_MANS = virsh.1
|
2005-11-02 12:50:21 +00:00
|
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2006-02-09 17:45:11 +00:00
|
|
|
pkgconfig_DATA = libvirt.pc
|
2005-11-02 12:50:21 +00:00
|
|
|
|
2005-11-02 15:37:34 +00:00
|
|
|
rpm: clean
|
|
|
|
|
@(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
|
2006-02-14 14:30:42 +00:00
|
|
|
|
|
|
|
|
check-local: all tests
|
|
|
|
|
|
|
|
|
|
tests:
|
2006-02-21 14:15:32 +00:00
|
|
|
@(cd docs/examples ; $(MAKE) MAKEFLAGS+=--silent tests)
|
2007-12-12 08:12:38 +00:00
|
|
|
@(if [ "$(pythondir)" != "" ] ; then cd python ; \
|
2007-02-14 02:12:41 +00:00
|
|
|
$(MAKE) MAKEFLAGS+=--silent tests ; fi)
|
|
|
|
|
|
2008-05-29 19:27:04 +00:00
|
|
|
cov: clean-cov
|
|
|
|
|
mkdir $(top_builddir)/coverage
|
|
|
|
|
$(LCOV) -c -o $(top_builddir)/coverage/libvirt.info.tmp -d $(top_srcdir)/src -d $(top_srcdir)/qemud -d $(top_srcdir)/tests
|
|
|
|
|
$(LCOV) -r $(top_builddir)/coverage/libvirt.info.tmp -o $(top_builddir)/coverage/libvirt.info *usr*
|
|
|
|
|
rm $(top_builddir)/coverage/libvirt.info.tmp
|
|
|
|
|
$(GENHTML) -s -t "libvirt" -o $(top_builddir)/coverage --legend $(top_builddir)/coverage/libvirt.info
|
2007-02-14 02:12:41 +00:00
|
|
|
|
|
|
|
|
clean-cov:
|
|
|
|
|
rm -rf $(top_builddir)/coverage
|
2007-11-15 13:04:28 +00:00
|
|
|
|
2009-07-10 10:01:04 +02:00
|
|
|
MAINTAINERCLEANFILES = .git-module-status
|
|
|
|
|
|
2007-11-15 13:04:28 +00:00
|
|
|
# disable this check
|
|
|
|
|
distuninstallcheck:
|
2009-07-08 08:54:25 +02:00
|
|
|
|
|
|
|
|
dist-hook: gen-ChangeLog
|
|
|
|
|
|
|
|
|
|
# Generate the ChangeLog file (with all entries since the switch to git)
|
|
|
|
|
# and insert it into the directory we're about to use to create a tarball.
|
|
|
|
|
gen_start_date = 2009-07-04
|
|
|
|
|
.PHONY: gen-ChangeLog
|
|
|
|
|
gen-ChangeLog:
|
|
|
|
|
if test -d .git; then \
|
|
|
|
|
$(top_srcdir)/build-aux/gitlog-to-changelog \
|
|
|
|
|
--since=$(gen_start_date) > $(distdir)/cl-t; \
|
|
|
|
|
rm -f $(distdir)/ChangeLog; \
|
|
|
|
|
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
|
|
|
|
|
fi
|