Mercurial > dropbear
comparison Makefile.in @ 1456:a90fdd2d2ed8 fuzz
add fuzzer-preauth_nomaths
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 23 Jan 2018 23:05:47 +0800 |
parents | 4afde04f0607 |
children | 5916af64acd4 |
comparison
equal
deleted
inserted
replaced
1455:4afde04f0607 | 1456:a90fdd2d2ed8 |
---|---|
245 mv [email protected] $@ | 245 mv [email protected] $@ |
246 | 246 |
247 ## Fuzzing targets | 247 ## Fuzzing targets |
248 | 248 |
249 # list of fuzz targets | 249 # list of fuzz targets |
250 FUZZ_TARGETS=fuzzer-preauth fuzzer-pubkey fuzzer-verify | 250 FUZZ_TARGETS=fuzzer-preauth fuzzer-pubkey fuzzer-verify fuzzer-preauth_nomaths |
251 | 251 |
252 FUZZER_OPTIONS = $(addsuffix .options, $(FUZZ_TARGETS)) | 252 FUZZER_OPTIONS = $(addsuffix .options, $(FUZZ_TARGETS)) |
253 | 253 |
254 list-fuzz-targets: | 254 list-fuzz-targets: |
255 @echo $(FUZZ_TARGETS) | 255 @echo $(FUZZ_TARGETS) |
266 # or similar - the library provides main(). | 266 # or similar - the library provides main(). |
267 fuzz-targets: $(FUZZ_TARGETS) $(FUZZER_OPTIONS) | 267 fuzz-targets: $(FUZZ_TARGETS) $(FUZZER_OPTIONS) |
268 | 268 |
269 fuzzer-preauth: fuzzer-preauth.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) | 269 fuzzer-preauth: fuzzer-preauth.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) |
270 $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ | 270 $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ |
271 | |
272 fuzzer-preauth_nomaths: fuzzer-preauth_nomaths.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) | |
273 $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ | |
274 | |
271 | 275 |
272 fuzzer-pubkey: fuzzer-pubkey.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) | 276 fuzzer-pubkey: fuzzer-pubkey.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) |
273 $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ | 277 $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ |
274 | 278 |
275 fuzzer-verify: fuzzer-verify.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) | 279 fuzzer-verify: fuzzer-verify.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) |