all repos — honk @ 96116fdb4d4c9da30ff3c5bbd6a41c745276b67c

my fork of honk

Makefile (view raw)

 1
 2all: honk
 3
 4honk: *.go go.mod
 5	go build -mod=`ls -d vendor 2> /dev/null` -o honk
 6
 7clean:
 8	rm -f honk
 9
10test:
11	go test