khuedoan-homelab/Makefile

37 lines
451 B
Makefile
Raw Normal View History

2021-02-08 14:13:40 +07:00
.POSIX:
.PHONY: *
.EXPORT_ALL_VARIABLES:
KUBECONFIG = $(shell pwd)/metal/kubeconfig.yaml
KUBE_CONFIG_PATH = $(KUBECONFIG)
2021-02-08 14:13:40 +07:00
default: metal bootstrap wait
all: metal bootstrap external wait
configure:
./scripts/configure
git status
2021-05-23 12:24:32 +07:00
metal:
2021-04-25 13:24:26 +07:00
make -C metal
2021-05-23 12:24:32 +07:00
2021-09-01 20:18:01 +07:00
bootstrap:
make -C bootstrap
2021-04-19 22:35:05 +07:00
external:
make -C external
wait:
./scripts/wait-main-apps
2021-05-16 13:20:27 +07:00
tools:
make -C tools
2021-04-19 22:35:05 +07:00
docs:
make -C docs
2021-05-23 12:24:32 +07:00
dev:
make -C metal cluster env=dev
make -C bootstrap