diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-08-02 17:03:48 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-08-21 23:24:12 +0100 |
commit | d6ed6a219b31a58526721f96195c80061d41ce54 (patch) | |
tree | 17a1fd6ecf72a327916ff0f8bc7aaf85b981ceff /examples/rust/Makefile | |
download | unit-wasm-c43c6b57d70ae3a2cb3a52f5f991cd68fd39b47d.tar.gz unit-wasm-c43c6b57d70ae3a2cb3a52f5f991cd68fd39b47d.tar.bz2 |
Initial commitv0.1.0
libunit-wasm and example C and Rust WebAssembly modules for NGINX Unit.
Co-developed-by: Timo Stark <t.stark@nginx.com>
Co-developed-by: Liam Crilly <liam@nginx.com>
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'examples/rust/Makefile')
-rw-r--r-- | examples/rust/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
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 |