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