From 8546c1c562d0381e204c1ddf189c7629947678a5 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Fri, 15 Jan 2021 18:34:41 +0000 Subject: [PATCH] Add the build target to the global make file --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 271c55f..f333092 100644 --- a/Makefile +++ b/Makefile @@ -5,4 +5,7 @@ include $(THIS_DIR)/bootstrap/Makefile .PHONY: compile compile: compile-bootstrap +.PHONY: build +build: compile + clean: clean-bootstrap