Skip to content

Commit e349a2e

Browse files
committed
rename wasm.ml to main.ml
1 parent 4e058b8 commit e349a2e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

interpreter/dune

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
; Wasm REPL every time in all the dependencies.
77
; We exclude the 'wast' module as it is only used for the JS build.
88
; 'smallint' is a separate test module.
9-
(modules :standard \ wasm smallint wast))
9+
(modules :standard \ main wasm smallint wast))
1010

1111
(executable
1212
(public_name wasm)
@@ -29,6 +29,11 @@
2929
(libraries js_of_ocaml wasm)
3030
(preprocess (pps js_of_ocaml-ppx)))
3131

32+
(rule
33+
(targets wasm.ml)
34+
(deps main/main.ml)
35+
(action (copy main/main.ml wasm.ml)))
36+
3237
(rule
3338
(targets wast.js)
3439
(deps wast.bc.js)
File renamed without changes.

0 commit comments

Comments
 (0)