Files
go-connfilter/Makefile
eyedeekay 43d9954ebb docs
2025-02-03 23:39:49 -05:00

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")' {} \;