ipfs-cluster/ipfs-cluster-service/Makefile
Hector Sanjuan 9111c6282c Issue-21: Add cluster ID() method
License: MIT
Signed-off-by: Hector Sanjuan <hector@protocol.ai>
2017-01-24 16:26:42 +01:00

13 lines
201 B
Makefile

all: ipfs-cluster-service
ipfs-cluster-service:
go build
install:
go install -ldflags "-X ipfscluster.commit $(shell git rev-parse HEAD)"
clean:
rm -f ipfs-cluster-service
.PHONY: clean install