mirror of
https://github.com/go-i2p/go-connfilter.git
synced 2025-07-12 19:04:51 -04:00
13 lines
254 B
Makefile
13 lines
254 B
Makefile
HERE=$(shell pwd)
|
|
|
|
bin: fmt
|
|
go build ./...
|
|
|
|
fmt:
|
|
find . -name '*.go' -exec gofumpt -w -s -extra {} \;
|
|
|
|
doc: checklist
|
|
find . -type d -exec $(HERE)/doc.sh {} \;
|
|
|
|
checklist:
|
|
find . -name '*.go' -exec grep --color -C 1 -Hn 'panic("unimplemented")' {} \;
|