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 env CGO_ENABLED=1 go build -mod=`ls -d vendor 2> /dev/null` -o honk .preflightcheck: preflight.sh @sh ./preflight.sh clean: rm -f honk test: go test