summaryrefslogtreecommitdiff
path: root/wasm2c
diff options
context:
space:
mode:
Diffstat (limited to 'wasm2c')
-rw-r--r--wasm2c/.gitignore1
-rw-r--r--wasm2c/examples/callback/Makefile4
-rw-r--r--wasm2c/examples/rot13/Makefile4
3 files changed, 3 insertions, 6 deletions
diff --git a/wasm2c/.gitignore b/wasm2c/.gitignore
index 77757ac5..70f38091 100644
--- a/wasm2c/.gitignore
+++ b/wasm2c/.gitignore
@@ -1,4 +1,5 @@
wasm-rt-impl.o
+wasm-rt-mem-impl.o
wasm-rt-exceptions-impl.o
examples/**/*.o
examples/fac/fac
diff --git a/wasm2c/examples/callback/Makefile b/wasm2c/examples/callback/Makefile
index ece54c34..81ee53ef 100644
--- a/wasm2c/examples/callback/Makefile
+++ b/wasm2c/examples/callback/Makefile
@@ -3,12 +3,10 @@ CFLAGS=-I../..
all: callback
-callback: main.o callback.o ../../wasm-rt-impl.o
-
clean:
rm -rf callback callback.wasm callback.c callback.h *.o
-callback: main.o callback.o ../../wasm-rt-impl.o -lm
+callback: main.o callback.o ../../wasm-rt-impl.o ../../wasm-rt-mem-impl.o -lm
callback.wasm: callback.wat ../../../bin/wat2wasm
../../../bin/wat2wasm --debug-names $< -o $@
diff --git a/wasm2c/examples/rot13/Makefile b/wasm2c/examples/rot13/Makefile
index 4461af7c..1d46b3a9 100644
--- a/wasm2c/examples/rot13/Makefile
+++ b/wasm2c/examples/rot13/Makefile
@@ -3,12 +3,10 @@ CFLAGS=-I../..
all: rot13
-rot13: main.o rot13.o ../../wasm-rt-impl.o
-
clean:
rm -rf rot13 rot13.wasm rot13.c *.o
-rot13: main.o rot13.o ../../wasm-rt-impl.o -lm
+rot13: main.o rot13.o ../../wasm-rt-impl.o ../../wasm-rt-mem-impl.o -lm
rot13.wasm: rot13.wat ../../../bin/wat2wasm
../../../bin/wat2wasm $< -o $@