view Makefile @ 25:0ef1e51e583f default tip

Add some more pubkey options to the dict
author Matt Johnston <matt@ucc.asn.au>
date Thu, 27 Oct 2022 19:09:07 +0800
parents 6b857c4abe66
children
line wrap: on
line source

FUZZ_TARGETS=fuzzer-preauth fuzzer-preauth_nomaths fuzzer-pubkey fuzzer-verify \
	fuzzer-client fuzzer-client_nomaths fuzzer-kexcurve25519 fuzzer-kexdh fuzzer-kexecdh fuzzer-postauth_nomaths

CORPUSES = $(addsuffix _seed_corpus.zip, $(FUZZ_TARGETS))

all: $(CORPUSES)

%_seed_corpus.zip: %/* Makefile
	-rm $@
	cd $*; zip ../$@ *

list-fuzz-targets:
	@echo $(FUZZ_TARGETS)