fuzz-walker/Makefile

11 lines
111 B
Makefile
Raw Normal View History

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