Blame src/testzzuf/Makefile.am

Packit 875988
# This Makefile.am is in the public domain
Packit 875988
SUBDIRS  = .
Packit 875988
Packit 875988
if USE_COVERAGE
Packit 875988
  AM_CFLAGS = -fprofile-arcs -ftest-coverage
Packit 875988
endif
Packit 875988
Packit 875988
Packit 875988
AM_CPPFLAGS = -I$(top_srcdir)/src/include \
Packit 875988
  $(LIBCURL_CPPFLAGS)
Packit 875988
Packit 875988
EXTRA_DIST = README socat.c
Packit 875988
Packit 875988
check_PROGRAMS = \
Packit 875988
  test_get \
Packit 875988
  test_get_chunked \
Packit 875988
  test_post \
Packit 875988
  test_post_form \
Packit 875988
  test_put \
Packit 875988
  test_put_chunked \
Packit 875988
  test_put_large \
Packit 875988
  test_get11 \
Packit 875988
  test_post11 \
Packit 875988
  test_post_form11 \
Packit 875988
  test_put11 \
Packit 875988
  test_put_large11 \
Packit 875988
  test_long_header 
Packit 875988
Packit 875988
TESTS = $(check_PROGRAMS)
Packit 875988
Packit 875988
test_get_SOURCES = \
Packit 875988
  test_get.c
Packit 875988
test_get_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_get_chunked_SOURCES = \
Packit 875988
  test_get_chunked.c
Packit 875988
test_get_chunked_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_post_SOURCES = \
Packit 875988
  test_post.c
Packit 875988
test_post_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_post_form_SOURCES = \
Packit 875988
  test_post_form.c
Packit 875988
test_post_form_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_put_SOURCES = \
Packit 875988
  test_put.c
Packit 875988
test_put_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_put_chunked_SOURCES = \
Packit 875988
  test_put_chunked.c
Packit 875988
test_put_chunked_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_put_large_SOURCES = \
Packit 875988
  test_put_large.c
Packit 875988
test_put_large_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
Packit 875988
Packit 875988
test_get11_SOURCES = \
Packit 875988
  test_get.c
Packit 875988
test_get11_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_post11_SOURCES = \
Packit 875988
  test_post.c
Packit 875988
test_post11_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_post_form11_SOURCES = \
Packit 875988
  test_post_form.c
Packit 875988
test_post_form11_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_put11_SOURCES = \
Packit 875988
  test_put.c
Packit 875988
test_put11_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_put_large11_SOURCES = \
Packit 875988
  test_put_large.c
Packit 875988
test_put_large11_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@ 
Packit 875988
Packit 875988
test_long_header_SOURCES = \
Packit 875988
  test_long_header.c
Packit 875988
test_long_header_LDADD = \
Packit 875988
  $(top_builddir)/src/microhttpd/libmicrohttpd.la \
Packit 875988
  @LIBCURL@