-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathMakefile.cross-compiles
More file actions
33 lines (29 loc) · 1.36 KB
/
Makefile.cross-compiles
File metadata and controls
33 lines (29 loc) · 1.36 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
export PATH := $(GOPATH)/bin:$(PATH)
export GO111MODULE=on
LDFLAGS := -s -w
os-archs=darwin:amd64 darwin:arm64 freebsd:386 freebsd:amd64 linux:386 linux:amd64 linux:arm linux:arm64 windows:386 windows:amd64 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 ./release/frpc_$${target_suffix} ./cmd/frpc;\
env CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} GOMIPS=$${gomips} go build -trimpath -ldflags "$(LDFLAGS)" -o ./release/frps_$${target_suffix} ./cmd/frps;\
echo "Build $${os}-$${arch} done";\
)
@if [ -f ./release/frpc_windows_386 ]; then \
mv ./release/frpc_windows_386 ./release/frpc_windows_386.exe; \
fi
@if [ -f ./release/frps_windows_386 ]; then \
mv ./release/frps_windows_386 ./release/frps_windows_386.exe; \
fi
@if [ -f ./release/frpc_windows_amd64 ]; then \
mv ./release/frpc_windows_amd64 ./release/frpc_windows_amd64.exe; \
fi
@if [ -f ./release/frps_windows_amd64 ]; then \
mv ./release/frps_windows_amd64 ./release/frps_windows_amd64.exe; \
fi