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