File: Makefile

package info (click to toggle)
golang-github-juju-errors 0.0~git20170703.0.c7d06af-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 176 kB
  • sloc: makefile: 10
file content (11 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (2)
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/errors > README.md
	sed -i 's|\[godoc-link-here\]|[![GoDoc](https://godoc.org/github.com/juju/errors?status.svg)](https://godoc.org/github.com/juju/errors)|' README.md 


.PHONY: default check docs