mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-22 20:54:33 +07:00
20 lines
194 B
Makefile
20 lines
194 B
Makefile
.POSIX:
|
|
|
|
all: metal infra platform apps
|
|
|
|
.PHONY: metal
|
|
metal:
|
|
make -C metal
|
|
|
|
.PHONY: infra
|
|
infra:
|
|
make -C infra
|
|
|
|
.PHONY: platform
|
|
platform:
|
|
make -C platform
|
|
|
|
.PHONY: apps
|
|
apps:
|
|
make -C apps
|