diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-08-29 00:09:11 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-08-29 00:10:48 +0200 |
commit | d4a7d7985ca41522f02feda638a87aa131cb2e79 (patch) | |
tree | 08650b6581b366574509932ce3d2c0555450278a /Makefile | |
parent | 68ac563c8ce709fe55d3cf38ea230ea78d633d6a (diff) |
Bump to 0.1.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,7 +1,7 @@ # Makefile used to build xds-gdb commands # Application Version -VERSION := 0.0.1 +VERSION := 0.1.0 # Retrieve git tag/commit to set sub-version string @@ -58,7 +58,6 @@ build: $(TARGET) xds-gdb: 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)" . - @([ "$(HOST_GOOS)" = "linux" ] && { cd $(BINDIR) && ln -sf $@ $(subst xds-,,$@); } || { true; } ) test: tools/glide go test --race $(shell ./tools/glide novendor) |