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 7a062b7 commit 9a99b26Copy full SHA for 9a99b26
interpreter/Makefile
@@ -9,8 +9,9 @@
9
10
# Configuration
11
12
-OPT = wasm.exe
13
-ZIP = wasm.zip
+NAME = wasm
+OPT = $(NAME).exe
14
+ZIP = $(NAME).zip
15
JSLIB = wast.bc.js
16
17
BUILDDIR = _build/default
@@ -30,8 +31,8 @@ smallint: smallint.exe
30
31
ci: all jslib
32
33
# Building executable
-.PHONY: wasm.exe
34
-wasm.exe:
+.PHONY: $(NAME).exe
35
+$(NAME).exe:
36
dune build $@
37
38
.PHONY: smallint.exe
0 commit comments