2019-04-09 11:59:33 +00:00
|
|
|
|
|
|
|
all: honk
|
|
|
|
|
2019-11-01 19:48:31 +00:00
|
|
|
schema.go: schema.sql
|
|
|
|
sh ./genschemago.sh
|
|
|
|
|
2020-10-02 01:58:50 +00:00
|
|
|
honk: .preflightcheck schema.go *.go go.mod
|
2019-04-10 12:51:56 +00:00
|
|
|
go build -mod=`ls -d vendor 2> /dev/null` -o honk
|
2019-04-09 11:59:33 +00:00
|
|
|
|
2020-10-02 01:58:50 +00:00
|
|
|
.preflightcheck: preflight.sh
|
|
|
|
@sh ./preflight.sh
|
|
|
|
|
2019-04-09 11:59:33 +00:00
|
|
|
clean:
|
|
|
|
rm -f honk
|
2019-05-12 14:02:44 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
go test
|