From 0b899cf32682c2e8005cfa74d051f36e73dc7e7b Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Fri, 22 Apr 2022 07:53:34 +0700 Subject: [PATCH] build: PHONY by default for all global target --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index e4d2544c..985c754b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ .POSIX: +.PHONY: * default: metal bootstrap wait @@ -8,26 +9,21 @@ configure: ./scripts/configure git status -.PHONY: metal metal: make -C metal -.PHONY: bootstrap bootstrap: make -C bootstrap -.PHONY: external external: make -C external wait: ./scripts/wait-main-apps -.PHONY: tools tools: make -C tools -.PHONY: docs docs: make -C docs