all repos — honk @ 9160eabd159a3d1f54b90625765ddd7be8e8d7a2

my fork of honk

Makefile (view raw)

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

schema.go: schema.sql
	sh ./genschemago.sh

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

clean:
	rm -f honk

test:
	go test