mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:14:38 +07:00
build: PHONY by default for all global target
This commit is contained in:
parent
ccc567aa18
commit
0b899cf326
6
Makefile
6
Makefile
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user