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/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/wasm2c/examples/threads/Makefile b/wasm2c/examples/threads/Makefile
index f6eb9998..b671e482 100644
--- a/wasm2c/examples/threads/Makefile
+++ b/wasm2c/examples/threads/Makefile
@@ -1,14 +1,14 @@
#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
+LDLIBS=${SANITIZERS} -pthread -lm
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
+threads: threads.o sample.o ../../wasm-rt-impl.o ../../wasm-rt-exceptions-impl.o
+
sample.wasm: sample.wat ../../../bin/wat2wasm
../../../bin/wat2wasm --debug-names $< -o $@