Makefile 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. # Some of the tools (perf) use same make variables
  2. # as in kernel build.
  3. export srctree=
  4. export objtree=
  5. include scripts/Makefile.include
  6. help:
  7. @echo 'Possible targets:'
  8. @echo ''
  9. @echo ' acpi - ACPI tools'
  10. @echo ' cgroup - cgroup tools'
  11. @echo ' cpupower - a tool for all things x86 CPU power'
  12. @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
  13. @echo ' freefall - laptop accelerometer program for disk protection'
  14. @echo ' gpio - GPIO tools'
  15. @echo ' hv - tools used when in Hyper-V clients'
  16. @echo ' iio - IIO tools'
  17. @echo ' kvm_stat - top-like utility for displaying kvm statistics'
  18. @echo ' leds - LEDs tools'
  19. @echo ' lguest - a minimal 32-bit x86 hypervisor'
  20. @echo ' net - misc networking tools'
  21. @echo ' perf - Linux performance measurement and analysis tool'
  22. @echo ' selftests - various kernel selftests'
  23. @echo ' spi - spi tools'
  24. @echo ' objtool - an ELF object analysis tool'
  25. @echo ' tmon - thermal monitoring and tuning tool'
  26. @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
  27. @echo ' usb - USB testing tools'
  28. @echo ' virtio - vhost test module'
  29. @echo ' vm - misc vm tools'
  30. @echo ' x86_energy_perf_policy - Intel energy policy tool'
  31. @echo ''
  32. @echo 'You can do:'
  33. @echo ' $$ make -C tools/ <tool>_install'
  34. @echo ''
  35. @echo ' from the kernel command line to build and install one of'
  36. @echo ' the tools above'
  37. @echo ''
  38. @echo ' $$ make tools/all'
  39. @echo ''
  40. @echo ' builds all tools.'
  41. @echo ''
  42. @echo ' $$ make tools/install'
  43. @echo ''
  44. @echo ' installs all tools.'
  45. @echo ''
  46. @echo 'Cleaning targets:'
  47. @echo ''
  48. @echo ' all of the above with the "_clean" string appended cleans'
  49. @echo ' the respective build directory.'
  50. @echo ' clean: a summary clean target to clean _all_ folders'
  51. acpi: FORCE
  52. $(call descend,power/$@)
  53. cpupower: FORCE
  54. $(call descend,power/$@)
  55. cgroup firewire hv guest spi usb virtio vm net iio gpio objtool leds: FORCE
  56. $(call descend,$@)
  57. liblockdep: FORCE
  58. $(call descend,lib/lockdep)
  59. libapi: FORCE
  60. $(call descend,lib/api)
  61. # The perf build does not follow the descend function setup,
  62. # invoking it via it's own make rule.
  63. PERF_O = $(if $(O),$(O)/tools/perf,)
  64. perf: FORCE
  65. $(Q)mkdir -p $(PERF_O) .
  66. $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
  67. selftests: FORCE
  68. $(call descend,testing/$@)
  69. turbostat x86_energy_perf_policy: FORCE
  70. $(call descend,power/x86/$@)
  71. tmon: FORCE
  72. $(call descend,thermal/$@)
  73. freefall: FORCE
  74. $(call descend,laptop/$@)
  75. all: acpi cgroup cpupower gpio hv firewire lguest \
  76. perf selftests turbostat usb \
  77. virtio vm net x86_energy_perf_policy \
  78. tmon freefall objtool
  79. acpi_install:
  80. $(call descend,power/$(@:_install=),install)
  81. cpupower_install:
  82. $(call descend,power/$(@:_install=),install)
  83. cgroup_install firewire_install gpio_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install objtool_install:
  84. $(call descend,$(@:_install=),install)
  85. selftests_install:
  86. $(call descend,testing/$(@:_install=),install)
  87. turbostat_install x86_energy_perf_policy_install:
  88. $(call descend,power/x86/$(@:_install=),install)
  89. tmon_install:
  90. $(call descend,thermal/$(@:_install=),install)
  91. freefall_install:
  92. $(call descend,laptop/$(@:_install=),install)
  93. kvm_stat_install:
  94. $(call descend,kvm/$(@:_install=),install)
  95. install: acpi_install cgroup_install cpupower_install gpio_install \
  96. hv_install firewire_install lguest_install \
  97. perf_install selftests_install turbostat_install usb_install \
  98. virtio_install vm_install net_install x86_energy_perf_policy_install \
  99. tmon_install freefall_install objtool_install kvm_stat_install
  100. acpi_clean:
  101. $(call descend,power/acpi,clean)
  102. cpupower_clean:
  103. $(call descend,power/cpupower,clean)
  104. cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean gpio_clean objtool_clean leds_clean:
  105. $(call descend,$(@:_clean=),clean)
  106. liblockdep_clean:
  107. $(call descend,lib/lockdep,clean)
  108. libapi_clean:
  109. $(call descend,lib/api,clean)
  110. libbpf_clean:
  111. $(call descend,lib/bpf,clean)
  112. libsubcmd_clean:
  113. $(call descend,lib/subcmd,clean)
  114. perf_clean:
  115. $(Q)mkdir -p $(PERF_O) .
  116. $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
  117. selftests_clean:
  118. $(call descend,testing/$(@:_clean=),clean)
  119. turbostat_clean x86_energy_perf_policy_clean:
  120. $(call descend,power/x86/$(@:_clean=),clean)
  121. tmon_clean:
  122. $(call descend,thermal/tmon,clean)
  123. freefall_clean:
  124. $(call descend,laptop/freefall,clean)
  125. build_clean:
  126. $(call descend,build,clean)
  127. clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
  128. perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
  129. vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
  130. freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
  131. gpio_clean objtool_clean leds_clean
  132. .PHONY: FORCE