Fix 'PHONY' make targets
This commit is contained in:
parent
4a77b2d7a0
commit
e99b94405f
1 changed files with 4 additions and 3 deletions
7
Makefile
7
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue