X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.am;h=543513204763dde299757a9817f6d81c7c96baa2;hb=c1980aebe6597950c34fc9e94d54e8fd0177cc27;hp=8efacb98dde1c0aa013e7d0834dea53527a35a39;hpb=8e46d4ba64bdf396ac0324160ced4800d112c18d;p=virt-what.git diff --git a/Makefile.am b/Makefile.am index 8efacb9..5435132 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # Makefile for virt-what -# Copyright (C) 2008-2009 Red Hat Inc. +# Copyright (C) 2008-2011 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,20 +15,56 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -EXTRA_DIST = virt-what.in virt-what.pod +AM_CPPFLAGS = -Wall -CLEANFILES = virt-what.1 virt-what.txt +CLEANFILES = virt-what *~ -AM_CPPFLAGS = -Wall +EXTRA_DIST = .gitignore virt-what.in virt-what.pod + +SUBDIRS = . tests -bin_SCRIPTS = virt-what +sbin_SCRIPTS = virt-what libexec_PROGRAMS = virt-what-cpuid-helper +if HOST_CPU_IA64 +libexec_PROGRAMS += virt-what-ia64-xen-rdtsc-test +endif +if HAVE_POD2MAN + +CLEANFILES += virt-what.1 virt-what.txt man_MANS = virt-what.1 virt-what.1: virt-what.pod pod2man -c "Virtualization Support" --release "$(PACKAGE)-$(VERSION)" \ - $< > $@ - + $? > $@ virt-what.txt: virt-what.pod - pod2text $< > $@ + pod2text $? > $@ + +endif + +#---------------------------------------------------------------------- +# Maintainers only! + +# Check no files are missing from EXTRA_DIST rules, and that all +# generated files have been included in the tarball. (Note you must +# have done 'make dist') +maintainer-check-extra-dist: + @zcat $(PACKAGE_NAME)-$(VERSION).tar.gz | tar tf - | sort | \ + sed 's,^$(PACKAGE_NAME)-$(VERSION)/,,' > tarfiles + @git ls-files | \ + sort > gitfiles + @comm -13 tarfiles gitfiles > comm-out + @echo Checking for differences between EXTRA_DIST and git ... + @cat comm-out + @[ ! -s comm-out ] + @rm tarfiles gitfiles comm-out + @echo PASS: EXTRA_DIST tests + +# Commit everything in the current directory and set the commit +# message to the current version number. +maintainer-commit: + git commit -a -m "Version $(VERSION)." + +# Tag HEAD with the current version. +maintainer-tag: + git tag -a v$(VERSION) -m "Version $(VERSION)." -f