File: Makefile

package info (click to toggle)
golang-github-mailgun-multibuf 0.0~git20150714.565402c-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: makefile: 11
file content (12 lines) | stat: -rw-r--r-- 212 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
clean:
	find . -name flymake_* -delete

test: clean
	go test -v .

test-grep: clean
	go test -v . -check.f=$(e)

cover: clean
	go test -v .  -coverprofile=/tmp/coverage.out
	go tool cover -html=/tmp/coverage.out