blob: f87c0ec63e6c5bef12330a2cff62074b5ebc8ffe [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 ''
6 @echo ' cpupower - a tool for all things x86 CPU power'
7 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
8 @echo ' lguest - a minimal 32-bit x86 hypervisor'
9 @echo ' perf - Linux performance measurement and analysis tool'
10 @echo ' selftests - various kernel selftests'
11 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
12 @echo ' usb - USB testing tools'
13 @echo ' virtio - vhost test module'
14 @echo ' vm - misc vm tools'
15 @echo ' x86_energy_perf_policy - Intel energy policy tool'
16 @echo ''
17 @echo 'Cleaning targets:'
18 @echo ''
19 @echo ' all of the above with the "_clean" string appended cleans'
20 @echo ' the respective build directory.'
21 @echo ' clean: a summary clean target to clean _all_ folders'
22
Borislav Petkov2363ecb2012-04-11 18:36:16 +020023cpupower: FORCE
24 $(QUIET_SUBDIR0)power/$@/ $(QUIET_SUBDIR1)
25
26firewire lguest perf usb virtio vm: FORCE
27 $(QUIET_SUBDIR0)$@/ $(QUIET_SUBDIR1)
28
29selftests: FORCE
30 $(QUIET_SUBDIR0)testing/$@/ $(QUIET_SUBDIR1)
31
32turbostat x86_energy_perf_policy: FORCE
33 $(QUIET_SUBDIR0)power/x86/$@/ $(QUIET_SUBDIR1)
34
35cpupower_install:
36 $(QUIET_SUBDIR0)power/$(@:_install=)/ $(QUIET_SUBDIR1) install
37
38firewire_install lguest_install perf_install usb_install virtio_install vm_install:
39 $(QUIET_SUBDIR0)$(@:_install=)/ $(QUIET_SUBDIR1) install
40
41selftests_install:
42 $(QUIET_SUBDIR0)testing/$(@:_clean=)/ $(QUIET_SUBDIR1) install
43
44turbostat_install x86_energy_perf_policy_install:
45 $(QUIET_SUBDIR0)power/x86/$(@:_install=)/ $(QUIET_SUBDIR1) install
46
47install: cpupower_install firewire_install lguest_install perf_install \
48 selftests_install turbostat_install usb_install virtio_install \
49 vm_install x86_energy_perf_policy_install
50
51cpupower_clean:
52 $(QUIET_SUBDIR0)power/cpupower/ $(QUIET_SUBDIR1) clean
53
54firewire_clean lguest_clean perf_clean usb_clean virtio_clean vm_clean:
55 $(QUIET_SUBDIR0)$(@:_clean=)/ $(QUIET_SUBDIR1) clean
56
57selftests_clean:
58 $(QUIET_SUBDIR0)testing/$(@:_clean=)/ $(QUIET_SUBDIR1) clean
59
60turbostat_clean x86_energy_perf_policy_clean:
61 $(QUIET_SUBDIR0)power/x86/$(@:_clean=)/ $(QUIET_SUBDIR1) clean
62
63clean: cpupower_clean firewire_clean lguest_clean perf_clean selftests_clean \
64 turbostat_clean usb_clean virtio_clean vm_clean \
65 x86_energy_perf_policy_clean
66
67.PHONY: FORCE