comparison Makefile @ 0:ec5e2b121e57

Dropbear fuzz corpus
author Matt Johnston <matt@ucc.asn.au>
date Mon, 22 May 2017 22:44:32 +0800
parents
children e5383cd558e5
comparison
equal deleted inserted replaced
-1:000000000000 0:ec5e2b121e57
1 FUZZ_TARGETS=fuzzer-preauth
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