Mercurial > dropbear-fuzzcorpus
annotate Makefile @ 3:5e4454cc7b17
copy fuzzer-preauth to fuzzer-preauth_nomaths
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 23 Jan 2018 23:28:22 +0800 |
parents | e5383cd558e5 |
children | 6b857c4abe66 |
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 | 2 |
3 CORPUSES = $(addsuffix _seed_corpus.zip, $(FUZZ_TARGETS)) | |
4 | |
5 all: $(CORPUSES) | |
6 | |
7 %_seed_corpus.zip: %/* Makefile | |
8 -rm $@ | |
9 cd $*; zip ../$@ * | |
10 | |
11 list-fuzz-targets: | |
12 @echo $(FUZZ_TARGETS) | |
13 |