From 6789285a39e9ff3e1bd7e5d6742f88dfa648642e Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Thu, 21 Mar 2019 09:10:17 +0100 Subject: [PATCH] [chore] Makefile: declare all phonies (#875) It's generally working as expected 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. Cf. https://github.com/koreader/koreader/pull/4819 and https://github.com/koreader/koreader-base/issues/871. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 80d2e9b4d..0738537c0 100644 --- a/Makefile +++ b/Makefile @@ -215,4 +215,4 @@ test: $(OUTPUT_DIR)/spec $(OUTPUT_DIR)/.busted --no-auto-insulate \ -o ./spec/base/unit/verbose_print ./spec/base/unit -.PHONY: test +.PHONY: all clean test