From d6ed6a219b31a58526721f96195c80061d41ce54 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Wed, 2 Aug 2023 17:03:48 +0100 Subject: Initial commit libunit-wasm and example C and Rust WebAssembly modules for NGINX Unit. Co-developed-by: Timo Stark Co-developed-by: Liam Crilly Signed-off-by: Andrew Clayton --- examples/rust/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 examples/rust/Makefile (limited to 'examples/rust/Makefile') diff --git a/examples/rust/Makefile b/examples/rust/Makefile new file mode 100644 index 0000000..b41bc33 --- /dev/null +++ b/examples/rust/Makefile @@ -0,0 +1,17 @@ +include ../../shared.mk + +SDIR = examples/rust + +examples: rust-echo-request rust-upload-reflector + +rust-echo-request: echo-request/Cargo.toml echo-request/src/lib.rs + $(PP_GEN) $(SDIR)/echo-request/target/wasm32-wasi/ + $(v)cd echo-request; cargo build --target=wasm32-wasi + +rust-upload-reflector: upload-reflector/Cargo.toml upload-reflector/src/lib.rs + $(PP_GEN) $(SDIR)/upload-reflector/target/wasm32-wasi/ + $(v)cd upload-reflector; cargo build --target=wasm32-wasi + +clean: + rm -f echo-request/Cargo.lock upload-reflector/Cargo.lock + rm -rf echo-request/target upload-reflector/target -- cgit