Skip to content

Commit 9dc164a

Browse files
committed
Change "wast" to "wat"
1 parent 0de685c commit 9dc164a

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

lib/node_modules/@stdlib/math/base/special/hypot/src/Makefile

+7-7
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ EMCC_WASM_FLAGS := $(EMCC_SHARED_FLAGS) \
9494
-s LEGALIZE_JS_FFI=0
9595

9696
# Define the program for generating WebAssembly text files:
97-
WASM2WAST ?= wasm2wast
97+
WASM2WAT ?= wasm2wat
9898

9999
# Determine whether to generate [position independent code][1]:
100100
#
@@ -133,7 +133,7 @@ addon_objects := addon.o
133133
wasm_objects := hypot.wasm
134134

135135
# List of WebAssembly text file targets:
136-
wast_objects := hypot.wast
136+
wat_objects := hypot.wat
137137

138138

139139
# TARGETS #
@@ -193,9 +193,9 @@ $(wasm_objects): %.wasm: %.c
193193
#
194194
# This target generates WebAssembly text files from WebAssembly binaries.
195195

196-
$(wast_objects): %.wast: %.wasm
197-
$(QUIET) $(WASM2WAST) \
198-
-o $*.wast \
196+
$(wat_objects): %.wat: %.wasm
197+
$(QUIET) $(WASM2WAT) \
198+
-o $*.wat \
199199
$<
200200

201201

@@ -211,7 +211,7 @@ addon.node: $(addon_objects)
211211
#
212212
# This target generates WebAssembly files.
213213

214-
wasm: clean-wasm $(wasm_objects) $(wast_objects)
214+
wasm: clean-wasm $(wasm_objects) $(wat_objects)
215215

216216
.PHONY: wasm
217217

@@ -243,7 +243,7 @@ clean-addon:
243243
# This target removes generated files for compiling to WebAssembly.
244244

245245
clean-wasm:
246-
$(QUIET) -rm -f *.wasm *.wast
246+
$(QUIET) -rm -f *.wasm *.wat
247247

248248
.PHONY: clean-wasm
249249

0 commit comments

Comments
 (0)