runsvinit/example/Makefile

11 lines
184 B
Makefile
Raw Normal View History

2015-09-25 13:31:54 +00:00
.PHONY: docker
docker: runsvinit
docker build -t runsvinit-example .
2015-10-07 13:39:45 +00:00
runsvinit: $GOPATH/bin/runsvinit
cp $< $@
2015-09-25 13:31:54 +00:00
2015-10-07 13:39:45 +00:00
$GOPATH/bin/runsvinit:
go get -u github.com/peterbourgon/runsvinit
2015-09-25 13:31:54 +00:00