From 0c7642562edc97059f5de566db53b03b6f47cec2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?SZEDER=20G=C3=A1bor?= Date: Mon, 23 Jul 2018 15:50:56 +0200 Subject: [PATCH] coccinelle: mark the 'coccicheck' make target as .PHONY MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The 'coccicheck' target doesn't create a file with the same name, so mark it as .PHONY. Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 08e5c54549..530be4eca6 100644 --- a/Makefile +++ b/Makefile @@ -2688,6 +2688,8 @@ C_SOURCES = $(patsubst %.o,%.c,$(C_OBJ)) fi coccicheck: $(patsubst %.cocci,%.cocci.patch,$(wildcard contrib/coccinelle/*.cocci)) +.PHONY: coccicheck + ### Installation rules ifneq ($(filter /%,$(firstword $(template_dir))),) -- 2.40.0