khuedoan-homelab/Makefile
2021-12-01 22:44:10 +07:00

28 lines
323 B
Makefile

.POSIX:
default: metal bootstrap
.PHONY: metal
metal:
make -C metal
.PHONY: bootstrap
bootstrap:
make -C bootstrap
.PHONY: tools
tools:
make -C tools
.PHONY: docs
docs:
make -C docs
lint:
# TODO (feature) Add lint checks for everything
make -C metal lint
dev:
make -C metal cluster env=dev
make -C bootstrap