SUBDIRS = . if USE_COVERAGE AM_CFLAGS = -fprofile-arcs -ftest-coverage endif if ENABLE_HTTPS SUBDIRS += https endif if USE_PRIVATE_PLIBC_H PLIBC_INCLUDE = -I$(top_srcdir)/src/include/plibc endif AM_CPPFLAGS = \ $(PLIBC_INCLUDE) \ -I$(top_srcdir) \ -I$(top_srcdir)/src/microhttpd \ -I$(top_srcdir)/src/include \ -I$(top_srcdir)/src/platform \ $(LIBCURL_CPPFLAGS) if !HAVE_W32 PERF_GET_CONCURRENT=perf_get_concurrent TEST_QUIESCE=test_quiesce if HAVE_CURL_BINARY CURL_FORK_TEST = test_get_response_cleanup endif endif if HAVE_CURL check_PROGRAMS = \ test_start_stop \ $(TEST_QUIESCE) \ test_get \ test_get_sendfile \ test_urlparse \ test_put \ test_process_headers \ test_process_arguments \ test_parse_cookies \ test_large_put \ test_get11 \ test_get_sendfile11 \ test_put11 \ test_large_put11 \ test_long_header \ test_long_header11 \ test_get_chunked \ test_put_chunked \ test_iplimit11 \ test_termination \ test_timeout \ test_callback \ $(CURL_FORK_TEST) \ perf_get $(PERF_GET_CONCURRENT) if HAVE_POSTPROCESSOR check_PROGRAMS += \ test_post \ test_postform \ test_post_loop \ test_post11 \ test_postform11 \ test_post_loop11 endif noinst_PROGRAMS = \ test_options if ENABLE_DAUTH check_PROGRAMS += \ test_digestauth test_digestauth_with_arguments endif TESTS = $(check_PROGRAMS) noinst_LIBRARIES = libcurl_version_check.a endif libcurl_version_check_a_SOURCES = \ curl_version_check.c test_start_stop_SOURCES = \ test_start_stop.c test_start_stop_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la test_options_SOURCES = \ test_options.c test_options_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la test_get_SOURCES = \ test_get.c test_get_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_quiesce_SOURCES = \ test_quiesce.c test_quiesce_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_callback_SOURCES = \ test_callback.c test_callback_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ perf_get_SOURCES = \ perf_get.c \ gauger.h perf_get_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ perf_get_concurrent_SOURCES = \ perf_get_concurrent.c \ gauger.h perf_get_concurrent_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_digestauth_SOURCES = \ test_digestauth.c test_digestauth_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ @LIBGCRYPT_LIBS@ test_digestauth_with_arguments_SOURCES = \ test_digestauth_with_arguments.c test_digestauth_with_arguments_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ @LIBGCRYPT_LIBS@ test_get_sendfile_SOURCES = \ test_get_sendfile.c \ ../platform/platform_interface.h if HAVE_W32 test_get_sendfile_SOURCES += \ ../platform/w32functions.h ../platform/w32functions.c endif test_get_sendfile_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_urlparse_SOURCES = \ test_urlparse.c test_urlparse_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_get_response_cleanup_SOURCES = \ test_get_response_cleanup.c test_get_response_cleanup_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la test_get_chunked_SOURCES = \ test_get_chunked.c test_get_chunked_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post_SOURCES = \ test_post.c test_post_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_process_headers_SOURCES = \ test_process_headers.c test_process_headers_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_parse_cookies_SOURCES = \ test_parse_cookies.c test_parse_cookies_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_process_arguments_SOURCES = \ test_process_arguments.c test_process_arguments_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_postform_SOURCES = \ test_postform.c test_postform_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ @LIBGCRYPT_LIBS@ test_post_loop_SOURCES = \ test_post_loop.c test_post_loop_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put_SOURCES = \ test_put.c test_put_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put_chunked_SOURCES = \ test_put_chunked.c test_put_chunked_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_get11_SOURCES = \ test_get.c test_get11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_get_sendfile11_SOURCES = \ test_get_sendfile.c if HAVE_W32 test_get_sendfile11_SOURCES += \ ../platform/w32functions.h ../platform/w32functions.c endif test_get_sendfile11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post11_SOURCES = \ test_post.c test_post11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_postform11_SOURCES = \ test_postform.c test_postform11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ @LIBGCRYPT_LIBS@ test_post_loop11_SOURCES = \ test_post_loop.c test_post_loop11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put11_SOURCES = \ test_put.c test_put11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_large_put_SOURCES = \ test_large_put.c test_large_put_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_large_put11_SOURCES = \ test_large_put.c test_large_put11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_long_header_SOURCES = \ test_long_header.c test_long_header_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_long_header11_SOURCES = \ test_long_header.c test_long_header11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_iplimit11_SOURCES = \ test_iplimit.c test_iplimit11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_termination_SOURCES = \ test_termination.c test_termination_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_timeout_SOURCES = \ test_timeout.c test_timeout_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@