mirror of
https://github.com/alibaba/higress.git
synced 2026-02-22 06:50:50 +08:00
11 lines
191 B
Makefile
11 lines
191 B
Makefile
BUILD_OPTS="--release"
|
|
|
|
.DEFAULT:
|
|
build:
|
|
cargo build --target wasm32-wasi ${BUILD_OPTS}
|
|
find target -name "*.wasm" -d 3 -exec cp "{}" plugin.wasm \;
|
|
|
|
clean:
|
|
cargo clean
|
|
rm -f plugin.wasm
|