summaryrefslogtreecommitdiffhomepage
path: root/examples/rust/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rust/Makefile')
-rw-r--r--examples/rust/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/rust/Makefile b/examples/rust/Makefile
index a000c9c..3d2570d 100644
--- a/examples/rust/Makefile
+++ b/examples/rust/Makefile
@@ -2,7 +2,10 @@ include ../../shared.mk
SDIR = examples/rust
-examples: rust-echo-request rust-upload-reflector rust-hello-world
+examples: rust-echo-request \
+ rust-upload-reflector \
+ rust-hello-world \
+ rust-large-upload
rust-echo-request: echo-request/Cargo.toml echo-request/src/lib.rs
$(PP_GEN) $(SDIR)/echo-request/target/wasm32-wasi/
@@ -16,6 +19,10 @@ rust-hello-world: hello-world/Cargo.toml hello-world/src/lib.rs
$(PP_GEN) $(SDIR)/hello-world/target/wasm32-wasi/
$(v)cd hello-world; cargo build --target=wasm32-wasi
+rust-large-upload: large-upload/Cargo.toml large-upload/src/lib.rs
+ $(PP_GEN) $(SDIR)/large-upload/target/wasm32-wasi/
+ $(v)cd large-upload; cargo build --target=wasm32-wasi
+
clean:
rm -f */Cargo.lock
rm -rf */target