build: PHONY by default for all global target

This commit is contained in:
Khue Doan 2022-04-22 07:53:34 +07:00
parent ccc567aa18
commit 0b899cf326

View File

@ -1,4 +1,5 @@
.POSIX: .POSIX:
.PHONY: *
default: metal bootstrap wait default: metal bootstrap wait
@ -8,26 +9,21 @@ configure:
./scripts/configure ./scripts/configure
git status git status
.PHONY: metal
metal: metal:
make -C metal make -C metal
.PHONY: bootstrap
bootstrap: bootstrap:
make -C bootstrap make -C bootstrap
.PHONY: external
external: external:
make -C external make -C external
wait: wait:
./scripts/wait-main-apps ./scripts/wait-main-apps
.PHONY: tools
tools: tools:
make -C tools make -C tools
.PHONY: docs
docs: docs:
make -C docs make -C docs