Fixed error about unwanted usr directory
[src/xds/xds-server.git] / Makefile
1  ###########################################################################
2 # Copyright 2017-2018 IoT.bzh
3 #
4 # author: Sebastien Douheret <sebastien@iot.bzh>
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 ###########################################################################
18
19 # Application Name
20 TARGET=xds-server
21
22
23 # Syncthing version to install
24 SYNCTHING_VERSION = 0.14.38
25 SYNCTHING_INOTIFY_VERSION = 0.8.7
26
27
28 # Retrieve git tag/commit to set version & sub-version strings
29 GIT_DESC := $(shell git describe --always --tags)
30 VERSION := $(firstword $(subst -, ,$(GIT_DESC)))
31 ifeq (-,$(findstring -,$(GIT_DESC)))
32         SUB_VERSION := $(subst $(VERSION)-,,$(GIT_DESC))
33 endif
34 ifeq ($(VERSION), )
35         VERSION := unknown-dev
36 endif
37 ifeq ($(SUB_VERSION), )
38         SUB_VERSION := $(shell date +'%Y-%m-%d_%H%M%S')
39 endif
40
41 # for backward compatibility
42 ifneq ($(origin INSTALL_DIR), undefined)
43         DESTDIR := $(INSTALL_DIR)
44 endif
45 ifneq ($(origin INSTALL_WEBAPP_DIR), undefined)
46         DESTDIR_WWW := $(INSTALL_WEBAPP_DIR)
47 endif
48
49 # Configurable variables for installation (default /opt/AGL/...)
50 ifeq ($(origin DESTDIR), undefined)
51         DESTDIR := /opt/AGL/xds/server
52 endif
53 ifeq ($(origin DESTDIR_WWW), undefined)
54         DESTDIR_WWW := $(DESTDIR)/www
55 endif
56
57 HOST_GOOS=$(shell go env GOOS)
58 HOST_GOARCH=$(shell go env GOARCH)
59 ARCH=$(HOST_GOOS)-$(HOST_GOARCH)
60 REPOPATH=gerrit.automotivelinux.org/gerrit/src/xds/$(TARGET)
61
62 EXT=
63 ifeq ($(HOST_GOOS), windows)
64         EXT=.exe
65 endif
66
67 mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
68 ROOT_SRCDIR := $(patsubst %/,%,$(dir $(mkfile_path)))
69 ROOT_GOPRJ := $(abspath $(ROOT_SRCDIR)/../../../../../..)
70 LOCAL_BINDIR := $(ROOT_SRCDIR)/bin
71 LOCAL_TOOLSDIR := $(ROOT_SRCDIR)/tools/${HOST_GOOS}
72 PACKAGE_DIR := $(ROOT_SRCDIR)/package
73
74 export GOPATH := $(shell go env GOPATH):$(ROOT_GOPRJ)
75 export PATH := $(PATH):$(LOCAL_TOOLSDIR)
76
77 # Check Go version
78 GOVERSION := $(shell go version |grep -o '[0-9\.]*'|head -n 1)
79 GOVERMAJ := $(shell echo $(GOVERSION) |cut -f1 -d.)
80 GOVERMIN := $(shell echo $(GOVERSION) |cut -f2 -d.)
81 CHECKGOVER := $(shell [ $(GOVERMAJ) -gt 1 -o \( $(GOVERMAJ) -eq 1 -a $(GOVERMIN) -ge 8 \) ] && echo true)
82 CHECKERRMSG := "ERROR: Go version 1.8.1 or higher is requested (current detected version: $(GOVERSION))."
83
84
85 VERBOSE_1 := -v
86 VERBOSE_2 := -v -x
87
88 # Release or Debug mode
89 ifeq ($(filter 1,$(RELEASE) $(REL)),)
90         GO_LDFLAGS=
91         # disable compiler optimizations and inlining
92         GO_GCFLAGS=-N -l
93         BUILD_MODE="Debug mode"
94         WEBAPP_BUILD_RULE=build
95 else
96         # optimized code without debug info
97         GO_LDFLAGS=-s -w
98         GO_GCFLAGS=
99         BUILD_MODE="Release mode"
100         WEBAPP_BUILD_RULE=build:prod
101 endif
102
103 ifeq ($(SUB_VERSION), )
104         PACKAGE_ZIPFILE := $(TARGET)_$(ARCH)-$(VERSION).zip
105 else
106         # only use dot as separator to allow rpm packaging (see version .spec file)
107         PK_VER := $(subst _,.,$(subst -,,$(VERSION)))
108         PK_SBVER := $(subst _,.,$(subst -,,$(SUB_VERSION)))
109         PACKAGE_ZIPFILE := $(TARGET)_$(ARCH)-$(PK_VER).$(PK_SBVER).zip
110 endif
111
112
113 all: tools/syncthing build
114
115 .PHONY: build
116 build: checkgover vendor xds webapp
117
118 xds: scripts tools/syncthing/copytobin
119         @echo "### Build XDS server (version $(VERSION), subversion $(SUB_VERSION)) - $(BUILD_MODE)";
120         @cd $(ROOT_SRCDIR); $(BUILD_ENV_FLAGS) go build $(VERBOSE_$(V)) -i -o $(LOCAL_BINDIR)/$(TARGET)$(EXT) -ldflags "$(GO_LDFLAGS) -X main.AppVersion=$(VERSION) -X main.AppSubVersion=$(SUB_VERSION)" -gcflags "$(GO_GCFLAGS)" .
121
122 test: tools/glide
123         go test --race $(shell $(LOCAL_TOOLSDIR)/glide novendor)
124
125 vet: tools/glide
126         go vet $(shell $(LOCAL_TOOLSDIR)/glide novendor)
127
128 fmt: tools/glide
129         go fmt $(shell $(LOCAL_TOOLSDIR)/glide novendor)
130
131 run: build/xds tools/syncthing/copytobin
132         $(LOCAL_BINDIR)/$(TARGET)$(EXT) --log info $(XDS_SERVER_RUN_ARGS)
133
134 debug: build/xds tools/syncthing/copytobin
135         $(LOCAL_BINDIR)/$(TARGET)$(EXT) --log debug $(XDS_SERVER_DEBUG_ARGS)
136
137 .PHONY: clean
138 clean:
139         rm -rf $(LOCAL_BINDIR)/* $(ROOT_SRCDIR)/debug $(ROOT_GOPRJ)/pkg/*/$(REPOPATH) $(PACKAGE_DIR)
140
141 .PHONY: distclean
142 distclean: clean
143         (cd $(ROOT_SRCDIR) && rm -rf $(LOCAL_BINDIR) ./tools ./glide.lock ./vendor ./*.zip ./webapp/dist ./webapp/node_modules)
144
145 webapp: webapp/install
146         mkdir -p $(ROOT_SRCDIR)/webapp/dist $(ROOT_SRCDIR)/webapp/dist/fonts
147         (cd $(ROOT_SRCDIR)/webapp && cp -a ./assets ./src/index.html ./node_modules/font-awesome/css/font-awesome.min.css ./dist/)
148         (cd $(ROOT_SRCDIR)/webapp && cp -a ./node_modules/font-awesome/fonts/* ./dist/fonts/)
149
150 webapp/install:
151         (cd webapp && npm install)
152         @[ -d ${DESTDIR}/usr ] && { echo "Removing unwanted ${DESTDIR}/usr directory"; rm -rf ${DESTDIR}/usr; }
153
154 .PHONY: scripts
155 scripts:
156         @mkdir -p $(LOCAL_BINDIR) && cp -rf scripts/xds-utils scripts/sdks $(LOCAL_BINDIR)
157
158 .PHONY: conffile
159 conffile:
160         cat $(ROOT_SRCDIR)/conf.d/etc/xds/server/server-config.json \
161                 | sed -e s,"www","$(DESTDIR_WWW)",g \
162                  > $(DESTDIR)/server-config.json.in
163
164 .PHONY: install
165 install:
166         @test -e $(LOCAL_BINDIR)/xds-server$(EXT) -a -d webapp/dist || { echo "Please execute first: make all"; exit 1; }
167         @test -d $(LOCAL_BINDIR)/xds-utils || { echo "Please execute first: make all"; exit 1; }
168         @test -e $(LOCAL_BINDIR)/syncthing$(EXT) -a -e $(LOCAL_BINDIR)/syncthing-inotify$(EXT) || { echo "Please execute first: make all"; exit 1; }
169         mkdir -p $(DESTDIR) \
170                 && cp -a $(LOCAL_BINDIR)/* $(DESTDIR)
171         mkdir -p $(DESTDIR_WWW) \
172                 && cp -a webapp/dist/* $(DESTDIR_WWW)
173
174 .PHONY: _package
175 _package: clean
176         make -f $(ROOT_SRCDIR)/Makefile all install  DESTDIR=$(PACKAGE_DIR)/xds-server
177         make -f $(ROOT_SRCDIR)/Makefile conffile  DESTDIR=$(PACKAGE_DIR)/xds-server DESTDIR_WWW=www
178         cp -r $(ROOT_SRCDIR)/conf.d $(PACKAGE_DIR)/xds-server
179         rm -f $(ROOT_SRCDIR)/$(PACKAGE_ZIPFILE)
180         (cd $(PACKAGE_DIR) && zip -r $(ROOT_SRCDIR)/$(PACKAGE_ZIPFILE) ./xds-server)
181
182 # On support Linux for now
183 .PHONY: package
184 package:
185         @echo "# Build linux amd64..."
186         GOOS=linux GOARCH=amd64 RELEASE=1 make -f $(ROOT_SRCDIR)/Makefile _package
187         make -f $(ROOT_SRCDIR)/Makefile clean
188
189 .PHONY: package-all
190 package-all: package
191
192 vendor: tools/glide glide.yaml
193         $(LOCAL_TOOLSDIR)/glide install --strip-vendor
194
195 vendor/debug: vendor
196         (cd vendor/gerrit.automotivelinux.org/gerrit/src/xds && \
197                 rm -rf xds-common.git && ln -s ../../../../../../xds-common xds-common.git  )
198
199 .PHONY: tools/glide
200 tools/glide:
201         @test -f $(LOCAL_TOOLSDIR)/glide || { \
202                 echo "Downloading glide"; \
203                 mkdir -p $(LOCAL_TOOLSDIR); \
204                 curl --silent --connect-timeout 60 --retry 3 -L https://glide.sh/get | GOBIN=$(LOCAL_TOOLSDIR)  sh; \
205         }
206
207 .PHONY: tools/syncthing
208 tools/syncthing:
209         @test -e $(LOCAL_TOOLSDIR)/syncthing$(EXT) -a -e $(LOCAL_TOOLSDIR)/syncthing-inotify$(EXT)  || { \
210         mkdir -p $(LOCAL_TOOLSDIR); \
211         DESTDIR=$(LOCAL_TOOLSDIR) \
212         SYNCTHING_VERSION=$(SYNCTHING_VERSION) \
213         SYNCTHING_INOTIFY_VERSION=$(SYNCTHING_INOTIFY_VERSION) \
214         ./scripts/xds-utils/get-syncthing.sh; }
215
216 .PHONY:
217 tools/syncthing/copytobin:
218         @test -e $(LOCAL_TOOLSDIR)/syncthing$(EXT) -a -e $(LOCAL_TOOLSDIR)/syncthing-inotify$(EXT) || { echo "Please execute first: make tools/syncthing\n"; exit 1; }
219         @mkdir -p $(LOCAL_BINDIR)
220         @cp -f $(LOCAL_TOOLSDIR)/syncthing$(EXT) $(LOCAL_TOOLSDIR)/syncthing-inotify$(EXT) $(LOCAL_BINDIR)
221
222 .PHONY:
223 checkgover:
224         @test "$(CHECKGOVER)" = "true" || { echo $(CHECKERRMSG); exit 1; }
225
226
227 .PHONY: help
228 help:
229         @echo "Main supported rules:"
230         @echo "  all                (default)"
231         @echo "  build"
232         @echo "  package"
233         @echo "  install"
234         @echo "  clean"
235         @echo "  distclean"
236         @echo ""
237         @echo "Influential make variables:"
238         @echo "  V                 - Build verbosity {0,1,2}."
239         @echo "  BUILD_ENV_FLAGS   - Environment added to 'go build'."