File: Makefile

package info (click to toggle)
golang-github-dlintw-goconf 0.0~git20120228.dcc0709-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 100 kB
  • sloc: makefile: 10
file content (8 lines) | stat: -rw-r--r-- 100 bytes parent folder | download
1
2
3
4
5
6
7
8
all:
	go tool fix *.go
	go tool vet *.go
	gofmt -s -w *.go
	go build
	go install
test: all
	go test