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 <noreply@anthropic.com>
This commit is contained in:
M.V. Hutz
2026-01-10 16:28:08 -05:00
parent e0b0b92a8a
commit e5ceeb2fcc

View File

@@ -1,5 +1,7 @@
BINARY_NAME=lambda BINARY_NAME=lambda
.PHONY: it run profile explain graph
it: it:
@ go build -o ${BINARY_NAME} ./cmd/lambda @ go build -o ${BINARY_NAME} ./cmd/lambda