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

M
Martin Kletzander 已提交
3
## Copyright (C) 2005-2013 Red Hat, Inc.
E
Eric Blake 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17
##
## This library is free software; you can redistribute it and/or
## modify it under the terms of the GNU Lesser General Public
## License as published by the Free Software Foundation; either
## version 2.1 of the License, or (at your option) any later version.
##
## This library is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public
## License along with this library.  If not, see
## <http://www.gnu.org/licenses/>.
18

19 20 21
LCOV = lcov
GENHTML = genhtml

22
SUBDIRS = . gnulib/lib include/libvirt src daemon tools docs gnulib/tests \
23
  tests po examples
24

25
XZ_OPT ?= -v -T0
26 27
export XZ_OPT

28
ACLOCAL_AMFLAGS = -I m4
29

30
EXTRA_DIST = \
31
  config-post.h \
32
  ChangeLog-old \
33
  libvirt.spec libvirt.spec.in \
34
  mingw-libvirt.spec.in \
35
  libvirt.pc.in \
36 37
  libvirt-qemu.pc.in \
  libvirt-lxc.pc.in \
M
Martin Kletzander 已提交
38
  libvirt-admin.pc.in \
39
  autobuild.sh \
40
  Makefile.nonreentrant \
41
  autogen.sh \
42
  cfg.mk \
43
  run.in \
44
  AUTHORS.in
45

D
Daniel Veillard 已提交
46
pkgconfigdir = $(libdir)/pkgconfig
47
pkgconfig_DATA = libvirt.pc libvirt-qemu.pc libvirt-lxc.pc libvirt-admin.pc
D
Daniel Veillard 已提交
48

49
NEWS: $(top_srcdir)/docs/news.xsl $(top_srcdir)/docs/news.html.in
50
	$(AM_V_GEN)if [ -x $(XSLTPROC) ] ; then			\
51 52 53 54
	  $(XSLTPROC) --nonet $(top_srcdir)/docs/news.xsl	\
	     $(top_srcdir)/docs/news.html.in			\
	   | perl -0777 -pe 's/\n\n+$$/\n/'			\
	   | perl -pe 's/[ \t]+$$//'				\
55
	   > $@-t && mv $@-t $@ ; fi
56

57 58 59 60
$(top_srcdir)/HACKING: $(top_srcdir)/docs/hacking1.xsl \
			$(top_srcdir)/docs/hacking2.xsl \
			$(top_srcdir)/docs/wrapstring.xsl \
			$(top_srcdir)/docs/hacking.html.in
61
	$(AM_V_GEN)if [ -x $(XSLTPROC) ] ; then \
62 63
	   $(XSLTPROC) --nonet $(top_srcdir)/docs/hacking1.xsl \
		$(top_srcdir)/docs/hacking.html.in | \
64 65
	   $(XSLTPROC) --nonet $(top_srcdir)/docs/hacking2.xsl - \
	   | perl -0777 -pe 's/\n\n+$$/\n/' \
66
	   > $@-t && mv $@-t $@ ; fi;
67

68
rpm: clean
69
	@(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.xz)
70 71 72

check-local: all tests

73 74 75
check-access:
	@($(MAKE) $(AM_MAKEFLAGS) -C tests check-access)

76
cov: clean-cov
77
	$(MKDIR_P) $(top_builddir)/coverage
78 79 80 81 82
	$(LCOV) -c -o $(top_builddir)/coverage/libvirt.info.tmp \
	  -d $(top_builddir)/src  -d $(top_builddir)/daemon \
	  -d $(top_builddir)/tests
	$(LCOV) -r $(top_builddir)/coverage/libvirt.info.tmp \
	  -o $(top_builddir)/coverage/libvirt.info
83
	rm $(top_builddir)/coverage/libvirt.info.tmp
84 85
	$(GENHTML) --show-details -t "libvirt" -o $(top_builddir)/coverage \
	  --legend $(top_builddir)/coverage/libvirt.info
86 87 88

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

90 91
MAINTAINERCLEANFILES = .git-module-status

C
Cole Robinson 已提交
92
dist-hook: gen-ChangeLog gen-AUTHORS
93 94 95 96 97 98

# 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:
99
	$(AM_V_GEN)if test -d .git; then			\
100 101 102 103 104
	  $(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
C
Cole Robinson 已提交
105 106 107

.PHONY: gen-AUTHORS
gen-AUTHORS:
J
Jiri Denemark 已提交
108 109 110 111
	$(AM_V_GEN)if test -d $(srcdir)/.git; then \
	    out="`cd $(srcdir) && git log --pretty=format:'%aN <%aE>' | sort -u`" && \
	    perl -p -e "s/#authorslist#// and print '$$out'" \
	      < $(srcdir)/AUTHORS.in > $(distdir)/AUTHORS-tmp && \
C
Cole Robinson 已提交
112 113
	    mv -f $(distdir)/AUTHORS-tmp $(distdir)/AUTHORS ; \
	fi