annotate Makefile @ 4:24fbd3331ca0

Import oss-fuzz corpora 2018-02-27
author Matt Johnston <matt@ucc.asn.au>
date Wed, 28 Feb 2018 22:59:15 +0800
parents 5e4454cc7b17
children 6b857c4abe66
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
5e4454cc7b17 copy fuzzer-preauth to fuzzer-preauth_nomaths
Matt Johnston <matt@ucc.asn.au>
parents: 2
diff changeset
1 FUZZ_TARGETS=fuzzer-preauth fuzzer-preauth_nomaths fuzzer-pubkey fuzzer-verify
0
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
2
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
3 CORPUSES = $(addsuffix _seed_corpus.zip, $(FUZZ_TARGETS))
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 all: $(CORPUSES)
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 %_seed_corpus.zip: %/* Makefile
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
8 -rm $@
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
9 cd $*; zip ../$@ *
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
10
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
11 list-fuzz-targets:
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
12 @echo $(FUZZ_TARGETS)
ec5e2b121e57 Dropbear fuzz corpus
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
13