bindata/Makefile

17 lines
357 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
check: errcheck
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
errcheck:
go get github.com/kisielk/errcheck