From 4db1132c1cb1ffe1425b8ff5266f9f7220aeffe3 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Mon, 9 Oct 2017 18:28:26 +0200 Subject: [PATCH] Set 'all' build rule as default like other XDS packages. --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index e4973ad..334c47d 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ endif HOST_GOOS=$(shell go env GOOS) HOST_GOARCH=$(shell go env GOARCH) ARCH=$(HOST_GOOS)-$(HOST_GOARCH) +REPOPATH=github.com/iotbzh/xds-gdb EXT= ifeq ($(HOST_GOOS), windows) @@ -51,12 +52,12 @@ else BUILD_MODE="Release mode" endif -REPOPATH=github.com/iotbzh/xds-gdb -TARGET := xds-gdb -build: $(TARGET) +.PHONY: all +all: build -xds-gdb: vendor +.PHONY: build +build: vendor @echo "### Build $@ (version $(VERSION), subversion $(SUB_VERSION)) - $(BUILD_MODE)"; @cd $(ROOT_SRCDIR); $(BUILD_ENV_FLAGS) go build $(VERBOSE_$(V)) -i -o $(BINDIR)/$@$(EXT) -ldflags "$(GORELEASE) -X main.AppVersion=$(VERSION) -X main.AppSubVersion=$(SUB_VERSION)" . @@ -111,7 +112,7 @@ tools/glide: help: @echo "Main supported rules:" - @echo " build (default)" + @echo " all (default)" @echo " release" @echo " clean" @echo " package" -- 2.16.6