2021-02-11 18:21:21 +00:00
|
|
|
GOESBUILD ?= off
|
|
|
|
ifeq ($(GOESBUILD), on)
|
|
|
|
ESBUILD := esbuild
|
|
|
|
else
|
|
|
|
ESBUILD := npx esbuild
|
|
|
|
endif
|
2021-02-01 20:55:17 +00:00
|
|
|
GOBINARY ?= go
|
2021-02-11 18:21:21 +00:00
|
|
|
|
2021-02-22 01:26:07 +00:00
|
|
|
VERSION ?= $(shell git describe --exact-match HEAD 2> /dev/null || echo vgit)
|
2021-02-22 01:23:42 +00:00
|
|
|
VERSION := $(shell echo $(VERSION) | sed 's/v//g')
|
|
|
|
COMMIT ?= $(shell git rev-parse --short HEAD || echo unknown)
|
|
|
|
|
2021-03-07 15:23:44 +00:00
|
|
|
UPDATER ?= off
|
|
|
|
BUILDFLAGS := -X main.version=$(VERSION) -X main.commit=$(COMMIT)
|
|
|
|
ifeq ($(UPDATER), on)
|
|
|
|
BUILDFLAGS := $(BUILDFLAGS) -X main.updater=binary
|
|
|
|
else ifneq ($(UPDATER), off)
|
|
|
|
BUILDFLAGS := $(BUILDFLAGS) -X main.updater=$(UPDATER)
|
|
|
|
endif
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
npm:
|
|
|
|
$(info installing npm dependencies)
|
|
|
|
npm install
|
2021-02-11 18:21:21 +00:00
|
|
|
@if [ "$(GOESBUILD)" = "off" ]; then\
|
|
|
|
npm install esbuild;\
|
|
|
|
else\
|
|
|
|
go get -u github.com/evanw/esbuild/cmd/esbuild;\
|
|
|
|
fi
|
2021-01-05 18:16:23 +00:00
|
|
|
|
2020-08-03 17:00:54 +00:00
|
|
|
configuration:
|
2020-09-21 21:03:20 +00:00
|
|
|
$(info Fixing config-base)
|
2021-02-01 20:25:20 +00:00
|
|
|
-mkdir -p data
|
2021-02-17 14:32:03 +00:00
|
|
|
python3 scripts/enumerate_config.py -i config/config-base.json -o data/config-base.json
|
2020-09-21 21:03:20 +00:00
|
|
|
$(info Generating config-default.ini)
|
2021-02-17 14:32:03 +00:00
|
|
|
python3 scripts/generate_ini.py -i config/config-base.json -o data/config-default.ini
|
2020-08-03 17:00:54 +00:00
|
|
|
|
2020-10-17 23:57:53 +00:00
|
|
|
email:
|
2020-09-21 21:03:20 +00:00
|
|
|
$(info Generating email html)
|
2021-02-17 14:32:03 +00:00
|
|
|
python3 scripts/compile_mjml.py -o data/
|
2020-08-03 17:00:54 +00:00
|
|
|
|
2021-01-05 18:40:19 +00:00
|
|
|
typescript:
|
2021-01-05 18:16:23 +00:00
|
|
|
$(info compiling typescript)
|
2021-02-01 20:25:20 +00:00
|
|
|
-mkdir -p data/web/js
|
|
|
|
-$(ESBUILD) --bundle ts/admin.ts --outfile=./data/web/js/admin.js --minify
|
|
|
|
-$(ESBUILD) --bundle ts/form.ts --outfile=./data/web/js/form.js --minify
|
|
|
|
-$(ESBUILD) --bundle ts/setup.ts --outfile=./data/web/js/setup.js --minify
|
2020-09-21 21:03:20 +00:00
|
|
|
|
2020-09-23 19:14:16 +00:00
|
|
|
ts-debug:
|
2021-01-05 18:16:23 +00:00
|
|
|
$(info compiling typescript w/ sourcemaps)
|
2021-02-01 20:25:20 +00:00
|
|
|
-mkdir -p data/web/js
|
|
|
|
-$(ESBUILD) --bundle ts/admin.ts --sourcemap --outfile=./data/web/js/admin.js
|
|
|
|
-$(ESBUILD) --bundle ts/form.ts --sourcemap --outfile=./data/web/js/form.js
|
|
|
|
-$(ESBUILD) --bundle ts/setup.ts --sourcemap --outfile=./data/web/js/setup.js
|
|
|
|
-rm -r data/web/js/ts
|
2021-01-05 18:16:23 +00:00
|
|
|
$(info copying typescript)
|
2021-02-01 20:25:20 +00:00
|
|
|
cp -r ts data/web/js
|
2020-09-23 19:14:16 +00:00
|
|
|
|
2020-09-24 16:51:13 +00:00
|
|
|
swagger:
|
2021-02-01 20:55:17 +00:00
|
|
|
$(GOBINARY) get github.com/swaggo/swag/cmd/swag
|
2020-09-24 16:51:13 +00:00
|
|
|
swag init -g main.go
|
|
|
|
|
2020-08-03 17:00:54 +00:00
|
|
|
compile:
|
2021-02-05 13:01:45 +00:00
|
|
|
$(info Downloading deps)
|
|
|
|
$(GOBINARY) mod download
|
|
|
|
$(info Building)
|
|
|
|
mkdir -p build
|
2021-03-07 15:23:44 +00:00
|
|
|
cd build && CGO_ENABLED=0 $(GOBINARY) build -ldflags="-s -w $(BUILDFLAGS)" -o ./jfa-go ../*.go
|
2021-02-05 13:01:45 +00:00
|
|
|
|
|
|
|
compile-debug:
|
2020-09-21 21:03:20 +00:00
|
|
|
$(info Downloading deps)
|
2021-02-01 20:55:17 +00:00
|
|
|
$(GOBINARY) mod download
|
2020-09-21 21:03:20 +00:00
|
|
|
$(info Building)
|
2020-08-03 17:00:54 +00:00
|
|
|
mkdir -p build
|
2021-03-07 15:23:44 +00:00
|
|
|
cd build && CGO_ENABLED=0 $(GOBINARY) build -ldflags "$(BUILDFLAGS)" -o ./jfa-go ../*.go
|
2020-09-02 19:06:02 +00:00
|
|
|
|
|
|
|
compress:
|
|
|
|
upx --lzma build/jfa-go
|
2020-08-03 17:00:54 +00:00
|
|
|
|
2021-01-23 18:53:14 +00:00
|
|
|
bundle-css:
|
2021-02-01 20:25:20 +00:00
|
|
|
-mkdir -p data/web/css
|
2021-01-23 18:53:14 +00:00
|
|
|
$(info bundling css)
|
2021-02-01 20:25:20 +00:00
|
|
|
$(ESBUILD) --bundle css/base.css --outfile=data/web/css/bundle.css --external:remixicon.css --minify
|
2021-01-23 18:53:14 +00:00
|
|
|
|
|
|
|
copy:
|
|
|
|
$(info copying fonts)
|
2021-02-01 20:25:20 +00:00
|
|
|
cp -r node_modules/remixicon/fonts/remixicon.css node_modules/remixicon/fonts/remixicon.woff2 data/web/css/
|
2021-01-05 18:16:23 +00:00
|
|
|
$(info copying html)
|
2021-02-01 20:25:20 +00:00
|
|
|
cp -r html data/
|
2021-01-05 18:16:23 +00:00
|
|
|
$(info copying static data)
|
2021-02-01 20:25:20 +00:00
|
|
|
-mkdir -p data/web
|
|
|
|
cp -r static/* data/web/
|
2021-01-05 18:16:23 +00:00
|
|
|
$(info copying language files)
|
2021-02-01 20:25:20 +00:00
|
|
|
cp -r lang data/
|
2021-03-01 00:32:09 +00:00
|
|
|
cp LICENSE data/
|
2021-01-05 18:16:23 +00:00
|
|
|
|
2021-02-17 14:41:44 +00:00
|
|
|
internal-files:
|
2021-02-17 16:11:01 +00:00
|
|
|
python3 scripts/embed.py internal
|
2021-02-01 20:25:20 +00:00
|
|
|
|
2021-02-17 14:41:44 +00:00
|
|
|
external-files:
|
2021-02-17 16:11:01 +00:00
|
|
|
python3 scripts/embed.py external
|
2021-02-01 20:25:20 +00:00
|
|
|
-mkdir -p build
|
|
|
|
$(info copying internal data into build/)
|
|
|
|
cp -r data build/
|
2020-08-03 17:00:54 +00:00
|
|
|
|
2020-08-19 11:10:34 +00:00
|
|
|
install:
|
|
|
|
cp -r build $(DESTDIR)/jfa-go
|
|
|
|
|
2021-02-22 01:23:42 +00:00
|
|
|
all: configuration npm email typescript bundle-css swagger copy internal-files compile
|
|
|
|
all-external: configuration npm email typescript bundle-css swagger copy external-files compile
|
|
|
|
debug: configuration npm email ts-debug bundle-css swagger copy external-files compile-debug
|