ptrace: add ability to retrieve signals without removing from a queue (v4)
[deliverable/linux.git] / tools / Makefile
CommitLineData
2363ecb1
BP
1include scripts/Makefile.include
2
d5dd8afb
BP
3help:
4 @echo 'Possible targets:'
5 @echo ''
92e015b1 6 @echo ' cgroup - cgroup tools'
d5dd8afb
BP
7 @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 ''
ea01fa9f 18 @echo 'You can do:'
7e010562 19 @echo ' $$ make -C tools/ <tool>_install'
ea01fa9f
BP
20 @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 ''
d5dd8afb
BP
28 @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
2363ecb1 34cpupower: FORCE
ca9dfc6c 35 $(call descend,power/$@)
2363ecb1 36
0a119538 37cgroup firewire guest usb virtio vm: FORCE
85c66be1
BP
38 $(call descend,$@)
39
40liblk: FORCE
41 $(call descend,lib/lk)
42
43perf: liblk FORCE
ca9dfc6c 44 $(call descend,$@)
2363ecb1
BP
45
46selftests: FORCE
ca9dfc6c 47 $(call descend,testing/$@)
2363ecb1
BP
48
49turbostat x86_energy_perf_policy: FORCE
ca9dfc6c 50 $(call descend,power/x86/$@)
2363ecb1
BP
51
52cpupower_install:
ca9dfc6c 53 $(call descend,power/$(@:_install=),install)
2363ecb1 54
92e015b1 55cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install:
ca9dfc6c 56 $(call descend,$(@:_install=),install)
2363ecb1
BP
57
58selftests_install:
ca9dfc6c 59 $(call descend,testing/$(@:_clean=),install)
2363ecb1
BP
60
61turbostat_install x86_energy_perf_policy_install:
ca9dfc6c 62 $(call descend,power/x86/$(@:_install=),install)
2363ecb1 63
92e015b1
GT
64install: 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
2363ecb1
BP
67
68cpupower_clean:
ca9dfc6c 69 $(call descend,power/cpupower,clean)
2363ecb1 70
0a119538 71cgroup_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean:
85c66be1
BP
72 $(call descend,$(@:_clean=),clean)
73
74liblk_clean:
75 $(call descend,lib/lk,clean)
76
77perf_clean: liblk_clean
ca9dfc6c 78 $(call descend,$(@:_clean=),clean)
2363ecb1
BP
79
80selftests_clean:
ca9dfc6c 81 $(call descend,testing/$(@:_clean=),clean)
2363ecb1
BP
82
83turbostat_clean x86_energy_perf_policy_clean:
ca9dfc6c 84 $(call descend,power/x86/$(@:_clean=),clean)
2363ecb1 85
92e015b1
GT
86clean: 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
2363ecb1
BP
89
90.PHONY: FORCE
This page took 0.109154 seconds and 5 git commands to generate.