From b31884d8ab37e2b9de58a66722f7e20389f4f6fe Mon Sep 17 00:00:00 2001 From: eneller Date: Fri, 12 Dec 2025 19:26:59 +0100 Subject: [PATCH] build: adjust Makefile to src/ --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f0bf1a3..f68be07 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,13 @@ CC=go build NAME=schneller-whatsapp +SRCDIR=./src default: build build: - $(CC) -o $(NAME) + $(CC) -o $(NAME) $(SRCDIR) run: - go run . + go run $(SRCDIR) arm: env CGO_ENABLED=1 GOOS=linux GOARCH=arm64 $(CC) -o $(NAME)-arm64