forked from deb-sig/double-entry-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
136 lines (104 loc) · 4.42 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# Copyright 2019 The Caicloud Authors.
#
# The old school Makefile, following are required targets. The Makefile is written
# to allow building multiple binaries. You are free to add more targets or change
# existing implementations, as long as the semantics are preserved.
# Ref https://github.com/caicloud/golang-template-project/blob/master/Makefile
# This repo's root import path (under GOPATH).
ROOT := github.com/deb-sig/double-entry-generator
# Target binaries. You can build multiple binaries for a single project.
TARGETS := double-entry-generator
# Container image prefix and suffix added to targets.
# The final built images are:
# $[REGISTRY]/$[IMAGE_PREFIX]$[TARGET]$[IMAGE_SUFFIX]:$[VERSION]
# $[REGISTRY] is an item from $[REGISTRIES], $[TARGET] is an item from $[TARGETS].
IMAGE_PREFIX ?= $(strip template-)
IMAGE_SUFFIX ?= $(strip )
# It's necessary to set this because some environments don't link sh -> bash.
SHELL := /bin/bash
# Project main package location (can be multiple ones).
CMD_DIR := .
# Project output directory.
OUTPUT_DIR := ./bin
# Build direcotory.
BUILD_DIR := ./build
# Current version of the project.
GIT_COMMIT = $(shell git describe --tags --always --dirty)
VERSION ?= ${GIT_COMMIT}
# Track code version with Docker Label.
DOCKER_LABELS ?= git-describe="$(shell date -u +v%Y%m%d)-$(shell git describe --tags --always --dirty)"
# Golang standard bin directory.
GOPATH ?= $(shell go env GOPATH)
BIN_DIR := $(GOPATH)/bin
GOLANGCI_LINT := $(BIN_DIR)/golangci-lint
# https://stackoverflow.com/a/14777895
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
detected_OS := Windows
else
detected_OS := $(shell uname) # same as "uname -s"
endif
ifeq ($(detected_OS), Windows)
BROWSER := start
else
ifeq (,$(findstring Drawin,$(detected_OS))) # Mac OS X
BROWSER := open
else # consider as Linux or others
BROWSER := xdg-open
endif
endif
# All targets.
.PHONY: lint test build container push help clean test-go test-wechat test-alipay test-huobi test-htsec format check-format goreleaser-build-test
help: ## Display this help
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
build: build-local ## Build the project
LD_FLAGS := -ldflags "-s -w
LD_FLAGS += -X $(ROOT)/pkg/version.VERSION=$(VERSION)
LD_FLAGS += -X $(ROOT)/pkg/version.REPOROOT=$(ROOT)
LD_FLAGS += -X $(ROOT)/pkg/version.COMMIT=$(GIT_COMMIT)"
build-local:
@for target in $(TARGETS); do \
go build -v -o $(OUTPUT_DIR)/$${target} \
$(LD_FLAGS) \
$(CMD_DIR)/; \
done
install: build ## Install the double-entry-generator binary
@install ./bin/double-entry-generator /usr/local/bin
@echo "Installed double-entry-generator at /usr/local/bin/double-entry-generator !"
clean: ## Clean all the temporary files
@rm -rf ./bin
@rm -rf ./dist
@rm -rf ./test/output
@rm -rf ./double-entry-generator
@rm -rf ./wasm-dist
test: test-go test-alipay test-wechat test-huobi test-htsec ## Run all tests
test-go: ## Run Golang tests
@go test ./...
test-alipay: ## Run tests for Alipay provider
@$(SHELL) ./test/alipay-test.sh
test-wechat: ## Run tests for WeChat provider
@$(SHELL) ./test/wechat-test.sh
test-huobi: ## Run tests for huobi provider
@$(SHELL) ./test/huobi-test.sh
test-htsec: ## Run tests for htsec provider
@$(SHELL) ./test/htsec-test.sh
format: ## Format code
@gofmt -s -w pkg
@goimports -w pkg
lint: ## Lint GO code
@golangci-lint run
check-format: ## Check if the format looks good.
@go fmt ./...
goreleaser-build-test: ## Goreleaser build for testing
goreleaser build --single-target --snapshot --rm-dist
clean-wasm: ## Clean wasm-dist dir
@rm -rf ./wasm-dist
build-wasm: clean-wasm ## Build WebAssembly's version
@mkdir -p wasm-dist
GOOS=js GOARCH=wasm go build -o wasm-dist/double-entry-generator.wasm $(LD_FLAGS) $(CMD_DIR)/
@cp "$$(go env GOROOT)/misc/wasm/wasm_exec.js" wasm-dist/
@cp wasm/* wasm-dist/
@echo "Build wasm completed! Type \`make run-wasm-server\` to run wasm."
run-wasm-server: ## Run WebAssembly in browser
@cd wasm-dist
# @$(BROWSER) http://127.0.0.1:2000
@python -m http.server --directory wasm-dist --bind 127.0.0.1 2000