diff options
author | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2014-02-09 06:41:52 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-15 14:52:35 -0500 |
commit | 3eb2094c59e89db2bedd401e23c7a870081c9edb (patch) | |
tree | 969814179eedd4eb8361f45d37b712bcee89d9cb /tools/Makefile | |
parent | a7155f4e2252be167fa69468e11b19a3fac5e625 (diff) |
Adding makefile for tools/hv
Currently, there is no makefile for the Hyper-V tools.
This patch adds the missing makefile, and adds it to the main tools makefile.
Signed-off-by: Bjarke Istrup Pedersen <gurligebis@gentoo.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/Makefile b/tools/Makefile index feec3ad5fd09..bcae806b0c39 100644 --- a/tools/Makefile +++ b/tools/Makefile | |||
@@ -7,6 +7,7 @@ help: | |||
7 | @echo ' cgroup - cgroup tools' | 7 | @echo ' cgroup - cgroup tools' |
8 | @echo ' cpupower - a tool for all things x86 CPU power' | 8 | @echo ' cpupower - a tool for all things x86 CPU power' |
9 | @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer' | 9 | @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer' |
10 | @echo ' hv - tools used when in Hyper-V clients' | ||
10 | @echo ' lguest - a minimal 32-bit x86 hypervisor' | 11 | @echo ' lguest - a minimal 32-bit x86 hypervisor' |
11 | @echo ' perf - Linux performance measurement and analysis tool' | 12 | @echo ' perf - Linux performance measurement and analysis tool' |
12 | @echo ' selftests - various kernel selftests' | 13 | @echo ' selftests - various kernel selftests' |
@@ -40,7 +41,7 @@ acpi: FORCE | |||
40 | cpupower: FORCE | 41 | cpupower: FORCE |
41 | $(call descend,power/$@) | 42 | $(call descend,power/$@) |
42 | 43 | ||
43 | cgroup firewire guest usb virtio vm net: FORCE | 44 | cgroup firewire hv guest usb virtio vm net: FORCE |
44 | $(call descend,$@) | 45 | $(call descend,$@) |
45 | 46 | ||
46 | libapikfs: FORCE | 47 | libapikfs: FORCE |
@@ -64,7 +65,7 @@ acpi_install: | |||
64 | cpupower_install: | 65 | cpupower_install: |
65 | $(call descend,power/$(@:_install=),install) | 66 | $(call descend,power/$(@:_install=),install) |
66 | 67 | ||
67 | cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install net_install: | 68 | cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install: |
68 | $(call descend,$(@:_install=),install) | 69 | $(call descend,$(@:_install=),install) |
69 | 70 | ||
70 | selftests_install: | 71 | selftests_install: |
@@ -76,7 +77,7 @@ turbostat_install x86_energy_perf_policy_install: | |||
76 | tmon_install: | 77 | tmon_install: |
77 | $(call descend,thermal/$(@:_install=),install) | 78 | $(call descend,thermal/$(@:_install=),install) |
78 | 79 | ||
79 | install: acpi_install cgroup_install cpupower_install firewire_install lguest_install \ | 80 | install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \ |
80 | perf_install selftests_install turbostat_install usb_install \ | 81 | perf_install selftests_install turbostat_install usb_install \ |
81 | virtio_install vm_install net_install x86_energy_perf_policy_install \ | 82 | virtio_install vm_install net_install x86_energy_perf_policy_install \ |
82 | tmon | 83 | tmon |
@@ -87,7 +88,7 @@ acpi_clean: | |||
87 | cpupower_clean: | 88 | cpupower_clean: |
88 | $(call descend,power/cpupower,clean) | 89 | $(call descend,power/cpupower,clean) |
89 | 90 | ||
90 | cgroup_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean: | 91 | cgroup_clean hv_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean: |
91 | $(call descend,$(@:_clean=),clean) | 92 | $(call descend,$(@:_clean=),clean) |
92 | 93 | ||
93 | libapikfs_clean: | 94 | libapikfs_clean: |
@@ -105,7 +106,7 @@ turbostat_clean x86_energy_perf_policy_clean: | |||
105 | tmon_clean: | 106 | tmon_clean: |
106 | $(call descend,thermal/tmon,clean) | 107 | $(call descend,thermal/tmon,clean) |
107 | 108 | ||
108 | clean: acpi_clean cgroup_clean cpupower_clean firewire_clean lguest_clean \ | 109 | clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \ |
109 | perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \ | 110 | perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \ |
110 | vm_clean net_clean x86_energy_perf_policy_clean tmon_clean | 111 | vm_clean net_clean x86_energy_perf_policy_clean tmon_clean |
111 | 112 | ||