add intel build command

This commit is contained in:
talksik
2025-10-27 16:07:47 -07:00
parent b5a55fe9d8
commit 9401d5002d
+3
View File
@@ -13,3 +13,6 @@ test:
.PHONY: build
build: test
CGO_ENABLED=0 go build cmd/main.go
build_intel:
GOARCH=amd64 CGO_ENABLED=0 go build -o main_intel cmd/main.go