Standarize release build makefile

This commit is contained in:
Owen Schwartz
2025-01-16 07:41:27 -05:00
parent c04a6ecfd7
commit 5d4faaff65
2 changed files with 7 additions and 1 deletions

4
.gitignore vendored
View File

@@ -1 +1,3 @@
gerbil
gerbil
.DS_Store
bin/

View File

@@ -13,5 +13,9 @@ test:
local:
CGO_ENABLED=0 GOOS=linux go build -o gerbil
release:
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o bin/gerbil_linux_arm64
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/gerbil_linux_amd64
clean:
rm gerbil