diff options
author | Borislav Petkov <borislav.petkov@amd.com> | 2012-04-11 12:36:16 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-04-11 13:58:43 -0400 |
commit | 2363ecb17041d711fa2b3fb1b1ea2ebc47a0f974 (patch) | |
tree | 19c747aa03b2d6dd24d3cc7406b25be7ed541b6c /tools/Makefile | |
parent | d8caf3eb240f4b3100cd8e4f0178df9801bce537 (diff) |
tools: Add a toplevel Makefile
Add a Makefile with all the targets under tools/.
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Sam Ravnborg <sam@ravnborg.org>
Link: http://lkml.kernel.org/r/1334162178-17152-4-git-send-email-bp@amd64.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 000000000000..feadfdd6da55 --- /dev/null +++ b/tools/Makefile | |||
@@ -0,0 +1,47 @@ | |||
1 | include scripts/Makefile.include | ||
2 | |||
3 | cpupower: FORCE | ||
4 | $(QUIET_SUBDIR0)power/$@/ $(QUIET_SUBDIR1) | ||
5 | |||
6 | firewire lguest perf usb virtio vm: FORCE | ||
7 | $(QUIET_SUBDIR0)$@/ $(QUIET_SUBDIR1) | ||
8 | |||
9 | selftests: FORCE | ||
10 | $(QUIET_SUBDIR0)testing/$@/ $(QUIET_SUBDIR1) | ||
11 | |||
12 | turbostat x86_energy_perf_policy: FORCE | ||
13 | $(QUIET_SUBDIR0)power/x86/$@/ $(QUIET_SUBDIR1) | ||
14 | |||
15 | cpupower_install: | ||
16 | $(QUIET_SUBDIR0)power/$(@:_install=)/ $(QUIET_SUBDIR1) install | ||
17 | |||
18 | firewire_install lguest_install perf_install usb_install virtio_install vm_install: | ||
19 | $(QUIET_SUBDIR0)$(@:_install=)/ $(QUIET_SUBDIR1) install | ||
20 | |||
21 | selftests_install: | ||
22 | $(QUIET_SUBDIR0)testing/$(@:_clean=)/ $(QUIET_SUBDIR1) install | ||
23 | |||
24 | turbostat_install x86_energy_perf_policy_install: | ||
25 | $(QUIET_SUBDIR0)power/x86/$(@:_install=)/ $(QUIET_SUBDIR1) install | ||
26 | |||
27 | install: cpupower_install firewire_install lguest_install perf_install \ | ||
28 | selftests_install turbostat_install usb_install virtio_install \ | ||
29 | vm_install x86_energy_perf_policy_install | ||
30 | |||
31 | cpupower_clean: | ||
32 | $(QUIET_SUBDIR0)power/cpupower/ $(QUIET_SUBDIR1) clean | ||
33 | |||
34 | firewire_clean lguest_clean perf_clean usb_clean virtio_clean vm_clean: | ||
35 | $(QUIET_SUBDIR0)$(@:_clean=)/ $(QUIET_SUBDIR1) clean | ||
36 | |||
37 | selftests_clean: | ||
38 | $(QUIET_SUBDIR0)testing/$(@:_clean=)/ $(QUIET_SUBDIR1) clean | ||
39 | |||
40 | turbostat_clean x86_energy_perf_policy_clean: | ||
41 | $(QUIET_SUBDIR0)power/x86/$(@:_clean=)/ $(QUIET_SUBDIR1) clean | ||
42 | |||
43 | clean: cpupower_clean firewire_clean lguest_clean perf_clean selftests_clean \ | ||
44 | turbostat_clean usb_clean virtio_clean vm_clean \ | ||
45 | x86_energy_perf_policy_clean | ||
46 | |||
47 | .PHONY: FORCE | ||