diff --git a/src/examples/wasm/Makefile b/src/examples/wasm/Makefile index 6927db72..a12bfbb3 100644 --- a/src/examples/wasm/Makefile +++ b/src/examples/wasm/Makefile @@ -1,10 +1,10 @@ export: clean wasm_exec - tinygo build -o ./html/wasm.wasm -target wasm ./export/wasm.go + tinygo build -o ./html/wasm.wasm -target wasm -no-debug ./export/wasm.go cp ./export/wasm.js ./html/ cp ./export/index.html ./html/ main: clean wasm_exec - tinygo build -o ./html/wasm.wasm -target wasm ./main/main.go + tinygo build -o ./html/wasm.wasm -target wasm -no-debug ./main/main.go cp ./main/index.html ./html/ wasm_exec: