From fd452401da60df9a3247ffdcc945dcf6d4b4149d Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Fri, 12 Feb 2021 12:38:43 +0700 Subject: [PATCH] Add more target for each layer --- Makefile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a4be981c..76253a24 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,19 @@ .POSIX: -build: +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