src: Look for kernels in /lib/modules/*/vmlinuz
[qemu-sanity-check.git] / Makefile.am
1 # Makefile for qemu-sanity-check
2 # Copyright (C) 2013 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with this program; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 SUBDIRS = src tests
19
20 EXTRA_DIST = \
21         .gitignore \
22         qemu-sanity-check.1 \
23         qemu-sanity-check.pod \
24         qemu-sanity-check.pod.in
25
26 CLEANFILES = \
27         *~
28
29 # Build the man pages.
30 qemu-sanity-check.pod: qemu-sanity-check.pod.in Makefile
31         rm -f $@ $@-t
32         $(SED) -e 's,@libdir\@,$(libdir),g' < $< > $@-t
33         mv $@-t $@
34         chmod 0555 $@
35
36 if HAVE_POD2MAN
37
38 CLEANFILES += qemu-sanity-check.1
39 man_MANS = qemu-sanity-check.1
40
41 qemu-sanity-check.1: qemu-sanity-check.pod
42         $(POD2MAN) -c "Virtualization Support" \
43           --release "$(PACKAGE)-$(VERSION)" \
44           $< > $@
45
46 endif
47
48 # Tag HEAD with current version (maintainer only).
49
50 maintainer-tag:
51         git tag -a v$(VERSION) -m "Version $(VERSION)" -f