summaryrefslogtreecommitdiff
path: root/wasm2c/examples/threads/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'wasm2c/examples/threads/Makefile')
-rw-r--r--wasm2c/examples/threads/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/wasm2c/examples/threads/Makefile b/wasm2c/examples/threads/Makefile
new file mode 100644
index 00000000..f6eb9998
--- /dev/null
+++ b/wasm2c/examples/threads/Makefile
@@ -0,0 +1,20 @@
+#SANITIZERS=-fsanitize=address -fsanitize=undefined -fno-sanitize-recover=all
+CFLAGS=-I../.. -g -O2 -Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-array-bounds -Wno-ignored-optimization-argument -Wno-tautological-constant-out-of-range-compare -Wno-infinite-recursion -fno-optimize-sibling-calls -frounding-math -fsignaling-nans ${SANITIZERS} -pthread
+LDFLAGS=${SANITIZERS} -pthread
+
+all: threads
+
+threads: threads.o sample.o ../../wasm-rt-impl.o ../../wasm-rt-exceptions-impl.o -lm
+
+clean:
+ rm -rf threads sample.wasm sample.c sample.h *.o ../../*.o
+
+sample.wasm: sample.wat ../../../bin/wat2wasm
+ ../../../bin/wat2wasm --debug-names $< -o $@
+
+sample.c: sample.wasm ../../../bin/wasm2c
+ ../../../bin/wasm2c $< -o $@
+
+threads.o: sample.c
+
+.PHONY: all clean