Mercurial > dropbear
comparison Makefile.in @ 1369:ddfcadca3c4c fuzz
fuzzer-pubkey
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 23 May 2017 22:43:34 +0800 |
parents | f9f930e1a516 |
children | dd5d7b7141b9 |
comparison
equal
deleted
inserted
replaced
1368:10df23099071 | 1369:ddfcadca3c4c |
---|---|
243 mv [email protected] $@ | 243 mv [email protected] $@ |
244 | 244 |
245 ## Fuzzing targets | 245 ## Fuzzing targets |
246 | 246 |
247 # list of fuzz targets | 247 # list of fuzz targets |
248 FUZZ_TARGETS=fuzzer-preauth | 248 FUZZ_TARGETS=fuzzer-preauth fuzzer-pubkey |
249 | 249 |
250 list-fuzz-targets: | 250 list-fuzz-targets: |
251 @echo $(FUZZ_TARGETS) | 251 @echo $(FUZZ_TARGETS) |
252 | 252 |
253 # fuzzers that don't use libfuzzer, just a standalone harness that feeds inputs | 253 # fuzzers that don't use libfuzzer, just a standalone harness that feeds inputs |
261 # make fuzzers LIBS=-lFuzzer.a | 261 # make fuzzers LIBS=-lFuzzer.a |
262 # or similar - the library provides main(). | 262 # or similar - the library provides main(). |
263 fuzz-targets: $(FUZZ_TARGETS) | 263 fuzz-targets: $(FUZZ_TARGETS) |
264 | 264 |
265 fuzzer-preauth: fuzzer-preauth.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) | 265 fuzzer-preauth: fuzzer-preauth.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) |
266 $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ | |
267 | |
268 fuzzer-pubkey: fuzzer-pubkey.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) | |
266 $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ | 269 $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ |
267 | 270 |
268 # run this to update hardcoded hostkeys for for fuzzing. | 271 # run this to update hardcoded hostkeys for for fuzzing. |
269 # hostkeys.c is checked in to hg. | 272 # hostkeys.c is checked in to hg. |
270 fuzz-hostkeys: | 273 fuzz-hostkeys: |