File: Makefile

package info (click to toggle)
golang-github-juju-loggo 0.0~git20150527.0.8477fc9-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 152 kB
  • ctags: 166
  • sloc: makefile: 14
file content (11 lines) | stat: -rw-r--r-- 287 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
default: check

check:
	go test && go test -compiler gccgo

docs:
	godoc2md github.com/juju/loggo > README.md
	sed -i 's|\[godoc-link-here\]|[![GoDoc](https://godoc.org/github.com/juju/loggo?status.svg)](https://godoc.org/github.com/juju/loggo)|' README.md 


.PHONY: default check docs