ipfs-cluster/ipfs-cluster-ctl/Makefile
Hector Sanjuan 365c549d7c Fix #5: Rename apps to ipfs-cluster-service and ipfs-cluster-ctl
License: MIT
Signed-off-by: Hector Sanjuan <hector@protocol.ai>
2017-01-23 13:34:22 +01:00

13 lines
128 B
Makefile

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