From e99b94405fd10ce959272f01e8e47ecf1eaf0689 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 14 Mar 2025 17:42:16 +0000 Subject: [PATCH] Fix 'PHONY' make targets --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index de71411..32102bd 100644 --- a/Makefile +++ b/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