khuedoan-homelab/Makefile
Khue Doan 9e59f1ad81 chore: cleanup lint targets
Let CI pipeline do it
2021-12-27 11:36:47 +07:00

30 lines
316 B
Makefile

.POSIX:
default: metal bootstrap
all: default external
.PHONY: metal
metal:
make -C metal
.PHONY: bootstrap
bootstrap:
make -C bootstrap
.PHONY: external
external:
make -C external
.PHONY: tools
tools:
make -C tools
.PHONY: docs
docs:
make -C docs
dev:
make -C metal cluster env=dev
make -C bootstrap