fuzz-walker/Makefile
Vincent Batts 790ac3077a
*: proper cli and vendoring
using `github.com/LK4D4/vndr`

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2018-06-05 16:53:08 -04:00

10 lines
111 B
Makefile

GO := go
default: fuzz-walker
fuzz-walker: $(wildcard *.go)
$(GO) build -o $@ .
clean:
rm -f fuzz-walker