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:
.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