Makefile 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. include scripts/Makefile.include
  2. help:
  3. @echo 'Possible targets:'
  4. @echo ''
  5. @echo ' cgroup - cgroup tools'
  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 ' net - misc networking tools'
  15. @echo ' vm - misc vm tools'
  16. @echo ' x86_energy_perf_policy - Intel energy policy tool'
  17. @echo ''
  18. @echo 'You can do:'
  19. @echo ' $$ make -C tools/ <tool>_install'
  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 ''
  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. cpupower: FORCE
  34. $(call descend,power/$@)
  35. cgroup firewire guest usb virtio vm net: FORCE
  36. $(call descend,$@)
  37. liblk: FORCE
  38. $(call descend,lib/lk)
  39. perf: liblk FORCE
  40. $(call descend,$@)
  41. selftests: FORCE
  42. $(call descend,testing/$@)
  43. turbostat x86_energy_perf_policy: FORCE
  44. $(call descend,power/x86/$@)
  45. cpupower_install:
  46. $(call descend,power/$(@:_install=),install)
  47. cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install net_install:
  48. $(call descend,$(@:_install=),install)
  49. selftests_install:
  50. $(call descend,testing/$(@:_clean=),install)
  51. turbostat_install x86_energy_perf_policy_install:
  52. $(call descend,power/x86/$(@:_install=),install)
  53. install: cgroup_install cpupower_install firewire_install lguest_install \
  54. perf_install selftests_install turbostat_install usb_install \
  55. virtio_install vm_install net_install x86_energy_perf_policy_install
  56. cpupower_clean:
  57. $(call descend,power/cpupower,clean)
  58. cgroup_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean:
  59. $(call descend,$(@:_clean=),clean)
  60. liblk_clean:
  61. $(call descend,lib/lk,clean)
  62. perf_clean: liblk_clean
  63. $(call descend,$(@:_clean=),clean)
  64. selftests_clean:
  65. $(call descend,testing/$(@:_clean=),clean)
  66. turbostat_clean x86_energy_perf_policy_clean:
  67. $(call descend,power/x86/$(@:_clean=),clean)
  68. clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \
  69. selftests_clean turbostat_clean usb_clean virtio_clean \
  70. vm_clean net_clean x86_energy_perf_policy_clean
  71. .PHONY: FORCE