From 523be5e7d9787c9d9ebe9c69ef992c85425b7b7d Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Tue, 19 Mar 2019 16:08:13 +0100 Subject: [PATCH] [fix] Makefile: declare all phonies (#4819) It's generally working as expected at the moment because you're unlikely to have a file named `clean`. But if you were to create a file named `all` or `clean` you could have a pretty difficult time figuring out why nothing's happening anymore. Pointed out by https://github.com/mrtazz/checkmake which I ran out of sheer curiosity. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 43dd8ff2b..704b3d6df 100644 --- a/Makefile +++ b/Makefile @@ -501,4 +501,4 @@ static-check: doc: make -C doc -.PHONY: test doc +.PHONY: all clean doc test update