ipfs-cluster/ipfs-cluster-ctl/Makefile
Michael Muré 047fa48ec9
Makefile: add a source target to properly trigger a build on source change
Fix #425

License: MIT
Signed-off-by: Michael Muré <batolettre@gmail.com>
2018-05-18 01:46:19 +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