From: Quentin Monnet Date: Wed, 29 Nov 2017 01:44:33 +0000 (-0800) Subject: tools: bpftool: declare phony targets as such X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=ad3cda064402b69148faf5f7cd1ac8c2eee52645;p=openwrt%2Fstaging%2Fblogic.git 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 Acked-by: Jakub Kicinski Signed-off-by: Daniel Borkmann --- 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: FORCE: -.PHONY: all clean FORCE +.PHONY: all clean FORCE install doc doc-install .DEFAULT_GOAL := all