blob: 927cd46d36dcbd98fb29676b0da0cb4da8eb4793 [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 Thelen92e015b12013-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'
Daniel Borkmanne306e2c2013-03-20 12:11:47 +000015 @echo ' net - misc networking tools'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020016 @echo ' vm - misc vm tools'
17 @echo ' x86_energy_perf_policy - Intel energy policy tool'
Jacob Pan94f69962013-10-14 16:02:27 -070018 @echo ' tmon - thermal monitoring and tuning tool'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020019 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020020 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010021 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020022 @echo ''
23 @echo ' from the kernel command line to build and install one of'
24 @echo ' the tools above'
25 @echo ''
26 @echo ' $$ make tools/install'
27 @echo ''
28 @echo ' installs all tools.'
29 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020030 @echo 'Cleaning targets:'
31 @echo ''
32 @echo ' all of the above with the "_clean" string appended cleans'
33 @echo ' the respective build directory.'
34 @echo ' clean: a summary clean target to clean _all_ folders'
35
Borislav Petkov2363ecb2012-04-11 18:36:16 +020036cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000037 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020038
Linus Torvalds73287a42013-05-01 14:08:52 -070039cgroup firewire guest usb virtio vm net: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010040 $(call descend,$@)
41
Borislav Petkov553873e2013-12-09 17:14:23 +010042libapikfs: FORCE
43 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010044
Borislav Petkov553873e2013-12-09 17:14:23 +010045perf: libapikfs FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000046 $(call descend,$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020047
48selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000049 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020050
51turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000052 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020053
Jacob Pan94f69962013-10-14 16:02:27 -070054tmon: FORCE
55 $(call descend,thermal/$@)
56
Borislav Petkov2363ecb2012-04-11 18:36:16 +020057cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000058 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020059
Daniel Borkmanne306e2c2013-03-20 12:11:47 +000060cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install net_install:
David Howellsca9dfc62012-11-05 15:15:24 +000061 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020062
63selftests_install:
David Howellsca9dfc62012-11-05 15:15:24 +000064 $(call descend,testing/$(@:_clean=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020065
66turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +000067 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020068
Jacob Pan94f69962013-10-14 16:02:27 -070069tmon_install:
70 $(call descend,thermal/$(@:_install=),install)
71
Greg Thelen92e015b12013-01-04 13:05:17 -080072install: cgroup_install cpupower_install firewire_install lguest_install \
73 perf_install selftests_install turbostat_install usb_install \
Jacob Pan94f69962013-10-14 16:02:27 -070074 virtio_install vm_install net_install x86_energy_perf_policy_install \
75 tmon
Borislav Petkov2363ecb2012-04-11 18:36:16 +020076
77cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000078 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020079
Linus Torvalds73287a42013-05-01 14:08:52 -070080cgroup_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +010081 $(call descend,$(@:_clean=),clean)
82
Borislav Petkov553873e2013-12-09 17:14:23 +010083libapikfs_clean:
84 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +010085
Borislav Petkov553873e2013-12-09 17:14:23 +010086perf_clean: libapikfs_clean
David Howellsca9dfc62012-11-05 15:15:24 +000087 $(call descend,$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020088
89selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000090 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020091
92turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000093 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020094
Jacob Pan94f69962013-10-14 16:02:27 -070095tmon_clean:
96 $(call descend,thermal/tmon,clean)
97
Greg Thelen92e015b12013-01-04 13:05:17 -080098clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \
99 selftests_clean turbostat_clean usb_clean virtio_clean \
Jacob Pan94f69962013-10-14 16:02:27 -0700100 vm_clean net_clean x86_energy_perf_policy_clean tmon_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200101
102.PHONY: FORCE