summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-05-25 11:04:28 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-05-25 11:04:59 +0100
commitf9bf43287a6278ad43f3d5a3931e57f8826692af (patch)
tree5ff1a0200f48fa4bb5c6b5109d6b88f27893a819
parent74a75da0d0b330859efba84a3ec37a7a7076fb0e (diff)
downloadvirt-what-f9bf43287a6278ad43f3d5a3931e57f8826692af.tar.gz
virt-what-f9bf43287a6278ad43f3d5a3931e57f8826692af.tar.xz
virt-what-f9bf43287a6278ad43f3d5a3931e57f8826692af.zip
Use $(TESTS) in $(EXTRA_DIST) instead of duplicating list.
This is just rearrangement of the file.
-rw-r--r--Makefile.am73
1 files changed, 31 insertions, 42 deletions
diff --git a/Makefile.am b/Makefile.am
index 8a31f3f..38998bf 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,6 +15,36 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+CLEANFILES = virt-what virt-what.1 virt-what.txt
+
+AM_CPPFLAGS = -Wall
+
+sbin_SCRIPTS = virt-what
+libexec_PROGRAMS = virt-what-cpuid-helper
+
+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 $< > $@
+
+TESTS = \
+ tests/test-baremetal.sh \
+ tests/test-esx4.1.sh \
+ tests/test-hyperv.sh \
+ tests/test-kvm.sh \
+ tests/test-linux-vserver.sh \
+ tests/test-lx86.sh \
+ tests/test-parallels-desktop.sh \
+ tests/test-qemu.sh \
+ tests/test-rhel5-xen-dom0.sh \
+ tests/test-rhel5-xen-domU-hvm.sh \
+ tests/test-rhel5-xen-domU-pv.sh \
+ tests/test-zvm.sh
+
EXTRA_DIST = \
virt-what.in \
virt-what.pod \
@@ -117,45 +147,4 @@ EXTRA_DIST = \
tests/zvm/sbin/dmidecode \
tests/zvm/sbin/id \
tests/zvm/sbin/virt-what-cpuid-helper \
- tests/test-baremetal.sh \
- tests/test-esx4.1.sh \
- tests/test-hyperv.sh \
- tests/test-kvm.sh \
- tests/test-linux-vserver.sh \
- tests/test-lx86.sh \
- tests/test-parallels-desktop.sh \
- tests/test-qemu.sh \
- tests/test-rhel5-xen-dom0.sh \
- tests/test-rhel5-xen-domU-hvm.sh \
- tests/test-rhel5-xen-domU-pv.sh \
- tests/test-zvm.sh
-
-CLEANFILES = virt-what virt-what.1 virt-what.txt
-
-AM_CPPFLAGS = -Wall
-
-sbin_SCRIPTS = virt-what
-libexec_PROGRAMS = virt-what-cpuid-helper
-
-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 $< > $@
-
-TESTS = \
- tests/test-baremetal.sh \
- tests/test-esx4.1.sh \
- tests/test-hyperv.sh \
- tests/test-kvm.sh \
- tests/test-linux-vserver.sh \
- tests/test-lx86.sh \
- tests/test-parallels-desktop.sh \
- tests/test-qemu.sh \
- tests/test-rhel5-xen-dom0.sh \
- tests/test-rhel5-xen-domU-hvm.sh \
- tests/test-rhel5-xen-domU-pv.sh \
- tests/test-zvm.sh
+ $(TESTS)