⭐️ A friendly language for building type-safe, scalable systems!

fix phony in subdir_ffi test

authored by PgBiel and committed by Louis Pilfold f7a3b69f b2ac2ca9

Changed files
+6 -6
test
subdir_ffi
+6 -6
test/subdir_ffi/Makefile
··· 1 - .phony: build 1 + .PHONY: build 2 2 build: clean erlang nodejs deno bun 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/subdir_ffi 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/subdir_ffi 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/subdir_ffi 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/subdir_ffi on JavaScript with Bun 26 26 cargo run --quiet -- test --target javascript --runtime bun