mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
20 lines
509 B
Makefile
20 lines
509 B
Makefile
FUZZPROGS = http11 ftp imap pop3 httpupload http2
|
|
|
|
http11_SOURCES = curl_fuzzer.c
|
|
http11_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
ftp_SOURCES = curl_fuzzer.c
|
|
ftp_CPPFLAGS = -DFUZZER_FTP $(AM_CPPFLAGS)
|
|
|
|
imap_SOURCES = curl_fuzzer.c
|
|
imap_CPPFLAGS = -DFUZZER_IMAP $(AM_CPPFLAGS)
|
|
|
|
pop3_SOURCES = curl_fuzzer.c
|
|
pop3_CPPFLAGS = -DFUZZER_POP3 $(AM_CPPFLAGS)
|
|
|
|
httpupload_SOURCES = curl_fuzzer.c
|
|
httpupload_CPPFLAGS = -DFUZZER_HTTP_UPLOAD $(AM_CPPFLAGS)
|
|
|
|
http2_SOURCES = curl_fuzzer.c
|
|
http2_CPPFLAGS = -DFUZZER_HTTP2 $(AM_CPPFLAGS)
|