Fix 'PHONY' make targets

This commit is contained in:
Bruno BELANYI 2025-03-14 17:42:16 +00:00
parent 4a77b2d7a0
commit e99b94405f

View file

@ -1,16 +1,17 @@
.PHONE: all
.PHONY: all
all:
tree-sitter generate
.PHONE: test
.PHONY: test
test: all
tree-sitter test
nvim-test
.PHONE: update-tests
.PHONY: update-tests
update-tests: all
tree-sitter test -u
.PHONY: playground
playground:
nix shell pkgs#emscripten --command tree-sitter build-wasm
tree-sitter playground