From 5a9e78796fb23fcebf308b615f65deb8a615b83a Mon Sep 17 00:00:00 2001 From: Norm Brandinger Date: Sun, 7 Dec 2025 18:46:46 -0500 Subject: [PATCH] fix: add version and status to .PHONY targets in Makefile The `make version` and `make status` commands were not working because they were not declared as .PHONY targets. Make was treating them as file targets and reporting "up to date" without executing the commands. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ff5dab3..0ca144b 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ # make install-hooks - Install git pre-commit hooks # make help - Show this help message -.PHONY: help validate test sync-check sync-report extract-openapi regenerate install-hooks clean +.PHONY: help validate test sync-check sync-report extract-openapi regenerate install-hooks clean version status # Default target .DEFAULT_GOAL := help