ipfs-cluster/Makefile

22 lines
475 B
Makefile
Raw Normal View History

2016-12-08 16:20:16 +00:00
all: deps
gx:
go get github.com/whyrusleeping/gx
go get github.com/whyrusleeping/gx-go
deps: gx
go get github.com/gorilla/mux
go get github.com/hashicorp/raft
go get github.com/hashicorp/raft-boltdb
go get github.com/ugorji/go/codec
2016-12-08 16:20:16 +00:00
gx --verbose install --global
gx-go rewrite
test: deps
go test -v -covermode count -coverprofile=coverage.out .
rw:
gx-go rewrite
rwundo:
gx-go rewrite --undo
publish: rwundo
gx publish
.PHONY: all gx deps test rw rwundo publish