all repos — honk @ d7f4297dae03a4fa6097da17c7ea1d5b15eac4a7

my fork of honk

Makefile (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
all: honk

honk: *.go go.mod
	go build -mod=`ls -d vendor 2> /dev/null` -o honk

clean:
	rm -f honk

test:
	go test