Vincent Batts
790ac3077a
using `github.com/LK4D4/vndr` Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
10 lines
111 B
Makefile
10 lines
111 B
Makefile
|
|
GO := go
|
|
|
|
default: fuzz-walker
|
|
|
|
fuzz-walker: $(wildcard *.go)
|
|
$(GO) build -o $@ .
|
|
|
|
clean:
|
|
rm -f fuzz-walker
|