2014-03-30 12:09:21 +02:00
|
|
|
# nghttp2 - HTTP/2 C Library
|
2012-01-29 16:35:33 +01:00
|
|
|
|
|
|
|
# Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2012-03-28 19:13:33 +02:00
|
|
|
if ENABLE_EXAMPLES
|
|
|
|
|
2014-12-01 15:06:11 +01:00
|
|
|
AM_CFLAGS = $(WARNCFLAGS)
|
2013-12-22 11:26:32 +01:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-Wall \
|
2014-01-10 16:36:20 +01:00
|
|
|
-I$(top_srcdir)/lib/includes \
|
|
|
|
-I$(top_builddir)/lib/includes \
|
2014-09-21 11:28:06 +02:00
|
|
|
-I$(top_srcdir)/src/includes \
|
2014-01-10 16:36:20 +01:00
|
|
|
-I$(top_srcdir)/third-party \
|
2013-12-22 11:26:32 +01:00
|
|
|
@LIBEVENT_OPENSSL_CFLAGS@ \
|
|
|
|
@OPENSSL_CFLAGS@ \
|
|
|
|
@DEFS@
|
|
|
|
AM_LDFLAGS = \
|
|
|
|
@LIBEVENT_OPENSSL_LIBS@ \
|
|
|
|
@OPENSSL_LIBS@
|
2014-01-10 16:36:20 +01:00
|
|
|
LDADD = \
|
|
|
|
$(top_builddir)/lib/libnghttp2.la \
|
|
|
|
$(top_builddir)/third-party/libhttp-parser.la
|
2012-01-29 16:35:33 +01:00
|
|
|
|
2014-06-29 16:45:49 +02:00
|
|
|
noinst_PROGRAMS = client libevent-client libevent-server deflate
|
2014-01-10 16:36:20 +01:00
|
|
|
|
2013-09-02 15:49:34 +02:00
|
|
|
client_SOURCES = client.c
|
2012-04-27 18:20:56 +02:00
|
|
|
|
2014-01-10 16:36:20 +01:00
|
|
|
libevent_client_SOURCES = libevent-client.c
|
2013-12-22 11:26:32 +01:00
|
|
|
|
2013-12-23 15:27:30 +01:00
|
|
|
libevent_server_SOURCES = libevent-server.c
|
|
|
|
|
2014-06-29 16:45:49 +02:00
|
|
|
deflate_SOURCES = deflate.c
|
|
|
|
|
2014-10-09 14:18:24 +02:00
|
|
|
if ENABLE_TINY_NGHTTPD
|
2014-09-27 16:42:28 +02:00
|
|
|
|
2014-09-27 08:20:40 +02:00
|
|
|
noinst_PROGRAMS += tiny-nghttpd
|
|
|
|
|
|
|
|
tiny_nghttpd_SOURCES = tiny-nghttpd.c
|
|
|
|
|
2014-10-09 14:18:24 +02:00
|
|
|
endif # ENABLE_TINY_NGHTTPD
|
2014-09-27 16:42:28 +02:00
|
|
|
|
2014-09-21 11:28:06 +02:00
|
|
|
if ENABLE_ASIO_LIB
|
|
|
|
|
2014-09-28 09:17:43 +02:00
|
|
|
noinst_PROGRAMS += asio-sv asio-sv2 asio-sv3
|
2014-09-21 11:28:06 +02:00
|
|
|
|
2014-09-24 16:05:13 +02:00
|
|
|
ASIOCPPFLAGS = ${BOOST_CPPFLAGS} ${AM_CPPFLAGS}
|
2014-09-26 14:42:31 +02:00
|
|
|
ASIOLDFLAGS = @JEMALLOC_LIBS@
|
2014-09-24 16:05:13 +02:00
|
|
|
ASIOLDADD = $(top_builddir)/src/libnghttp2_asio.la
|
|
|
|
|
|
|
|
asio_sv_SOURCES = asio-sv.cc
|
|
|
|
asio_sv_CPPFLAGS = ${ASIOCPPFLAGS}
|
|
|
|
asio_sv_LDFLAGS = ${ASIOLDFLAGS}
|
|
|
|
asio_sv_LDADD = ${ASIOLDADD}
|
|
|
|
|
|
|
|
asio_sv2_SOURCES = asio-sv2.cc
|
|
|
|
asio_sv2_CPPFLAGS = ${ASIOCPPFLAGS}
|
|
|
|
asio_sv2_LDFLAGS = ${ASIOLDFLAGS}
|
|
|
|
asio_sv2_LDADD = ${ASIOLDADD}
|
2014-09-21 11:28:06 +02:00
|
|
|
|
2014-09-28 09:17:43 +02:00
|
|
|
asio_sv3_SOURCES = asio-sv3.cc
|
|
|
|
asio_sv3_CPPFLAGS = ${ASIOCPPFLAGS}
|
|
|
|
asio_sv3_LDFLAGS = ${ASIOLDFLAGS}
|
|
|
|
asio_sv3_LDADD = ${ASIOLDADD}
|
|
|
|
|
2014-09-21 11:28:06 +02:00
|
|
|
endif # ENABLE_ASIO_LIB
|
|
|
|
|
2012-03-28 19:13:33 +02:00
|
|
|
endif # ENABLE_EXAMPLES
|