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 makefile phony
author
PgBiel
committer
Louis Pilfold
date
2 years ago
(Oct 23, 2024, 10:30 AM +0100)
commit
1b929549
1b9295490ba95b701fc764fa27b62917ab0e0255
parent
8a72709b
8a72709bf40a86d5e15f9e0401eedb761ec21f41
+9
-9
4 changed files
Expand all
Collapse all
Unified
Split
test
compile_package0
Makefile
compile_package1
Makefile
language
Makefile
running_modules
Makefile
+1
-1
test/compile_package0/Makefile
View file
Reviewed
···
1
1
-
.phony: build
1
1
+
.PHONY: build
2
2
build:
3
3
# Remove any previously compiled code
4
4
rm -rf out
+1
-1
test/compile_package1/Makefile
View file
Reviewed
···
1
1
-
.phony: build
1
1
+
.PHONY: build
2
2
build:
3
3
rm -rf out1 out2
4
4
cargo run -- compile-package --package app1 --target erlang --out out2 --lib .
+6
-6
test/language/Makefile
View file
Reviewed
···
1
1
-
.phony: build
1
1
+
.PHONY: build
2
2
build: clean erlang nodejs deno
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/language 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/language 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/language 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/language on JavaScript with Bun
26
26
cargo run --quiet -- test --target javascript --runtime bun
+1
-1
test/running_modules/Makefile
View file
Reviewed
···
1
1
-
.phony: test-all
1
1
+
.PHONY: test-all
2
2
test-all:
3
3
@echo test/running_modules
4
4
@./run_tests.sh