honk/Makefile

15 lines
213 B
Makefile
Raw Normal View History

2019-04-09 13:59:33 +02:00
all: honk
2022-05-31 08:32:22 +02:00
honk: .preflightcheck schema.sql *.go go.mod
env CGO_ENABLED=1 go build -mod=`ls -d vendor 2> /dev/null` -o honk
2019-04-09 13:59:33 +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