Files
higress/plugins/wasm-rust/example/sse-timing/Makefile
2024-10-24 16:58:45 +08:00

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