all repos — honk @ 3f9fb0dd66b48c2b0064c8777dce8e64195a5d3b

my fork of honk

Makefile (view raw)

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