all repos — honk @ 3762e5454acd3062b5c5d67e658143ac5f8be51e

my fork of honk

Makefile (view raw)

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