mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-22 20:14:32 +07:00
24 lines
235 B
Makefile
24 lines
235 B
Makefile
.POSIX:
|
|
|
|
default: tools
|
|
|
|
.PHONY: tools
|
|
tools:
|
|
make -C tools
|
|
|
|
.PHONY: deploy
|
|
deploy:
|
|
make -C metal reset
|
|
make -C infra
|
|
make -C apps
|
|
|
|
.PHONY: apply
|
|
apply:
|
|
make -C metal
|
|
make -C infra
|
|
make -C apps
|
|
|
|
.PHONY: docs
|
|
docs:
|
|
make -C docs
|