mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-22 20:54:33 +07:00
24 lines
267 B
Makefile
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
|