mirror of
https://gitee.com/wa-lang/wa.git
synced 2025-12-06 17:19:15 +08:00
16 lines
329 B
Makefile
16 lines
329 B
Makefile
# 版权 @2024 P5-hello 作者。保留所有权利。
|
|
|
|
dev:
|
|
go run ../../../main.go build -target=wasm4 .
|
|
|
|
run:
|
|
go run ../../../main.go run -target=wasm4 .
|
|
|
|
publish:
|
|
go run ../../../main.go build -target=wasm4 .
|
|
-rm -rf ../../../docs/w4-snake/
|
|
mkdir -p ../../../docs/w4-snake
|
|
cp ./output/* ../../../docs/w4-snake/
|
|
|
|
clean:
|