1 Star 0 Fork 240

联盟星空/wechatbot

forked from wu_xiaowei/wechatbot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 822 Bytes
一键复制 编辑 原始数据 按行查看 历史
SHELL=/usr/bin/env bash
all: window_x86 window_amd64 linux_x86 linux_amd64 mac_x86 mac_64
window_x86:
CGO_ENABLED=0 GOOS=windows GOARCH=386 go build -o bin/wechatbot-386.exe main.go
.PHONY: window_x86
window_amd64:
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o bin/wechatbot-amd64.exe main.go
.PHONY: window_amd64
linux_x86:
CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -o bin/wechatbot-386-linux main.go
.PHONY: linux_x86
linux_amd64:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/wechatbot-amd64-linux main.go
.PHONY: linux_amd64
mac_x86:
CGO_ENABLED=1 GOOS=darwin GOARCH=386 go build -o bin/wechatbot-386-darwin main.go
.PHONY: mac_x86
mac_64:
CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -o bin/wechatbot-amd64-darwin main.go
.PHONY: mac_64
clean:
rm -rf bin/wechatbot-*
.PHONY: clean
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lianmengworld/wechatbot.git
git@gitee.com:lianmengworld/wechatbot.git
lianmengworld
wechatbot
wechatbot
master

搜索帮助