We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b12aaee commit 38e26c2Copy full SHA for 38e26c2
interpreter/Makefile
@@ -12,7 +12,7 @@
12
NAME = wasm
13
OPT = $(NAME).exe
14
ZIP = $(NAME).zip
15
-JSLIB = wast.bc.js
+JSLIB = wast.js
16
17
BUILDDIR = _build/default
18
@@ -41,7 +41,7 @@ smallint.exe:
41
42
# Building JavaScript library
43
44
-wast.bc.js:
+$(JSLIB):
45
dune build $@
46
47
# Executing test suite
interpreter/dune
@@ -29,6 +29,11 @@
29
(libraries js_of_ocaml wasm)
30
(preprocess (pps js_of_ocaml-ppx)))
31
32
+(rule
33
+ (targets wast.js)
34
+ (deps wast.bc.js)
35
+ (action (copy wast.bc.js wast.js)))
36
+
37
(subdir
38
text
39
(rule
0 commit comments