This repository was archived by the owner on Oct 20, 2025. It is now read-only.
forked from sjzar/chatlog
-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathMakefile
More file actions
79 lines (68 loc) · 2.26 KB
/
Makefile
File metadata and controls
79 lines (68 loc) · 2.26 KB
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
BINARY_NAME := chatlog
GO := go
ifeq ($(VERSION),)
VERSION := $(shell git describe --tags --always --dirty="-dev")
endif
CGO_EXTRA_LDFLAGS :=
ifeq ($(OS),Windows_NT)
CGO_EXTRA_LDFLAGS := -lgomp
endif
LDFLAGS := -ldflags '-X "github.com/sjzar/chatlog/pkg/version.Version=$(VERSION)" -w -s'
CGOFLAGS := CGO_ENABLED=1 CGO_CFLAGS="-I$(abspath $(CURDIR)/include)" CGO_LDFLAGS="-L$(abspath $(CURDIR)/library) $(CGO_EXTRA_LDFLAGS)"
TAGS := --tags "fts5"
PLATFORMS := \
darwin/amd64 \
darwin/arm64 \
linux/amd64 \
linux/arm64 \
windows/amd64 \
windows/arm64
UPX_PLATFORMS := \
darwin/amd64 \
linux/amd64 \
linux/arm64 \
windows/amd64
ifeq ($(OS),Windows_NT)
MKDIR_BIN := powershell -NoProfile -Command "New-Item -ItemType Directory -Force -Path 'bin' | Out-Null"
CLEAN_BIN := powershell -NoProfile -Command "if (Test-Path 'bin') { Remove-Item -Recurse -Force 'bin' }"
BINARY_SUFFIX := .exe
else
MKDIR_BIN := mkdir -p bin
CLEAN_BIN := rm -rf bin
BINARY_SUFFIX :=
endif
.PHONY: all clean lint tidy test build crossbuild upx
all: clean lint tidy test build
clean:
@echo "Cleaning..."
@$(CLEAN_BIN)
lint:
@echo "Running linters..."
golangci-lint run ./...
tidy:
@echo "Tidying up dependencies..."
@$(CGOFLAGS) $(GO) mod tidy
test:
@echo "Running tests..."
@$(CGOFLAGS) $(GO) test ./... -cover
build:
@echo "Building for current platform..."
@$(MKDIR_BIN)
@$(CGOFLAGS) $(GO) build -trimpath $(LDFLAGS) $(TAGS) -o bin/$(BINARY_NAME)$(BINARY_SUFFIX) main.go
crossbuild: clean
@echo "Building for multiple platforms..."
@$(MKDIR_BIN)
for platform in $(PLATFORMS); do \
os=$$(echo $$platform | cut -d/ -f1); \
arch=$$(echo $$platform | cut -d/ -f2); \
float=$$(echo $$platform | cut -d/ -f3); \
output_name=bin/chatlog_$${os}_$${arch}; \
[ "$$float" != "" ] && output_name=$$output_name_$$float; \
[ "$$os" = "windows" ] && output_name=$$output_name.exe; \
echo "Building for $$os/$$arch..."; \
echo "Building for $$output_name..."; \
@GOOS=$$os GOARCH=$$arch GOARM=$$float $(CGOFLAGS) $(GO) build -trimpath $(LDFLAGS) $(TAGS) -o $$output_name main.go ; \
if [ "$(ENABLE_UPX)" = "1" ] && echo "$(UPX_PLATFORMS)" | grep -q "$$os/$$arch"; then \
echo "Compressing binary $$output_name..." && upx --best $$output_name; \
fi; \
done