mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-12-13 15:32:15 +08:00
10 lines
186 B
Makefile
10 lines
186 B
Makefile
.PHONY: build clean
|
|
|
|
build::
|
|
swift build -c release --arch arm64 --arch x86_64
|
|
cp -f .build/apple/Products/Release/wechattweak ./wechattweak
|
|
|
|
clean::
|
|
rm -rf .build
|
|
rm -f wechattweak
|