From 0260a065cbdc9009a0cfefd914b364c72bd6f3bc Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sun, 11 Jan 2026 16:04:11 -0500 Subject: [PATCH] refactor: move TEST variable to top of Makefile Moved TEST variable declaration to the top with other configuration variables for better organization. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7317dd3..6275bc8 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ BINARY_NAME=lambda.exe +TEST=simple .PHONY: help build run profile explain graph docs @@ -17,8 +18,6 @@ build: @ go build -o ${BINARY_NAME} ./cmd/lambda @ chmod +x ${BINARY_NAME} -TEST=simple - run: build @ ./lambda.exe - < ./samples/$(TEST).txt > program.out