mirror of
https://github.com/status-im/status-go.git
synced 2025-01-12 07:35:02 +00:00
efee11d28a
* introduce QR code generation
14 lines
414 B
Makefile
14 lines
414 B
Makefile
release: release-osx release-linux
|
|
|
|
release-osx:
|
|
- mkdir -p draft/osx
|
|
GOOS=darwin GOARCH=amd64 go build -o draft/osx/go-qrcode ./cmd/go-qrcode.go
|
|
cd draft/osx && tar -zcvf ../go-qrcode.osx.tar.gz .
|
|
|
|
release-linux:
|
|
- mkdir -p draft/linux
|
|
GOOS=linux GOARCH=amd64 go build -o draft/linux/go-qrcode ./cmd/go-qrcode.go
|
|
cd draft/linux && tar -zcvf ../go-qrcode.linux.tar.gz .
|
|
|
|
test-all:
|
|
go test -v --count=1 ./...
|