Makefile.am 2.0 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
EXTRA_DIST = \
13
  ChangeLog-old \
14
  libvirt.spec libvirt.spec.in \
R
Richard W.M. Jones 已提交
15
  mingw32-libvirt.spec.in \
16
  libvirt.pc libvirt.pc.in \
17
  autobuild.sh \
18
  .x-sc_avoid_if_before_free \
19
  .x-sc_require_config_h_first \
20
  .x-sc_prohibit_strcmp \
21
  .x-sc_prohibit_strcmp_and_strncmp \
22
  .x-sc_require_config_h \
23 24
  .x-sc_prohibit_nonreentrant \
  Makefile.nonreentrant \
25
  autogen.sh
26

D
Daniel Veillard 已提交
27
pkgconfigdir = $(libdir)/pkgconfig
28
pkgconfig_DATA = libvirt.pc
D
Daniel Veillard 已提交
29

30 31
rpm: clean
	@(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
32 33 34 35

check-local: all tests

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

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

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

50 51
MAINTAINERCLEANFILES = .git-module-status

J
Jim Meyering 已提交
52 53
# disable this check
distuninstallcheck:
54 55 56 57 58 59 60 61 62 63 64 65 66 67

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