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

3 4 5
LCOV = lcov
GENHTML = genhtml

J
Jim Meyering 已提交
6
SUBDIRS = gnulib/lib include src qemud proxy docs gnulib/tests \
7
  python tests po
8

9
ACLOCAL_AMFLAGS = -I m4 -I gnulib/m4
10

11 12 13 14
EXTRA_DIST = \
  libvirt.spec libvirt.spec.in \
  libvirt.pc libvirt.pc.in \
  $(man_MANS) autobuild.sh \
15
  .x-sc_avoid_if_before_free \
16
  .x-sc_prohibit_strcmp \
17
  .x-sc_require_config_h
18 19

man_MANS = virsh.1
D
Daniel Veillard 已提交
20 21

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

24 25
rpm: clean
	@(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
26 27 28 29

check-local: all tests

tests:
30
	@(cd docs/examples ; $(MAKE) MAKEFLAGS+=--silent tests)
J
Jim Meyering 已提交
31
	@(if [ "$(pythondir)" != "" ] ; then cd python ; \
32 33
	  $(MAKE) MAKEFLAGS+=--silent tests ; fi)

34 35 36 37 38 39
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
40 41 42

clean-cov:
	rm -rf $(top_builddir)/coverage
J
Jim Meyering 已提交
43 44 45

# disable this check
distuninstallcheck: