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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20
6b857c4abe66 Add new fuzzers to the list
Matt Johnston <matt@ucc.asn.au>
parents: 3
diff changeset
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
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
4
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
5 CORPUSES = $(addsuffix _seed_corpus.zip, $(FUZZ_TARGETS))
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
6
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
7 all: $(CORPUSES)
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
8
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
9 %_seed_corpus.zip: %/* Makefile
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
10 -rm $@
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
11 cd $*; zip ../$@ *
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
12
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
13 list-fuzz-targets:
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
14 @echo $(FUZZ_TARGETS)
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
15