Makefile 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 ' vm - misc vm tools'
  15. @echo ' x86_energy_perf_policy - Intel energy policy tool'
  16. @echo ''
  17. @echo 'You can do:'
  18. @echo ' $$ make -C tools/ <tool>_install'
  19. @echo ''
  20. @echo ' from the kernel command line to build and install one of'
  21. @echo ' the tools above'
  22. @echo ''
  23. @echo ' $$ make tools/install'
  24. @echo ''
  25. @echo ' installs all tools.'
  26. @echo ''
  27. @echo 'Cleaning targets:'
  28. @echo ''
  29. @echo ' all of the above with the "_clean" string appended cleans'
  30. @echo ' the respective build directory.'
  31. @echo ' clean: a summary clean target to clean _all_ folders'
  32. cpupower: FORCE
  33. $(call descend,power/$@)
  34. cgroup firewire lguest perf usb virtio vm: FORCE
  35. $(call descend,$@)
  36. selftests: FORCE
  37. $(call descend,testing/$@)
  38. turbostat x86_energy_perf_policy: FORCE
  39. $(call descend,power/x86/$@)
  40. cpupower_install:
  41. $(call descend,power/$(@:_install=),install)
  42. cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install:
  43. $(call descend,$(@:_install=),install)
  44. selftests_install:
  45. $(call descend,testing/$(@:_clean=),install)
  46. turbostat_install x86_energy_perf_policy_install:
  47. $(call descend,power/x86/$(@:_install=),install)
  48. install: cgroup_install cpupower_install firewire_install lguest_install \
  49. perf_install selftests_install turbostat_install usb_install \
  50. virtio_install vm_install x86_energy_perf_policy_install
  51. cpupower_clean:
  52. $(call descend,power/cpupower,clean)
  53. cgroup_clean firewire_clean lguest_clean perf_clean usb_clean virtio_clean vm_clean:
  54. $(call descend,$(@:_clean=),clean)
  55. selftests_clean:
  56. $(call descend,testing/$(@:_clean=),clean)
  57. turbostat_clean x86_energy_perf_policy_clean:
  58. $(call descend,power/x86/$(@:_clean=),clean)
  59. clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \
  60. selftests_clean turbostat_clean usb_clean virtio_clean \
  61. vm_clean x86_energy_perf_policy_clean
  62. .PHONY: FORCE