blob: 6aaeb6cd867dc97a042628e29b5c7edf5abcffd7 [file] [log] [blame]
Borislav Petkov2363ecb2012-04-11 18:36:16 +02001include scripts/Makefile.include
2
Borislav Petkovd5dd8af2012-04-11 18:36:17 +02003help:
4 @echo 'Possible targets:'
5 @echo ''
Greg Thelen92e015b2013-01-04 13:05:17 -08006 @echo ' cgroup - cgroup tools'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +02007 @echo ' cpupower - a tool for all things x86 CPU power'
8 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
9 @echo ' lguest - a minimal 32-bit x86 hypervisor'
10 @echo ' perf - Linux performance measurement and analysis tool'
11 @echo ' selftests - various kernel selftests'
12 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
13 @echo ' usb - USB testing tools'
14 @echo ' virtio - vhost test module'
15 @echo ' vm - misc vm tools'
16 @echo ' x86_energy_perf_policy - Intel energy policy tool'
17 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020018 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010019 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020020 @echo ''
21 @echo ' from the kernel command line to build and install one of'
22 @echo ' the tools above'
23 @echo ''
24 @echo ' $$ make tools/install'
25 @echo ''
26 @echo ' installs all tools.'
27 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020028 @echo 'Cleaning targets:'
29 @echo ''
30 @echo ' all of the above with the "_clean" string appended cleans'
31 @echo ' the respective build directory.'
32 @echo ' clean: a summary clean target to clean _all_ folders'
33
Borislav Petkov2363ecb2012-04-11 18:36:16 +020034cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000035 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020036
Ingo Molnar0a119532013-03-21 11:06:12 +010037cgroup firewire guest usb virtio vm: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010038 $(call descend,$@)
39
40liblk: FORCE
41 $(call descend,lib/lk)
42
43perf: liblk FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000044 $(call descend,$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020045
46selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000047 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020048
49turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000050 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020051
52cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000053 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020054
Greg Thelen92e015b2013-01-04 13:05:17 -080055cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install:
David Howellsca9dfc62012-11-05 15:15:24 +000056 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020057
58selftests_install:
David Howellsca9dfc62012-11-05 15:15:24 +000059 $(call descend,testing/$(@:_clean=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020060
61turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +000062 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020063
Greg Thelen92e015b2013-01-04 13:05:17 -080064install: cgroup_install cpupower_install firewire_install lguest_install \
65 perf_install selftests_install turbostat_install usb_install \
66 virtio_install vm_install x86_energy_perf_policy_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +020067
68cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000069 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020070
Ingo Molnar0a119532013-03-21 11:06:12 +010071cgroup_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +010072 $(call descend,$(@:_clean=),clean)
73
74liblk_clean:
75 $(call descend,lib/lk,clean)
76
77perf_clean: liblk_clean
David Howellsca9dfc62012-11-05 15:15:24 +000078 $(call descend,$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020079
80selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000081 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020082
83turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000084 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020085
Greg Thelen92e015b2013-01-04 13:05:17 -080086clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \
87 selftests_clean turbostat_clean usb_clean virtio_clean \
88 vm_clean x86_energy_perf_policy_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +020089
90.PHONY: FORCE