
all: humungus

humungus: go.mod schema.sql *.go
	go build -mod=`ls -d vendor 2> /dev/null` -o humungus

clean:
	rm -f humungus

help:

