perf tools: Unexport some methods unused outside strbuf.c
[cascardo/linux.git] / tools / Makefile
index 7dc820a..6339f6a 100644 (file)
@@ -8,23 +8,24 @@ include scripts/Makefile.include
 help:
        @echo 'Possible targets:'
        @echo ''
-       @echo '  acpi       - ACPI tools'
-       @echo '  cgroup     - cgroup tools'
-       @echo '  cpupower   - a tool for all things x86 CPU power'
-       @echo '  firewire   - the userspace part of nosy, an IEEE-1394 traffic sniffer'
-       @echo '  hv         - tools used when in Hyper-V clients'
-       @echo '  iio        - IIO tools'
-       @echo '  lguest     - a minimal 32-bit x86 hypervisor'
-       @echo '  perf       - Linux performance measurement and analysis tool'
-       @echo '  selftests  - various kernel selftests'
-       @echo '  turbostat  - Intel CPU idle stats and freq reporting tool'
-       @echo '  usb        - USB testing tools'
-       @echo '  virtio     - vhost test module'
-       @echo '  net        - misc networking tools'
-       @echo '  vm         - misc vm tools'
+       @echo '  acpi                   - ACPI tools'
+       @echo '  cgroup                 - cgroup tools'
+       @echo '  cpupower               - a tool for all things x86 CPU power'
+       @echo '  firewire               - the userspace part of nosy, an IEEE-1394 traffic sniffer'
+       @echo '  freefall               - laptop accelerometer program for disk protection'
+       @echo '  hv                     - tools used when in Hyper-V clients'
+       @echo '  iio                    - IIO tools'
+       @echo '  lguest                 - a minimal 32-bit x86 hypervisor'
+       @echo '  net                    - misc networking tools'
+       @echo '  perf                   - Linux performance measurement and analysis tool'
+       @echo '  selftests              - various kernel selftests'
+       @echo '  spi                    - spi tools'
+       @echo '  tmon                   - thermal monitoring and tuning tool'
+       @echo '  turbostat              - Intel CPU idle stats and freq reporting tool'
+       @echo '  usb                    - USB testing tools'
+       @echo '  virtio                 - vhost test module'
+       @echo '  vm                     - misc vm tools'
        @echo '  x86_energy_perf_policy - Intel energy policy tool'
-       @echo '  tmon       - thermal monitoring and tuning tool'
-       @echo '  freefall   - laptop accelerometer program for disk protection'
        @echo ''
        @echo 'You can do:'
        @echo ' $$ make -C tools/ <tool>_install'
@@ -52,7 +53,7 @@ acpi: FORCE
 cpupower: FORCE
        $(call descend,power/$@)
 
-cgroup firewire hv guest usb virtio vm net iio: FORCE
+cgroup firewire hv guest spi usb virtio vm net iio: FORCE
        $(call descend,$@)
 
 liblockdep: FORCE
@@ -96,7 +97,7 @@ cgroup_install firewire_install hv_install lguest_install perf_install usb_insta
        $(call descend,$(@:_install=),install)
 
 selftests_install:
-       $(call descend,testing/$(@:_clean=),install)
+       $(call descend,testing/$(@:_install=),install)
 
 turbostat_install x86_energy_perf_policy_install:
        $(call descend,power/x86/$(@:_install=),install)
@@ -118,7 +119,7 @@ acpi_clean:
 cpupower_clean:
        $(call descend,power/cpupower,clean)
 
-cgroup_clean hv_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
+cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
        $(call descend,$(@:_clean=),clean)
 
 liblockdep_clean:
@@ -127,6 +128,12 @@ liblockdep_clean:
 libapi_clean:
        $(call descend,lib/api,clean)
 
+libbpf_clean:
+       $(call descend,lib/bpf,clean)
+
+libsubcmd_clean:
+       $(call descend,lib/subcmd,clean)
+
 perf_clean:
        $(call descend,$(@:_clean=),clean)
 
@@ -142,9 +149,12 @@ tmon_clean:
 freefall_clean:
        $(call descend,laptop/freefall,clean)
 
+build_clean:
+       $(call descend,build,clean)
+
 clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
-               perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \
+               perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
                vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
-               freefall_clean
+               freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean
 
 .PHONY: FORCE