Import/Export backend

This commit is contained in:
Michal Horejsek
2020-06-17 15:29:41 +02:00
parent 49316a935c
commit 1c10cc5065
107 changed files with 2869 additions and 743 deletions

View File

@ -9,7 +9,12 @@ TARGET_OS?=${GOOS}
## Build
.PHONY: build build-ie build-nogui build-ie-nogui check-has-go
APP_VERSION?=$(shell git describe --abbrev=0 --tags)-git
BRIDGE_APP_VERSION?=1.4.0-git
IE_APP_VERSION?=1.0.0-git
APP_VERSION=${BRIDGE_APP_VERSION}
ifeq "${TARGET_CMD}" "Import-Export"
APP_VERSION=${IE_APP_VERSION}
endif
REVISION:=$(shell git rev-parse --short=10 HEAD)
BUILD_TIME:=$(shell date +%FT%T%z)