Makefile.am revision 316cbe323513a0f20d1cf519fe9405e231d633e2
bcb4e51a409d94ae670de96afb8483a4f7855294Stephan Boschnoinst_LTLIBRARIES = libhttp.la
4c7d704408fc77467143a945dc2d0a856f72e674Timo SirainenAM_CPPFLAGS = \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen -I$(top_srcdir)/src/lib \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen -I$(top_srcdir)/src/lib-test \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen -I$(top_srcdir)/src/lib-dns \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainenlibhttp_la_SOURCES = \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainenpkginc_libdir=$(pkgincludedir)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainenpkginc_lib_HEADERS = $(headers)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_programs = \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-date \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-url \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-header-parser \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-transfer \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-auth \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-response-parser \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-request-parser
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_nocheck_programs = \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-payload \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-client \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-client-errors \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen test-http-server
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainennoinst_PROGRAMS = $(test_programs) $(test_nocheck_programs)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen $(MODULE_LIBS)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainen $(noinst_LTLIBRARIES) \
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_url_SOURCES = test-http-url.c
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_url_LDADD = http-url.lo http-header.lo $(test_libs)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_url_DEPENDENCIES = $(test_deps)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_date_SOURCES = test-http-date.c
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_date_LDADD = http-date.lo $(test_libs)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_date_DEPENDENCIES = $(test_deps)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_header_parser_SOURCES = test-http-header-parser.c
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_header_parser_LDADD = http-parser.lo http-header-parser.lo http-header.lo $(test_libs)
4c7d704408fc77467143a945dc2d0a856f72e674Timo Sirainentest_http_header_parser_DEPENDENCIES = $(test_deps)
test_http_transfer_SOURCES = test-http-transfer.c
test_http_auth_SOURCES = test-http-auth.c
test_http_response_parser_SOURCES = test-http-response-parser.c
test_http_request_parser_SOURCES = test-http-request-parser.c
test_http_payload_SOURCES = test-http-payload.c
test_http_client_SOURCES = test-http-client.c
test_http_client_errors_SOURCES = test-http-client-errors.c
test_http_server_SOURCES = test-http-server.c