From 3e531d5fd471678b16006298c4ef1944cca589fa Mon Sep 17 00:00:00 2001 From: Andrew Hsu Date: Sat, 20 May 2017 06:02:06 +0000 Subject: [PATCH] change default target to call for static binaries Signed-off-by: Andrew Hsu --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ef1112a2cb..257af72e8d 100644 --- a/Makefile +++ b/Makefile @@ -17,5 +17,5 @@ deb: ## build deb packages rpm: ## build rpm packages $(MAKE) CLI_DIR=$(CLI_DIR) ENGINE_DIR=$(ENGINE_DIR) -C $(PACKAGING_DIR) rpm -tgz: ## build static packages - $(MAKE) CLI_DIR=$(CLI_DIR) ENGINE_DIR=$(ENGINE_DIR) -C $(PACKAGING_DIR) tgz +static: ## build static packages + $(MAKE) CLI_DIR=$(CLI_DIR) ENGINE_DIR=$(ENGINE_DIR) -C $(PACKAGING_DIR) static