build: Makefile

This commit is contained in:
eneller
2025-04-27 00:30:08 +02:00
parent 5c4deb5f0b
commit 2ce5ff3c50
2 changed files with 62 additions and 3 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC=go build
NAME=whatsup-poll
default: build
build:
$(CC)
arm:
env GOOS=linux GOARCH=arm64 $(CC) -o $(NAME)-arm64
clean:
git clean -fX