Makefile 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. include scripts/Makefile.include
  2. help:
  3. @echo 'Possible targets:'
  4. @echo ''
  5. @echo ' acpi - ACPI tools'
  6. @echo ' cgroup - cgroup tools'
  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 ' hv - tools used when in Hyper-V clients'
  10. @echo ' lguest - a minimal 32-bit x86 hypervisor'
  11. @echo ' perf - Linux performance measurement and analysis tool'
  12. @echo ' selftests - various kernel selftests'
  13. @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
  14. @echo ' usb - USB testing tools'
  15. @echo ' virtio - vhost test module'
  16. @echo ' net - misc networking tools'
  17. @echo ' vm - misc vm tools'
  18. @echo ' x86_energy_perf_policy - Intel energy policy tool'
  19. @echo ' tmon - thermal monitoring and tuning tool'
  20. @echo ''
  21. @echo 'You can do:'
  22. @echo ' $$ make -C tools/ <tool>_install'
  23. @echo ''
  24. @echo ' from the kernel command line to build and install one of'
  25. @echo ' the tools above'
  26. @echo ''
  27. @echo ' $$ make tools/install'
  28. @echo ''
  29. @echo ' installs all tools.'
  30. @echo ''
  31. @echo 'Cleaning targets:'
  32. @echo ''
  33. @echo ' all of the above with the "_clean" string appended cleans'
  34. @echo ' the respective build directory.'
  35. @echo ' clean: a summary clean target to clean _all_ folders'
  36. acpi: FORCE
  37. $(call descend,power/$@)
  38. cpupower: FORCE
  39. $(call descend,power/$@)
  40. cgroup firewire hv guest usb virtio vm net: FORCE
  41. $(call descend,$@)
  42. liblockdep: FORCE
  43. $(call descend,lib/lockdep)
  44. libapikfs: FORCE
  45. $(call descend,lib/api)
  46. perf: libapikfs FORCE
  47. $(call descend,$@)
  48. selftests: FORCE
  49. $(call descend,testing/$@)
  50. turbostat x86_energy_perf_policy: FORCE
  51. $(call descend,power/x86/$@)
  52. tmon: FORCE
  53. $(call descend,thermal/$@)
  54. acpi_install:
  55. $(call descend,power/$(@:_install=),install)
  56. cpupower_install:
  57. $(call descend,power/$(@:_install=),install)
  58. cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
  59. $(call descend,$(@:_install=),install)
  60. selftests_install:
  61. $(call descend,testing/$(@:_clean=),install)
  62. turbostat_install x86_energy_perf_policy_install:
  63. $(call descend,power/x86/$(@:_install=),install)
  64. tmon_install:
  65. $(call descend,thermal/$(@:_install=),install)
  66. install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
  67. perf_install selftests_install turbostat_install usb_install \
  68. virtio_install vm_install net_install x86_energy_perf_policy_install \
  69. tmon
  70. acpi_clean:
  71. $(call descend,power/acpi,clean)
  72. cpupower_clean:
  73. $(call descend,power/cpupower,clean)
  74. cgroup_clean hv_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean:
  75. $(call descend,$(@:_clean=),clean)
  76. liblockdep_clean:
  77. $(call descend,lib/lockdep,clean)
  78. libapikfs_clean:
  79. $(call descend,lib/api,clean)
  80. perf_clean: libapikfs_clean
  81. $(call descend,$(@:_clean=),clean)
  82. selftests_clean:
  83. $(call descend,testing/$(@:_clean=),clean)
  84. turbostat_clean x86_energy_perf_policy_clean:
  85. $(call descend,power/x86/$(@:_clean=),clean)
  86. tmon_clean:
  87. $(call descend,thermal/tmon,clean)
  88. clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
  89. perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \
  90. vm_clean net_clean x86_energy_perf_policy_clean tmon_clean
  91. .PHONY: FORCE