mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 21:11:52 +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
|