From 0d06fac919351903afaa4a4cee8fa456593a8a56 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sat, 10 Jan 2026 16:27:42 -0500 Subject: [PATCH] fix: remove Windows .exe extension from binary name Changed BINARY_NAME from lambda.exe to lambda for Unix systems. The .exe extension is a Windows convention and is inappropriate for macOS/Linux builds. Co-Authored-By: Claude Sonnet 4.5 --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4c0268a..9b3a37d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -BINARY_NAME=lambda.exe +BINARY_NAME=lambda it: @ go build -o ${BINARY_NAME} ./cmd/lambda @@ -7,13 +7,13 @@ it: TEST=simple run: it - @ ./lambda.exe - < ./samples/$(TEST).txt > program.out + @ ./lambda - < ./samples/$(TEST).txt > program.out profile: it - @ ./lambda.exe -p profile/cpu.prof - < ./samples/$(TEST).txt > program.out + @ ./lambda -p profile/cpu.prof - < ./samples/$(TEST).txt > program.out explain: it - @ ./lambda.exe -x -p profile/cpu.prof - < ./samples/$(TEST).txt > program.out + @ ./lambda -x -p profile/cpu.prof - < ./samples/$(TEST).txt > program.out graph: @ go tool pprof -raw -output=profile/cpu.raw profile/cpu.prof