-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmakefile
More file actions
32 lines (25 loc) · 1.13 KB
/
makefile
File metadata and controls
32 lines (25 loc) · 1.13 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
# Makefile for cross-compiling the maygit project
export PATH := $(GOPATH)/bin:$(PATH)
export GO111MODULE=on
BINARY=gsh
VERSION=1.3.0
BUILD=`git rev-parse HEAD`
LDFLAGS := -s -w -X main.Version=${VERSION} -X main.Build=${BUILD}
os-archs=darwin:amd64 darwin:arm64 freebsd:386 freebsd:amd64 linux:386 linux:amd64 linux:arm linux:arm64 windows:386 windows:amd64 windows:arm64 linux:mips64 linux:mips64le linux:mips:softfloat linux:mipsle:softfloat linux:riscv64
all: build
build: app
app:
@$(foreach n, $(os-archs),\
os=$(shell echo "$(n)" | cut -d : -f 1);\
arch=$(shell echo "$(n)" | cut -d : -f 2);\
gomips=$(shell echo "$(n)" | cut -d : -f 3);\
target_suffix=$${os}_$${arch};\
echo "Build $${os}-$${arch}...";\
env CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} GOMIPS=$${gomips} go build -trimpath -ldflags "$(LDFLAGS)" -o ./build/${BINARY}_$${target_suffix} ;\
echo "Build $${os}-$${arch} done";\
)
@mv ./build/${BINARY}_windows_386 ./build/${BINARY}_windows_386.exe
@mv ./build/${BINARY}_windows_amd64 ./build/${BINARY}_windows_amd64.exe
@mv ./build/${BINARY}_windows_arm64 ./build/${BINARY}_windows_arm64.exe
clean:
rm -rf ./build/