mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-22 20:34:32 +07:00
e8a2aa98b4
This reverts commit 084984c65d
.
31 lines
289 B
Makefile
31 lines
289 B
Makefile
.POSIX:
|
|
|
|
default: apply
|
|
|
|
.PHONY: metal
|
|
metal:
|
|
make -C metal
|
|
|
|
.PHONY: infra
|
|
infra:
|
|
make -C infra
|
|
|
|
.PHONY: apps
|
|
apps:
|
|
make -C apps
|
|
|
|
.PHONY: tools
|
|
tools:
|
|
make -C tools
|
|
|
|
.PHONY: docs
|
|
docs:
|
|
make -C docs
|
|
|
|
.PHONY: apply
|
|
apply: metal infra apps
|
|
|
|
lint:
|
|
make -C metal lint
|
|
make -C infra lint
|