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

3 4 5
LCOV = lcov
GENHTML = genhtml

6
SUBDIRS = gnulib/lib include src daemon tools proxy docs gnulib/tests \
7 8
  python tests po examples/domain-events/events-c examples/hellolibvirt \
  examples/dominfo examples/domsuspend examples/python
9

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

12 13
XML_EXAMPLES = $(wildcard examples/xml/test/*.xml) $(wildcard examples/xml/storage/*.xml)

14
EXTRA_DIST = \
15
  ChangeLog-old \
16
  libvirt.spec libvirt.spec.in \
R
Richard W.M. Jones 已提交
17
  mingw32-libvirt.spec.in \
18
  libvirt.pc libvirt.pc.in \
19
  autobuild.sh \
20
  .x-sc_avoid_if_before_free \
21
  .x-sc_require_config_h_first \
22
  .x-sc_prohibit_strcmp \
23
  .x-sc_prohibit_strcmp_and_strncmp \
24
  .x-sc_require_config_h \
25 26
  .x-sc_prohibit_nonreentrant \
  Makefile.nonreentrant \
27
  autogen.sh \
D
Daniel Veillard 已提交
28
  examples/domain-events/events-python \
29
  $(XML_EXAMPLES)
30

D
Daniel Veillard 已提交
31
pkgconfigdir = $(libdir)/pkgconfig
32
pkgconfig_DATA = libvirt.pc
D
Daniel Veillard 已提交
33

34 35
rpm: clean
	@(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
36 37 38 39

check-local: all tests

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

44 45
cov: clean-cov
	mkdir $(top_builddir)/coverage
46
	$(LCOV) -c -o $(top_builddir)/coverage/libvirt.info.tmp -d $(top_srcdir)/src  -d $(top_srcdir)/daemon -d $(top_srcdir)/tests
47 48 49
	$(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
50 51 52

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

54 55
MAINTAINERCLEANFILES = .git-module-status

J
Jim Meyering 已提交
56 57
# disable this check
distuninstallcheck:
58 59 60 61 62 63 64 65 66 67 68 69 70 71

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