mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
20 lines
277 B
Makefile
20 lines
277 B
Makefile
build: deps
|
|
go build ./...
|
|
|
|
test: deps
|
|
go test ./...
|
|
|
|
test_race: deps
|
|
go test -race ./...
|
|
|
|
gx-bins:
|
|
go get github.com/whyrusleeping/gx
|
|
go get github.com/whyrusleeping/gx-go
|
|
|
|
deps: gx-bins
|
|
gx --verbose install --global
|
|
gx-go rewrite
|
|
|
|
clean: gx-bins
|
|
gx-go rewrite --undo
|