khuedoan-homelab/Makefile

20 lines
194 B
Makefile
Raw Normal View History

2021-02-08 14:13:40 +07:00
.POSIX:
2021-02-12 12:38:43 +07:00
all: metal infra platform apps
.PHONY: metal
metal:
2021-02-08 14:13:40 +07:00
make -C metal
2021-02-12 12:38:43 +07:00
.PHONY: infra
infra:
make -C infra
.PHONY: platform
platform:
2021-02-08 14:13:40 +07:00
make -C platform
2021-02-12 12:38:43 +07:00
.PHONY: apps
apps:
make -C apps