ipfs-cluster/cmd/ipfs-cluster-ctl/Makefile
Kishan Sagathiya 79481f83dc Move ipfs-cluster-service and ipfs-cluster-ctl to cmd/
This commit moves `ipfs-cluster-service` and `ipfs-cluster-ctl` to
`cmd/` directory to follow "standard" project structure.

License: MIT
Signed-off-by: Kishan Mohanbhai Sagathiya <kishansagathiya@gmail.com>
2018-09-27 20:56:09 +02:00

18 lines
230 B
Makefile

# go source files
SRC := $(shell find .. -type f -name '*.go')
all: ipfs-cluster-ctl
ipfs-cluster-ctl: $(SRC)
go build
build: ipfs-cluster-ctl
install:
go install
clean:
rm -f ipfs-cluster-ctl
.PHONY: clean install build