diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-06-20 22:48:01 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-06-20 22:48:01 +0200 |
commit | 6aa0d4b8cdda11c7ee218f0f3cc1013dd18ab056 (patch) | |
tree | b24ba1943f63e48527879489b3cb793be3a4efd1 /Makefile | |
parent | 8f41ac456fc92a9ec333579498e9933d73404905 (diff) |
Only call vendor when building all.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -82,9 +82,9 @@ endif all: tools/syncthing build .PHONY: build -build: xds webapp +build: vendor xds webapp -xds:vendor scripts tools/syncthing/copytobin +xds: scripts tools/syncthing/copytobin @echo "### Build XDS server (version $(VERSION), subversion $(SUB_VERSION))"; @cd $(ROOT_SRCDIR); $(BUILD_ENV_FLAGS) go build $(VERBOSE_$(V)) -i -o $(LOCAL_BINDIR)/xds-server$(EXT) -ldflags "$(GORELEASE) -X main.AppVersion=$(VERSION) -X main.AppSubVersion=$(SUB_VERSION)" . |