all repos — honk @ 43cd486824f1979ab27e9be0797a2904241a5290

my fork of honk

Makefile (view raw)

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

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

.preflightcheck: preflight.sh
	@sh ./preflight.sh

clean:
	rm -f honk

test:
	go test