khuedoan-homelab/Makefile

24 lines
235 B
Makefile
Raw Normal View History

2021-02-08 14:13:40 +07:00
.POSIX:
default: tools
.PHONY: tools
tools:
make -C tools
2021-02-12 12:38:43 +07:00
2021-04-25 13:24:26 +07:00
.PHONY: deploy
deploy:
make -C metal reset
2021-02-12 12:38:43 +07:00
make -C infra
2021-04-25 13:24:26 +07:00
make -C apps
2021-02-12 12:38:43 +07:00
2021-04-25 13:24:26 +07:00
.PHONY: apply
apply:
make -C metal
make -C infra
2021-02-12 12:38:43 +07:00
make -C apps
2021-04-19 22:35:05 +07:00
.PHONY: docs
docs:
make -C docs