khuedoan-homelab/Makefile
2021-04-19 22:35:05 +07:00

24 lines
203 B
Makefile

.POSIX:
default: tools
.PHONY: tools
tools:
make -C tools
.PHONY: metal
metal:
make -C metal
.PHONY: infra
infra:
make -C infra
.PHONY: apps
apps:
make -C apps
.PHONY: docs
docs:
make -C docs