Mercurial > dropbear-fuzzcorpus
annotate Makefile @ 27:6d889f88a97d default tip
Update to current corpus 2024-12-14
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 14 Dec 2024 20:28:01 +0800 |
parents | 6b857c4abe66 |
children |
rev | line source |
---|---|
20 | 1 FUZZ_TARGETS=fuzzer-preauth fuzzer-preauth_nomaths fuzzer-pubkey fuzzer-verify \ |
27
6d889f88a97d
Update to current corpus 2024-12-14
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
2 fuzzer-client fuzzer-client_nomaths fuzzer-kexcurve25519 fuzzer-kexdh fuzzer-kexecdh fuzzer-postauth_nomaths \ |
6d889f88a97d
Update to current corpus 2024-12-14
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
3 fuzzer-cliconf |
0 | 4 |
5 CORPUSES = $(addsuffix _seed_corpus.zip, $(FUZZ_TARGETS)) | |
6 | |
7 all: $(CORPUSES) | |
8 | |
9 %_seed_corpus.zip: %/* Makefile | |
10 -rm $@ | |
11 cd $*; zip ../$@ * | |
12 | |
13 list-fuzz-targets: | |
14 @echo $(FUZZ_TARGETS) | |
15 |