khuedoan-homelab/Makefile

35 lines
390 B
Makefile
Raw Normal View History

2021-02-08 14:13:40 +07:00
.POSIX:
2021-05-23 12:24:32 +07:00
default: apply
2021-05-23 12:24:32 +07:00
.PHONY: metal
metal:
2021-04-25 13:24:26 +07:00
make -C metal
2021-05-23 12:24:32 +07:00
2021-08-20 19:31:04 +07:00
.PHONY: cluster
cluster:
make -C cluster
2021-05-23 12:24:32 +07:00
.PHONY: apps
apps:
2021-02-12 12:38:43 +07:00
make -C apps
2021-04-19 22:35:05 +07:00
2021-05-16 13:20:27 +07:00
.PHONY: tools
tools:
make -C tools
2021-04-19 22:35:05 +07:00
.PHONY: docs
docs:
make -C docs
2021-05-23 12:24:32 +07:00
.PHONY: apply
2021-08-20 19:31:04 +07:00
apply: metal cluster apps
2021-06-10 07:14:10 +07:00
lint:
2021-06-10 20:27:57 +07:00
# TODO (feature) Add lint checks for everything
make -C metal lint
2021-08-20 19:31:04 +07:00
make -C cluster lint
2021-06-14 17:14:57 +07:00
hooks:
cp ./scripts/hooks/* .git/hooks/