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:
|
all:
|
||||||
tree-sitter generate
|
tree-sitter generate
|
||||||
|
|
||||||
.PHONE: test
|
.PHONY: test
|
||||||
test: all
|
test: all
|
||||||
tree-sitter test
|
tree-sitter test
|
||||||
nvim-test
|
nvim-test
|
||||||
|
|
||||||
.PHONE: update-tests
|
.PHONY: update-tests
|
||||||
update-tests: all
|
update-tests: all
|
||||||
tree-sitter test -u
|
tree-sitter test -u
|
||||||
|
|
||||||
|
.PHONY: playground
|
||||||
playground:
|
playground:
|
||||||
nix shell pkgs#emscripten --command tree-sitter build-wasm
|
nix shell pkgs#emscripten --command tree-sitter build-wasm
|
||||||
tree-sitter playground
|
tree-sitter playground
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue