File tree 1 file changed +7
-7
lines changed
lib/node_modules/@stdlib/math/base/special/hypot/src
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ EMCC_WASM_FLAGS := $(EMCC_SHARED_FLAGS) \
94
94
-s LEGALIZE_JS_FFI=0
95
95
96
96
# Define the program for generating WebAssembly text files:
97
- WASM2WAST ?= wasm2wast
97
+ WASM2WAT ?= wasm2wat
98
98
99
99
# Determine whether to generate [position independent code][1]:
100
100
#
@@ -133,7 +133,7 @@ addon_objects := addon.o
133
133
wasm_objects := hypot.wasm
134
134
135
135
# List of WebAssembly text file targets:
136
- wast_objects := hypot.wast
136
+ wat_objects := hypot.wat
137
137
138
138
139
139
# TARGETS #
@@ -193,9 +193,9 @@ $(wasm_objects): %.wasm: %.c
193
193
#
194
194
# This target generates WebAssembly text files from WebAssembly binaries.
195
195
196
- $(wast_objects ) : % .wast : % .wasm
197
- $(QUIET ) $(WASM2WAST ) \
198
- -o $* .wast \
196
+ $(wat_objects ) : % .wat : % .wasm
197
+ $(QUIET ) $(WASM2WAT ) \
198
+ -o $* .wat \
199
199
$<
200
200
201
201
@@ -211,7 +211,7 @@ addon.node: $(addon_objects)
211
211
#
212
212
# This target generates WebAssembly files.
213
213
214
- wasm : clean-wasm $(wasm_objects ) $(wast_objects )
214
+ wasm : clean-wasm $(wasm_objects ) $(wat_objects )
215
215
216
216
.PHONY : wasm
217
217
@@ -243,7 +243,7 @@ clean-addon:
243
243
# This target removes generated files for compiling to WebAssembly.
244
244
245
245
clean-wasm :
246
- $(QUIET ) -rm -f * .wasm * .wast
246
+ $(QUIET ) -rm -f * .wasm * .wat
247
247
248
248
.PHONY : clean-wasm
249
249
You can’t perform that action at this time.
0 commit comments