bindata/Makefile

33 lines
875 B
Makefile
Raw Normal View History

2015-05-08 20:05:20 +00:00
all: regen check
2015-05-08 20:05:10 +00:00
regen:
go install ./...
make -C testdata regen
2015-05-08 20:05:20 +00:00
.PHONY: check
2015-05-11 19:33:37 +00:00
check: errcheck go-nyet golint
2015-05-08 20:05:20 +00:00
errcheck testdata/out/compress-memcopy.go
errcheck testdata/out/compress-nomemcopy.go
errcheck testdata/out/debug.go
errcheck testdata/out/nocompress-memcopy.go
errcheck testdata/out/nocompress-nomemcopy.go
2015-05-11 13:48:50 +00:00
go-nyet testdata/out/compress-memcopy.go
go-nyet testdata/out/compress-nomemcopy.go
go-nyet testdata/out/debug.go
go-nyet testdata/out/nocompress-memcopy.go
go-nyet testdata/out/nocompress-nomemcopy.go
2015-05-11 19:33:37 +00:00
golint testdata/out/compress-memcopy.go
golint testdata/out/compress-nomemcopy.go
golint testdata/out/debug.go
golint testdata/out/nocompress-memcopy.go
golint testdata/out/nocompress-nomemcopy.go
2015-05-08 20:05:20 +00:00
errcheck:
go get github.com/kisielk/errcheck
2015-05-11 13:48:50 +00:00
go-nyet:
go get github.com/barakmich/go-nyet
2015-05-11 19:33:37 +00:00
golint:
go get github.com/golang/lint/golint