khuedoan-homelab/Makefile

37 lines
412 B
Makefile
Raw Normal View History

2021-02-08 14:13:40 +07:00
.POSIX:
default: metal bootstrap wait
all: metal bootstrap external wait
configure:
./scripts/configure
git status
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
.PHONY: bootstrap
2021-09-01 20:18:01 +07:00
bootstrap:
make -C bootstrap
2021-04-19 22:35:05 +07:00
.PHONY: external
external:
make -C external
wait:
./scripts/wait-main-apps
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
dev:
make -C metal cluster env=dev
make -C bootstrap