all repos — honk @ a1f5e5b57cae0f06fad03d6a18ebf94a24912897

my fork of honk

Makefile (view raw)

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

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

clean:
	rm -f honk

test:
	go test