Fork of daniellemaywood.uk/gleam — Wasm codegen work
575 B
26 lines
1.PHONY: build
2build: clean erlang nodejs deno bun
3
4.PHONY: clean
5clean:
6 rm -rf build
7
8.PHONY: erlang
9erlang:
10 @echo test/subdir_ffi on Erlang
11 cargo run --quiet -- test --target erlang
12
13.PHONY: nodejs
14nodejs:
15 @echo test/subdir_ffi on JavaScript with Node
16 cargo run --quiet -- test --target javascript --runtime nodejs
17
18.PHONY: deno
19deno:
20 @echo test/subdir_ffi on JavaScript with Deno
21 cargo run --quiet -- test --target javascript --runtime deno
22
23.PHONY: bun
24bun:
25 @echo test/subdir_ffi on JavaScript with Bun
26 cargo run --quiet -- test --target javascript --runtime bun