mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
11 lines
216 B
Makefile
11 lines
216 B
Makefile
all: build-x86 build-x64
|
|
|
|
build-x64:
|
|
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build
|
|
tar -czf gor_x64.tar.gz gor
|
|
rm gor
|
|
|
|
build-x86:
|
|
GOOS=linux GOARCH=386 CGO_ENABLED=0 go build
|
|
tar -czf gor_x86.tar.gz gor
|
|
rm gor
|