Auto start Syncthing and Syncthing-inotify.
[src/xds/xds-server.git] / Makefile
index 6f9f990..e3cc99b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,19 @@
 # Makefile used to build XDS daemon Web Server
 
+# Application Version
+VERSION := 0.0.1
+
 # Syncthing version to install
-SYNCTHING_VERSION = 0.14.25
-SYNCTHING_INOTIFY_VERSION = 0.8.5
+SYNCTHING_VERSION = 0.14.27
+# FIXME: use patched version while waiting integration of #165
+#SYNCTHING_INOTIFY_VERSION = 0.8.5
+
 
 # Retrieve git tag/commit to set sub-version string
-ifeq ($(origin VERSION), undefined)
-       VERSION := $(shell git describe --tags --always | sed 's/^v//')
-       ifeq ($(VERSION), )
-               VERSION=unknown-dev
+ifeq ($(origin SUB_VERSION), undefined)
+       SUB_VERSION := $(shell git describe --tags --always | sed 's/^v//')
+       ifeq ($(SUB_VERSION), )
+               SUB_VERSION=unknown-dev
        endif
 endif
 
@@ -28,9 +33,11 @@ mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
 ROOT_SRCDIR := $(patsubst %/,%,$(dir $(mkfile_path)))
 ROOT_GOPRJ := $(abspath $(ROOT_SRCDIR)/../../../..)
 LOCAL_BINDIR := $(ROOT_SRCDIR)/bin
+LOCAL_TOOLSDIR := $(ROOT_SRCDIR)/tools
+
 
 export GOPATH := $(shell go env GOPATH):$(ROOT_GOPRJ)
-export PATH := $(PATH):$(ROOT_SRCDIR)/tools
+export PATH := $(PATH):$(LOCAL_TOOLSDIR)
 
 VERBOSE_1 := -v
 VERBOSE_2 := -v -x
@@ -38,22 +45,21 @@ VERBOSE_2 := -v -x
 
 all: build webapp
 
-build: build/xds
+.PHONY: build
+build: xds
 
-xds: build/xds
-
-build/xds: vendor scripts
-       @echo "### Build XDS server (version $(VERSION))";
-       @cd $(ROOT_SRCDIR); $(BUILD_ENV_FLAGS) go build $(VERBOSE_$(V)) -i -o $(LOCAL_BINDIR)/xds-server -ldflags "-X main.AppVersionGitTag=$(VERSION)" .
+xds:vendor scripts
+       @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 -ldflags "-X main.AppVersion=$(VERSION) -X main.AppSubVersion=$(SUB_VERSION)" .
 
 test: tools/glide
-       go test --race $(shell ./tools/glide novendor)
+       go test --race $(shell $(LOCAL_TOOLSDIR)/glide novendor)
 
 vet: tools/glide
-       go vet $(shell ./tools/glide novendor)
+       go vet $(shell $(LOCAL_TOOLSDIR)/glide novendor)
 
 fmt: tools/glide
-       go fmt $(shell ./tools/glide novendor)
+       go fmt $(shell $(LOCAL_TOOLSDIR)/glide novendor)
 
 run: build/xds tools/syncthing
        $(LOCAL_BINDIR)/xds-server --log info -c config.json.in
@@ -63,14 +69,11 @@ debug: build/xds webapp/debug tools/syncthing
 
 .PHONY: clean
 clean:
-       rm -rf $(LOCAL_BINDIR)/* debug cmd/*/debug $(ROOT_GOPRJ)/pkg/*/$(REPOPATH)
+       rm -rf $(LOCAL_BINDIR)/* debug $(ROOT_GOPRJ)/pkg/*/$(REPOPATH)
 
 .PHONY: distclean
 distclean: clean
-       rm -rf $(LOCAL_BINDIR) tools glide.lock vendor cmd/*/vendor webapp/node_modules webapp/dist
-
-run3:
-       goreman start
+       rm -rf $(LOCAL_BINDIR) $(LOCAL_TOOLSDIR) glide.lock vendor webapp/node_modules webapp/dist
 
 webapp: webapp/install
        (cd webapp && gulp build)
@@ -87,21 +90,24 @@ scripts:
 
 .PHONY: install
 install: all scripts tools/syncthing
-       mkdir -p $(INSTALL_DIR) && cp $(LOCAL_BINDIR)/* $(INSTALL_DIR)
-       mkdir -p $(INSTALL_WEBAPP_DIR) && cp -a webapp/dist/* $(INSTALL_WEBAPP_DIR)
+       mkdir -p $(INSTALL_DIR) \
+               && cp $(LOCAL_BINDIR)/* $(INSTALL_DIR) \
+               && cp $(LOCAL_TOOLSDIR)/syncthing* $(INSTALL_DIR)
+       mkdir -p $(INSTALL_WEBAPP_DIR) \
+               && cp -a webapp/dist/* $(INSTALL_WEBAPP_DIR)
 
 vendor: tools/glide glide.yaml
-       ./tools/glide install --strip-vendor
+       $(LOCAL_TOOLSDIR)/glide install --strip-vendor
 
 tools/glide:
        @echo "Downloading glide"
-       mkdir -p tools
-       curl --silent -L https://glide.sh/get | GOBIN=./tools  sh
+       mkdir -p $(LOCAL_TOOLSDIR)
+       curl --silent -L https://glide.sh/get | GOBIN=$(LOCAL_TOOLSDIR)  sh
 
 .PHONY: tools/syncthing
 tools/syncthing:
-       @(test -s $(LOCAL_BINDIR)/syncthing || \
-       DESTDIR=$(LOCAL_BINDIR) \
+       @(test -s $(LOCAL_TOOLSDIR)/syncthing || \
+       DESTDIR=$(LOCAL_TOOLSDIR) \
        SYNCTHING_VERSION=$(SYNCTHING_VERSION) \
        SYNCTHING_INOTIFY_VERSION=$(SYNCTHING_INOTIFY_VERSION) \
        ./scripts/get-syncthing.sh)
@@ -109,9 +115,9 @@ tools/syncthing:
 .PHONY: help
 help:
        @echo "Main supported rules:"
-       @echo "  build               (default)"
-       @echo "  build/xds"
-       @echo "  release"
+       @echo "  all                (default)"
+       @echo "  build"
+       @echo "  install"
        @echo "  clean"
        @echo "  distclean"
        @echo ""