diff options
author | Justin M. Forbes <jforbes@fedoraproject.org> | 2017-04-11 11:34:35 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-05-03 10:30:25 -0400 |
commit | ee5f7d79a80550179b258417442b7bdbccaf476a (patch) | |
tree | b7e58b21bbbbb0f1fa995118a7358005b09a6e34 /tools | |
parent | 5c0aea0e8d98e38858fbb3a09870ed8487a01da2 (diff) |
tools/kvm: fix top level makefile
The top level tools/Makefile includes kvm_stat as a target in help, but
the actual target is missing.
Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 00caacd3ed92..c8a90d01dd8e 100644 --- a/tools/Makefile +++ b/tools/Makefile | |||
@@ -86,10 +86,13 @@ tmon: FORCE | |||
86 | freefall: FORCE | 86 | freefall: FORCE |
87 | $(call descend,laptop/$@) | 87 | $(call descend,laptop/$@) |
88 | 88 | ||
89 | kvm_stat: FORCE | ||
90 | $(call descend,kvm/$@) | ||
91 | |||
89 | all: acpi cgroup cpupower gpio hv firewire lguest \ | 92 | all: acpi cgroup cpupower gpio hv firewire lguest \ |
90 | perf selftests turbostat usb \ | 93 | perf selftests turbostat usb \ |
91 | virtio vm net x86_energy_perf_policy \ | 94 | virtio vm net x86_energy_perf_policy \ |
92 | tmon freefall objtool | 95 | tmon freefall objtool kvm_stat |
93 | 96 | ||
94 | acpi_install: | 97 | acpi_install: |
95 | $(call descend,power/$(@:_install=),install) | 98 | $(call descend,power/$(@:_install=),install) |