diff options
author | Quentin Monnet <quentin.monnet@netronome.com> | 2017-11-28 20:44:33 -0500 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2017-11-29 20:09:29 -0500 |
commit | ad3cda064402b69148faf5f7cd1ac8c2eee52645 (patch) | |
tree | fa55e234acf1c6bf1d4d96ed2d24de86792178d8 | |
parent | 507e590da398a0e3438d563b5e736c3f2a7749d7 (diff) |
tools: bpftool: declare phony targets as such
In the Makefile, targets install, doc and doc-install should be added to
.PHONY. Let's fix this.
Fixes: 71bb428fe2c1 ("tools: bpf: add bpftool")
Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com>
Acked-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
-rw-r--r-- | tools/bpf/bpftool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bpf/bpftool/Makefile b/tools/bpf/bpftool/Makefile index c5b21f2cbca5..ec3052c0b004 100644 --- a/tools/bpf/bpftool/Makefile +++ b/tools/bpf/bpftool/Makefile | |||
@@ -89,5 +89,5 @@ doc-install: | |||
89 | 89 | ||
90 | FORCE: | 90 | FORCE: |
91 | 91 | ||
92 | .PHONY: all clean FORCE | 92 | .PHONY: all clean FORCE install doc doc-install |
93 | .DEFAULT_GOAL := all | 93 | .DEFAULT_GOAL := all |