From: Sebastien Douheret Date: Fri, 26 May 2017 21:12:49 +0000 (+0200) Subject: Add build release (REL=1 make all) X-Git-Tag: v0.0.1-alpha~1 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=b300a0413e9658aa2d9ebe0d4cddadc51881112a;p=src%2Fxds%2Fxds-agent.git Add build release (REL=1 make all) Signed-off-by: Sebastien Douheret --- diff --git a/Makefile b/Makefile index 160b91a..fc6a603 100644 --- a/Makefile +++ b/Makefile @@ -47,11 +47,21 @@ export PATH := $(PATH):$(LOCAL_TOOLSDIR) VERBOSE_1 := -v VERBOSE_2 := -v -x +# Release or Debug mode +ifeq ($(filter 1,$(RELEASE) $(REL)),) + GORELEASE= + BUILD_MODE="Debug mode" +else + # optimized code without debug info + GORELEASE= -s -w + BUILD_MODE="Release mode" +endif + all: tools/syncthing build build: vendor tools/syncthing/copytobin - @echo "### Build XDS agent (version $(VERSION), subversion $(SUB_VERSION))"; - @cd $(ROOT_SRCDIR); $(BUILD_ENV_FLAGS) go build $(VERBOSE_$(V)) -i -o $(LOCAL_BINDIR)/xds-agent$(EXT) -ldflags "-X main.AppVersion=$(VERSION) -X main.AppSubVersion=$(SUB_VERSION)" . + @echo "### Build XDS agent (version $(VERSION), subversion $(SUB_VERSION)) - $(BUILD_MODE)"; + @cd $(ROOT_SRCDIR); $(BUILD_ENV_FLAGS) go build $(VERBOSE_$(V)) -i -o $(LOCAL_BINDIR)/xds-agent$(EXT) -ldflags "$(GORELEASE) -X main.AppVersion=$(VERSION) -X main.AppSubVersion=$(SUB_VERSION)" . package: clean build @mkdir -p $(PACKAGE_DIR)/xds-agent