1234567891011121314151617181920212223242526272829303132 |
- export PATH := $(PATH):`go env GOPATH`/bin
- export GO111MODULE=on
- LDFLAGS := -s -w
- os-archs=darwin:amd64 darwin:arm64 freebsd:amd64 linux:amd64 linux:arm linux:arm:6 linux:arm64 windows:amd64 windows:arm64 linux:mips64 linux:mips64le linux:mips:softfloat linux:mipsle:softfloat linux:riscv64 android:arm64
- 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); \
- extra=$(shell echo "$(n)" | cut -d : -f 3); \
- flags=''; \
- target_suffix=$${os}_$${arch}; \
- if [ "$${os}" = "linux" ] && [ "$${arch}" = "arm" ] && [ "$${extra}" != "" ] ; then \
- flags=GOARM=$${extra}; \
- target_suffix=$${os}_$${arch}_$${extra}; \
- elif [ "$${os}" = "linux" ] && [ "$${arch}" = "mips" ] && [ "$${extra}" != "" ] ; then \
- flags=GOMIPS=$${extra}; \
- fi; \
- echo "Build $${os}-$${arch}$${extra:+ ($${extra})}..."; \
- env CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} $${flags} go build -trimpath -ldflags "$(LDFLAGS)" -tags frpc -o ./release/frpc_$${target_suffix} ./cmd/frpc; \
- env CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} $${flags} go build -trimpath -ldflags "$(LDFLAGS)" -tags frps -o ./release/frps_$${target_suffix} ./cmd/frps; \
- echo "Build $${os}-$${arch}$${extra:+ ($${extra})} done"; \
- )
- @mv ./release/frpc_windows_amd64 ./release/frpc_windows_amd64.exe
- @mv ./release/frps_windows_amd64 ./release/frps_windows_amd64.exe
- @mv ./release/frpc_windows_arm64 ./release/frpc_windows_arm64.exe
- @mv ./release/frps_windows_arm64 ./release/frps_windows_arm64.exe
|