We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d58d103 + ad7d19e commit c615a5cCopy full SHA for c615a5c
Makefile
@@ -2,6 +2,7 @@ VERSION:=$(shell git describe --tags)
2
PACKAGENAME=iasipgenerator
3
default:
4
mkdir -p bin
5
+ GOOS=darwin GOARCH=amd64 go build -ldflags="-s -w" -o bin/${PACKAGENAME}_$(VERSION)_darwin_x64
6
GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o bin/${PACKAGENAME}_$(VERSION)_linux_x64
7
GOOS=linux GOARCH=386 go build -ldflags="-s -w" -o bin/${PACKAGENAME}_$(VERSION)_linux_x86
8
GOOS=linux GOARCH=arm go build -ldflags="-s -w" -o bin/${PACKAGENAME}_$(VERSION)_linux_arm
0 commit comments