X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=Makefile.am;h=bab12cc4cde508e059ce1f3a8241db183b2bb36d;hb=d732469890f56fce9e038630504cb42ff19bffe1;hp=8450892638f48732b821824ff93466c5ac845165;hpb=d3110e6318aa040e499479640ce33efe5ccc0f3e;p=qemu-sanity-check.git diff --git a/Makefile.am b/Makefile.am index 8450892..bab12cc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,12 +16,37 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. EXTRA_DIST = \ + .gitignore \ + qemu-sanity-check.1 \ qemu-sanity-check.in \ - qemu-sanity-check.pod + qemu-sanity-check.pod \ + qemu-sanity-check.pod.in \ + qemu-sanity-check.spec \ + sleeper \ + $(TESTS) CLEANFILES = qemu-sanity-check bin_SCRIPTS = qemu-sanity-check +initrddir = $(libdir)/qemu-sanity-check +initrd_DATA = initrd + +# Build the initramfs. +initrd: init + echo $< | cpio --quiet -o -H newc > $@-t + mv $@-t $@ + +noinst_PROGRAMS = init +init_SOURCES = init.c +init_CFLAGS = -static +init_LDFLAGS = -static + +# Build the man pages. +qemu-sanity-check.pod: qemu-sanity-check.pod.in Makefile + rm -f $@ $@-t + $(SED) -e 's,@libdir\@,$(libdir),g' < $< > $@-t + mv $@-t $@ + chmod 0555 $@ if HAVE_POD2MAN @@ -35,4 +60,16 @@ qemu-sanity-check.1: qemu-sanity-check.pod endif -TESTS = qemu-sanity-check +# Tests. +TESTS = \ + run-qemu-sanity-check \ + test-timeout \ + test-bad-options \ + test-bad-kernel \ + test-bad-qemu \ + test-bad-userspace + +# Tag HEAD with current version (maintainer only). + +maintainer-tag: + git tag -a v$(VERSION) -m "Version $(VERSION)" -f