ipfs-cluster/ipfs-cluster-ctl/Makefile
Hector Sanjuan d5fc795ee5 Re-add version method to cluster-ctl
License: MIT
Signed-off-by: Hector Sanjuan <hector@protocol.ai>
2017-01-24 16:26:42 +01:00

15 lines
159 B
Makefile

all: ipfs-cluster-ctl
ipfs-cluster-ctl:
go build
build: ipfs-cluster-ctl
install:
go install
clean:
rm -f ipfs-cluster-ctl
.PHONY: clean install build