refactor: move TEST variable to top of Makefile

Moved TEST variable declaration to the top with other configuration variables for better organization.
This commit is contained in:
2026-01-11 16:04:11 -05:00
parent e31fb88077
commit 0260a065cb

View File

@@ -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