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