X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=Makefile;h=1d1e07d98f51fb66c5fc29b28ec27388760adbb9;hb=228292f1a8b2758cca63c934fdb0762377e5b31a;hp=902a23882a4f2410fc514a956293684b64082d6a;hpb=03ea9e0e7107d59f207b3842f9fc3f74d036ac91;p=src%2Fxds%2Fxds-agent.git diff --git a/Makefile b/Makefile index 902a238..1d1e07d 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,11 @@ # Makefile used to build XDS daemon Web Server # Application Version -VERSION := 0.0.1 +VERSION := 0.1.0 # Syncthing version to install SYNCTHING_VERSION = 0.14.28 -# FIXME: use patched version while waiting integration of #165 -#SYNCTHING_INOTIFY_VERSION = 0.8.5 -SYNCTHING_INOTIFY_VERSION = master +SYNCTHING_INOTIFY_VERSION = 0.8.6 @@ -73,9 +71,9 @@ else endif -all: tools/syncthing build +all: tools/syncthing vendor build -build: vendor tools/syncthing/copytobin +build: tools/syncthing/copytobin @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)" . @@ -95,13 +93,13 @@ package-all: GOOS=darwin GOARCH=amd64 RELEASE=1 make -f $(ROOT_SRCDIR)/Makefile package test: tools/glide - go test --race $(shell ./tools/glide novendor) + go test --race $(shell ./tools/linux/glide novendor) vet: tools/glide - go vet $(shell ./tools/glide novendor) + go vet $(shell ./tools/linux/glide novendor) fmt: tools/glide - go fmt $(shell ./tools/glide novendor) + go fmt $(shell ./tools/linux/glide novendor) run: build/xds tools/syncthing/copytobin $(LOCAL_BINDIR)/xds-agent$(EXT) --log info -c agent-config.json.in @@ -122,12 +120,15 @@ install: all mkdir -p $(DESTDIR) && cp $(LOCAL_BINDIR)/* $(DESTDIR) vendor: tools/glide glide.yaml - ./tools/glide install --strip-vendor + ./tools/linux/glide install --strip-vendor +.PHONY: tools/glide tools/glide: - @echo "Downloading glide" - mkdir -p tools - curl --silent -L https://glide.sh/get | GOBIN=./tools sh + @test -f $(LOCAL_TOOLSDIR)/glide || { \ + echo "Downloading glide"; \ + mkdir -p $(LOCAL_TOOLSDIR); \ + curl --silent -L https://glide.sh/get | GOBIN=$(LOCAL_TOOLSDIR) sh; \ + } .PHONY: tools/syncthing tools/syncthing: @@ -147,7 +148,8 @@ tools/syncthing/copytobin: .PHONY: help help: @echo "Main supported rules:" - @echo " build (default)" + @echo " all (default)" + @echo " build @echo " package" @echo " install" @echo " clean"