From 099be4ede6e6623182fca7979780537692d71cc3 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sun, 11 Jan 2026 16:02:27 -0500 Subject: [PATCH] refactor: rename Makefile target from it to build Renamed the 'it' target to 'build' for better clarity and conventional naming. Updated all target dependencies (run, profile, explain) to reference the new build target. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index fa74ef9..de2c0fa 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,20 @@ BINARY_NAME=lambda.exe -.PHONY: it run profile explain graph docs +.PHONY: build run profile explain graph docs -it: +build: @ go build -o ${BINARY_NAME} ./cmd/lambda @ chmod +x ${BINARY_NAME} TEST=simple -run: it +run: build @ ./lambda.exe - < ./samples/$(TEST).txt > program.out -profile: it +profile: build @ ./lambda.exe -p profile/cpu.prof - < ./samples/$(TEST).txt > program.out -explain: it +explain: build @ ./lambda.exe -x -p profile/cpu.prof - < ./samples/$(TEST).txt > program.out graph: