alpha
Login
or
Join now
nandi.uk
/
gleam
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Fork of daniellemaywood.uk/gleam — Wasm codegen work
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix phony in subdir_ffi test
author
PgBiel
committer
Louis Pilfold
date
2 years ago
(Nov 22, 2024, 2:42 PM UTC)
commit
f7a3b69f
f7a3b69f283d6dcec6d066ac762be24fc2a172da
parent
b2ac2ca9
b2ac2ca961fb278b83e2b5c52027fca6428f0ff2
+6
-6
1 changed file
Expand all
Collapse all
Unified
Split
test
subdir_ffi
Makefile
+6
-6
test/subdir_ffi/Makefile
View file
Reviewed
···
1
1
-
.phony: build
1
1
+
.PHONY: build
2
2
build: clean erlang nodejs deno bun
3
3
4
4
-
.phony: clean
4
4
+
.PHONY: clean
5
5
clean:
6
6
rm -rf build
7
7
8
8
-
.phony: erlang
8
8
+
.PHONY: erlang
9
9
erlang:
10
10
@echo test/subdir_ffi on Erlang
11
11
cargo run --quiet -- test --target erlang
12
12
13
13
-
.phony: nodejs
13
13
+
.PHONY: nodejs
14
14
nodejs:
15
15
@echo test/subdir_ffi on JavaScript with Node
16
16
cargo run --quiet -- test --target javascript --runtime nodejs
17
17
18
18
-
.phony: deno
18
18
+
.PHONY: deno
19
19
deno:
20
20
@echo test/subdir_ffi on JavaScript with Deno
21
21
cargo run --quiet -- test --target javascript --runtime deno
22
22
23
23
-
.phony: bun
23
23
+
.PHONY: bun
24
24
bun:
25
25
@echo test/subdir_ffi on JavaScript with Bun
26
26
cargo run --quiet -- test --target javascript --runtime bun