khuedoan-homelab/Makefile

24 lines
257 B
Makefile

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