diff options
Diffstat (limited to 'src/lib/http/Makefile.am')
-rw-r--r-- | src/lib/http/Makefile.am | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/src/lib/http/Makefile.am b/src/lib/http/Makefile.am new file mode 100644 index 0000000..8ccaedf --- /dev/null +++ b/src/lib/http/Makefile.am @@ -0,0 +1,134 @@ +SUBDIRS = . tests + +AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib +AM_CPPFLAGS += $(BOOST_INCLUDES) $(CRYPTO_CFLAGS) $(CRYPTO_INCLUDES) +AM_CXXFLAGS = $(KEA_CXXFLAGS) + +EXTRA_DIST = http.dox + +# Ensure that the message file is included in the distribution +EXTRA_DIST += auth_messages.mes http_messages.mes + +CLEANFILES = *.gcno *.gcda + +lib_LTLIBRARIES = libkea-http.la +libkea_http_la_SOURCES = client.cc client.h +libkea_http_la_SOURCES += connection.cc connection.h +libkea_http_la_SOURCES += connection_pool.cc connection_pool.h +libkea_http_la_SOURCES += date_time.cc date_time.h +libkea_http_la_SOURCES += http_log.cc http_log.h +libkea_http_la_SOURCES += header_context.h +libkea_http_la_SOURCES += http_acceptor.h +libkea_http_la_SOURCES += http_header.cc http_header.h +libkea_http_la_SOURCES += http_message.cc http_message.h +libkea_http_la_SOURCES += http_message_parser_base.cc http_message_parser_base.h +libkea_http_la_SOURCES += http_messages.cc http_messages.h +libkea_http_la_SOURCES += http_types.h +libkea_http_la_SOURCES += listener.cc listener.h +libkea_http_la_SOURCES += listener_impl.cc listener_impl.h +libkea_http_la_SOURCES += post_request.cc post_request.h +libkea_http_la_SOURCES += post_request_json.cc post_request_json.h +libkea_http_la_SOURCES += request.cc request.h +libkea_http_la_SOURCES += request_context.h +libkea_http_la_SOURCES += request_parser.cc request_parser.h +libkea_http_la_SOURCES += response.cc response.h +libkea_http_la_SOURCES += response_parser.cc response_parser.h +libkea_http_la_SOURCES += response_context.h +libkea_http_la_SOURCES += response_creator.cc response_creator.h +libkea_http_la_SOURCES += response_creator_factory.h +libkea_http_la_SOURCES += response_json.cc response_json.h +libkea_http_la_SOURCES += url.cc url.h +libkea_http_la_SOURCES += auth_config.h +libkea_http_la_SOURCES += auth_log.cc auth_log.h +libkea_http_la_SOURCES += auth_messages.cc auth_messages.h +libkea_http_la_SOURCES += basic_auth_config.cc basic_auth_config.h +libkea_http_la_SOURCES += basic_auth.cc basic_auth.h +libkea_http_la_SOURCES += http_thread_pool.cc http_thread_pool.h + +libkea_http_la_CXXFLAGS = $(AM_CXXFLAGS) +libkea_http_la_CPPFLAGS = $(AM_CPPFLAGS) +libkea_http_la_LDFLAGS = $(AM_LDFLAGS) +libkea_http_la_LDFLAGS += -no-undefined -version-info 42:0:0 + +libkea_http_la_LIBADD = +libkea_http_la_LIBADD += $(top_builddir)/src/lib/hooks/libkea-hooks.la +libkea_http_la_LIBADD += $(top_builddir)/src/lib/asiolink/libkea-asiolink.la +libkea_http_la_LIBADD += $(top_builddir)/src/lib/cc/libkea-cc.la +libkea_http_la_LIBADD += $(top_builddir)/src/lib/log/libkea-log.la +libkea_http_la_LIBADD += $(top_builddir)/src/lib/util/libkea-util.la +libkea_http_la_LIBADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la +libkea_http_la_LIBADD += $(LOG4CPLUS_LIBS) $(BOOST_LIBS) $(CRYPTO_LIBS) + +# If we want to get rid of all generated messages files, we need to use +# make maintainer-clean. The proper way to introduce custom commands for +# that operation is to define maintainer-clean-local target. However, +# make maintainer-clean also removes Makefile, so running configure script +# is required. To make it easy to rebuild messages without going through +# reconfigure, a new target messages-clean has been added. +maintainer-clean-local: + rm -f auth_messages.cc auth_messages.h + rm -f http_messages.h http_messages.cc + +# To regenerate messages files, one can do: +# +# make messages-clean +# make messages +# +# This is needed only when a .mes file is modified. +messages-clean: maintainer-clean-local + +if GENERATE_MESSAGES + +# Define rule to build logging source files from message file +messages: auth_messages.cc auth_messages.h http_messages.h http_messages.cc + @echo Message files regenerated + +auth_messages.cc auth_messages.h: auth_messages.mes + $(top_builddir)/src/lib/log/compiler/kea-msg-compiler $(top_srcdir)/src/lib/http/auth_messages.mes + +http_messages.h http_messages.cc: http_messages.mes + $(top_builddir)/src/lib/log/compiler/kea-msg-compiler $(top_srcdir)/src/lib/http/http_messages.mes + +else + +messages http_messages.h http_messages.cc: + @echo Messages generation disabled. Configure with --enable-generate-messages to enable it. + +endif + +# Specify the headers for copying into the installation directory tree. +libkea_http_includedir = $(pkgincludedir)/http +libkea_http_include_HEADERS = \ + auth_config.h \ + auth_log.h \ + auth_messages.h \ + basic_auth.h \ + basic_auth_config.h \ + client.h \ + connection.h \ + connection_pool.h \ + date_time.h \ + header_context.h \ + http_acceptor.h \ + http_header.h \ + http_log.h \ + http_message.h \ + http_message_parser_base.h \ + http_messages.h \ + http_thread_pool.h \ + http_types.h \ + listener.h \ + listener_impl.h \ + post_request.h \ + post_request_json.h \ + request.h \ + request_context.h \ + request_parser.h \ + response.h \ + response_context.h \ + response_creator.h \ + response_creator_factory.h \ + response_json.h \ + response_parser.h \ + url.h + |