From b3f2d0dec3f1c231d2592ddd120388325e15f06c Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Sun, 25 Apr 2021 13:24:26 +0700 Subject: [PATCH] Rework global makefile --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 1a933703..43e88866 100644 --- a/Makefile +++ b/Makefile @@ -6,16 +6,16 @@ default: tools tools: make -C tools -.PHONY: metal -metal: - make -C metal - -.PHONY: infra -infra: +.PHONY: deploy +deploy: + make -C metal reset make -C infra + make -C apps -.PHONY: apps -apps: +.PHONY: apply +apply: + make -C metal + make -C infra make -C apps .PHONY: docs