honk/Makefile
2019-07-16 03:04:45 -04:00

11 lines
117 B
Makefile

all: honk
honk: *.go go.mod
go build -mod=`ls -d vendor 2> /dev/null` -o honk
clean:
rm -f honk
test:
go test