khuedoan-homelab/Makefile
2021-09-01 20:18:01 +07:00

24 lines
267 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