435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
34 lines
671 B
Makefile
34 lines
671 B
Makefile
# Makefile for fuzzing
|
|
#
|
|
# Use go-fuzz and needs the tools installed.
|
|
# See https://blog.cloudflare.com/dns-parser-meet-go-fuzzer/
|
|
#
|
|
# Installing go-fuzz:
|
|
# $ make -f Makefile.fuzz get
|
|
# Installs:
|
|
# * github.com/dvyukov/go-fuzz/go-fuzz
|
|
# * get github.com/dvyukov/go-fuzz/go-fuzz-build
|
|
|
|
all: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
go-fuzz-build -tags fuzz github.com/miekg/dns
|
|
|
|
.PHONY: build-newrr
|
|
build-newrr:
|
|
go-fuzz-build -func FuzzNewRR -tags fuzz github.com/miekg/dns
|
|
|
|
.PHONY: fuzz
|
|
fuzz:
|
|
go-fuzz -bin=dns-fuzz.zip -workdir=fuzz
|
|
|
|
.PHONY: get
|
|
get:
|
|
go get github.com/dvyukov/go-fuzz/go-fuzz
|
|
go get github.com/dvyukov/go-fuzz/go-fuzz-build
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm *-fuzz.zip
|