Makefile 4.2 KB
Newer Older
1 2 3 4 5
# Some of the tools (perf) use same make variables
# as in kernel build.
export srctree=
export objtree=

B
Borislav Petkov 已提交
6 7
include scripts/Makefile.include

B
Borislav Petkov 已提交
8 9 10
help:
	@echo 'Possible targets:'
	@echo ''
11
	@echo '  acpi       - ACPI tools'
12
	@echo '  cgroup     - cgroup tools'
B
Borislav Petkov 已提交
13 14
	@echo '  cpupower   - a tool for all things x86 CPU power'
	@echo '  firewire   - the userspace part of nosy, an IEEE-1394 traffic sniffer'
15
	@echo '  hv         - tools used when in Hyper-V clients'
16
	@echo '  iio        - IIO tools'
B
Borislav Petkov 已提交
17 18 19
	@echo '  lguest     - a minimal 32-bit x86 hypervisor'
	@echo '  perf       - Linux performance measurement and analysis tool'
	@echo '  selftests  - various kernel selftests'
20
	@echo '  spi        - spi tools'
B
Borislav Petkov 已提交
21 22 23
	@echo '  turbostat  - Intel CPU idle stats and freq reporting tool'
	@echo '  usb        - USB testing tools'
	@echo '  virtio     - vhost test module'
24
	@echo '  net        - misc networking tools'
B
Borislav Petkov 已提交
25 26
	@echo '  vm         - misc vm tools'
	@echo '  x86_energy_perf_policy - Intel energy policy tool'
27
	@echo '  tmon       - thermal monitoring and tuning tool'
28
	@echo '  freefall   - laptop accelerometer program for disk protection'
B
Borislav Petkov 已提交
29
	@echo ''
30
	@echo 'You can do:'
31
	@echo ' $$ make -C tools/ <tool>_install'
32 33 34 35
	@echo ''
	@echo '  from the kernel command line to build and install one of'
	@echo '  the tools above'
	@echo ''
K
Kamal Mostafa 已提交
36 37 38 39
	@echo '  $$ make tools/all'
	@echo ''
	@echo '  builds all tools.'
	@echo ''
40 41 42 43
	@echo '  $$ make tools/install'
	@echo ''
	@echo '  installs all tools.'
	@echo ''
B
Borislav Petkov 已提交
44 45 46 47 48 49
	@echo 'Cleaning targets:'
	@echo ''
	@echo '  all of the above with the "_clean" string appended cleans'
	@echo '    the respective build directory.'
	@echo '  clean: a summary clean target to clean _all_ folders'

50 51 52
acpi: FORCE
	$(call descend,power/$@)

B
Borislav Petkov 已提交
53
cpupower: FORCE
54
	$(call descend,power/$@)
B
Borislav Petkov 已提交
55

56
cgroup firewire hv guest spi usb virtio vm net iio: FORCE
57 58
	$(call descend,$@)

59 60 61
liblockdep: FORCE
	$(call descend,lib/lockdep)

62
libapi: FORCE
63
	$(call descend,lib/api)
64

65 66 67 68
# The perf build does not follow the descend function setup,
# invoking it via it's own make rule.
PERF_O   = $(if $(O),$(O)/tools/perf,)

69
perf: FORCE
70 71
	$(Q)mkdir -p $(PERF_O) .
	$(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
B
Borislav Petkov 已提交
72 73

selftests: FORCE
74
	$(call descend,testing/$@)
B
Borislav Petkov 已提交
75 76

turbostat x86_energy_perf_policy: FORCE
77
	$(call descend,power/x86/$@)
B
Borislav Petkov 已提交
78

79 80 81
tmon: FORCE
	$(call descend,thermal/$@)

82 83 84
freefall: FORCE
	$(call descend,laptop/$@)

K
Kamal Mostafa 已提交
85 86 87 88 89
all: acpi cgroup cpupower hv firewire lguest \
		perf selftests turbostat usb \
		virtio vm net x86_energy_perf_policy \
		tmon freefall

90 91 92
acpi_install:
	$(call descend,power/$(@:_install=),install)

B
Borislav Petkov 已提交
93
cpupower_install:
94
	$(call descend,power/$(@:_install=),install)
B
Borislav Petkov 已提交
95

96
cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
97
	$(call descend,$(@:_install=),install)
B
Borislav Petkov 已提交
98 99

selftests_install:
100
	$(call descend,testing/$(@:_install=),install)
B
Borislav Petkov 已提交
101 102

turbostat_install x86_energy_perf_policy_install:
103
	$(call descend,power/x86/$(@:_install=),install)
B
Borislav Petkov 已提交
104

105 106 107
tmon_install:
	$(call descend,thermal/$(@:_install=),install)

108 109 110
freefall_install:
	$(call descend,laptop/$(@:_install=),install)

111
install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
112
		perf_install selftests_install turbostat_install usb_install \
113
		virtio_install vm_install net_install x86_energy_perf_policy_install \
114
		tmon_install freefall_install
B
Borislav Petkov 已提交
115

116 117 118
acpi_clean:
	$(call descend,power/acpi,clean)

B
Borislav Petkov 已提交
119
cpupower_clean:
120
	$(call descend,power/cpupower,clean)
B
Borislav Petkov 已提交
121

122
cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
123 124
	$(call descend,$(@:_clean=),clean)

125 126 127
liblockdep_clean:
	$(call descend,lib/lockdep,clean)

128
libapi_clean:
129
	$(call descend,lib/api,clean)
130

131
perf_clean:
132
	$(call descend,$(@:_clean=),clean)
B
Borislav Petkov 已提交
133 134

selftests_clean:
135
	$(call descend,testing/$(@:_clean=),clean)
B
Borislav Petkov 已提交
136 137

turbostat_clean x86_energy_perf_policy_clean:
138
	$(call descend,power/x86/$(@:_clean=),clean)
B
Borislav Petkov 已提交
139

140 141 142
tmon_clean:
	$(call descend,thermal/tmon,clean)

143 144 145
freefall_clean:
	$(call descend,laptop/freefall,clean)

146
clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
147
		perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
148 149
		vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
		freefall_clean
B
Borislav Petkov 已提交
150 151

.PHONY: FORCE