Makefile (view raw)
1 2all: honk 3 4honk: .preflightcheck schema.sql *.go go.mod 5 env CGO_ENABLED=1 go build -mod=`ls -d vendor 2> /dev/null` -o honk 6 7.preflightcheck: preflight.sh 8 @sh ./preflight.sh 9 10clean: 11 rm -f honk 12 13test: 14 go test