From dc1d139d35a843fbd2849588b8ed95a24cf2974a Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 11 Apr 2024 18:00:12 +0100 Subject: [PATCH] Fix 'PHONY' target name --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e421948..cd607dd 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ -.PHONE: all +.PHONY: all all: tree-sitter generate -.PHONE: test +.PHONY: test test: all tree-sitter test --apply-all-captures -.PHONE: update-tests +.PHONY: update-tests update-tests: all tree-sitter test -u --apply-all-captures