From 5e9c5b7621d550d92f5565622ad0bf147d4d8a3f Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 12 Apr 2008 20:45:58 +0000 Subject: moving stuff around --- src/testcurl/Makefile.am | 126 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 src/testcurl/Makefile.am (limited to 'src/testcurl/Makefile.am') diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am new file mode 100644 index 00000000..d220ef08 --- /dev/null +++ b/src/testcurl/Makefile.am @@ -0,0 +1,126 @@ +SUBDIRS = . + +INCLUDES = -I$(top_srcdir)/src/include + +check_PROGRAMS = \ + postprocessor_test \ + daemontest \ + daemontest_get \ + daemontest_post \ + daemontest_postform \ + daemontest_post_loop \ + daemontest_put \ + daemontest_large_put \ + daemontest_get11 \ + daemontest_post11 \ + daemontest_postform11 \ + daemontest_post_loop11 \ + daemontest_put11 \ + daemontest_large_put11 \ + daemontest_long_header \ + daemontest_get_chunked \ + daemontest_put_chunked + +TESTS = $(check_PROGRAMS) + +daemontest_SOURCES = \ + daemontest.c +daemontest_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la + +postprocessor_test_SOURCES = \ + postprocessor_test.c +postprocessor_test_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la + +daemontest_get_SOURCES = \ + daemontest_get.c +daemontest_get_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_get_chunked_SOURCES = \ + daemontest_get_chunked.c +daemontest_get_chunked_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_post_SOURCES = \ + daemontest_post.c +daemontest_post_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_postform_SOURCES = \ + daemontest_postform.c +daemontest_postform_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_post_loop_SOURCES = \ + daemontest_post_loop.c +daemontest_post_loop_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_put_SOURCES = \ + daemontest_put.c +daemontest_put_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_put_chunked_SOURCES = \ + daemontest_put_chunked.c +daemontest_put_chunked_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_get11_SOURCES = \ + daemontest_get.c +daemontest_get11_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_post11_SOURCES = \ + daemontest_post.c +daemontest_post11_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_postform11_SOURCES = \ + daemontest_postform.c +daemontest_postform11_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_post_loop11_SOURCES = \ + daemontest_post_loop.c +daemontest_post_loop11_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_put11_SOURCES = \ + daemontest_put.c +daemontest_put11_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + + +daemontest_large_put_SOURCES = \ + daemontest_large_put.c +daemontest_large_put_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_large_put11_SOURCES = \ + daemontest_large_put.c +daemontest_large_put11_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + +daemontest_long_header_SOURCES = \ + daemontest_long_header.c +daemontest_long_header_LDADD = \ + $(top_builddir)/src/daemon/libmicrohttpd.la \ + @LIBCURL@ + -- cgit v1.2.3