diff options
author | Kamal Mostafa <kamal@canonical.com> | 2015-11-11 17:25:34 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-11-12 16:58:10 -0500 |
commit | f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 (patch) | |
tree | fd5090db89b92429a758055df48ce254c9fe6013 /tools/Makefile | |
parent | 836d525baada26e1a7462e87805337b9a9b729f6 (diff) |
tools: Add a "make all" rule
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index fa9d0a614d97..7dc820a8c1f1 100644 --- a/tools/Makefile +++ b/tools/Makefile | |||
@@ -32,6 +32,10 @@ help: | |||
32 | @echo ' from the kernel command line to build and install one of' | 32 | @echo ' from the kernel command line to build and install one of' |
33 | @echo ' the tools above' | 33 | @echo ' the tools above' |
34 | @echo '' | 34 | @echo '' |
35 | @echo ' $$ make tools/all' | ||
36 | @echo '' | ||
37 | @echo ' builds all tools.' | ||
38 | @echo '' | ||
35 | @echo ' $$ make tools/install' | 39 | @echo ' $$ make tools/install' |
36 | @echo '' | 40 | @echo '' |
37 | @echo ' installs all tools.' | 41 | @echo ' installs all tools.' |
@@ -77,6 +81,11 @@ tmon: FORCE | |||
77 | freefall: FORCE | 81 | freefall: FORCE |
78 | $(call descend,laptop/$@) | 82 | $(call descend,laptop/$@) |
79 | 83 | ||
84 | all: acpi cgroup cpupower hv firewire lguest \ | ||
85 | perf selftests turbostat usb \ | ||
86 | virtio vm net x86_energy_perf_policy \ | ||
87 | tmon freefall | ||
88 | |||
80 | acpi_install: | 89 | acpi_install: |
81 | $(call descend,power/$(@:_install=),install) | 90 | $(call descend,power/$(@:_install=),install) |
82 | 91 | ||