File: Makefile

package info (click to toggle)
golang-protobuf-extensions 1.0.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 308 kB
  • sloc: makefile: 7
file content (7 lines) | stat: -rw-r--r-- 108 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
all:

cover:
	go test -cover -v -coverprofile=cover.dat ./...
	go tool cover -func cover.dat

.PHONY: cover