Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

fix makefile phony

+9 -9
+1 -1
test/compile_package0/Makefile
··· 1 - .phony: build 1 + .PHONY: build 2 2 build: 3 3 # Remove any previously compiled code 4 4 rm -rf out
+1 -1
test/compile_package1/Makefile
··· 1 - .phony: build 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
··· 1 - .phony: build 1 + .PHONY: build 2 2 build: clean erlang nodejs deno 3 3 4 - .phony: clean 4 + .PHONY: clean 5 5 clean: 6 6 rm -rf build 7 7 8 - .phony: erlang 8 + .PHONY: erlang 9 9 erlang: 10 10 @echo test/language on Erlang 11 11 cargo run --quiet -- test --target erlang 12 12 13 - .phony: nodejs 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 - .phony: deno 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 - .phony: bun 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
··· 1 - .phony: test-all 1 + .PHONY: test-all 2 2 test-all: 3 3 @echo test/running_modules 4 4 @./run_tests.sh