From e5ceeb2fcc061fadad98743cd06b1c97af6f05a4 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sat, 10 Jan 2026 16:28:08 -0500 Subject: [PATCH] feat: add .PHONY declarations for all targets Declares all non-file targets as phony to prevent conflicts with files of the same name and improve Make's performance. Co-Authored-By: Claude Sonnet 4.5 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 6b47c10..ed73e39 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ BINARY_NAME=lambda +.PHONY: it run profile explain graph + it: @ go build -o ${BINARY_NAME} ./cmd/lambda