2014-03-30 12:09:21 +02:00
|
|
|
# nghttp2 - HTTP/2 C Library
|
2012-01-17 16:53:12 +01:00
|
|
|
|
2013-09-03 09:02:34 +02:00
|
|
|
# Copyright (c) 2012, 2013 Tatsuhiro Tsujikawa
|
2012-01-17 16:53:12 +01:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
SUBDIRS = includes
|
|
|
|
|
|
|
|
AM_CFLAGS = -Wall
|
2012-03-23 16:07:56 +01:00
|
|
|
AM_CPPFLAGS = -I$(srcdir)/includes -I$(builddir)/includes @DEFS@
|
2012-01-17 16:53:12 +01:00
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2013-07-12 17:19:03 +02:00
|
|
|
pkgconfig_DATA = libnghttp2.pc
|
2012-01-17 16:53:12 +01:00
|
|
|
DISTCLEANFILES = $(pkgconfig_DATA)
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
lib_LTLIBRARIES = libnghttp2.la
|
2012-01-17 16:53:12 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
OBJECTS = nghttp2_pq.c nghttp2_map.c nghttp2_queue.c \
|
2014-03-11 13:20:51 +01:00
|
|
|
nghttp2_frame.c \
|
2014-03-10 17:47:38 +01:00
|
|
|
nghttp2_buf.c \
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_stream.c nghttp2_outbound_item.c \
|
|
|
|
nghttp2_session.c nghttp2_submit.c \
|
|
|
|
nghttp2_helper.c \
|
2014-05-06 16:10:50 +02:00
|
|
|
nghttp2_npn.c \
|
2013-10-14 16:38:12 +02:00
|
|
|
nghttp2_hd.c nghttp2_hd_huffman.c nghttp2_hd_huffman_data.c \
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_version.c \
|
2014-04-04 14:57:47 +02:00
|
|
|
nghttp2_priority_spec.c \
|
|
|
|
nghttp2_option.c
|
2012-01-17 16:53:12 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
HFILES = nghttp2_pq.h nghttp2_int.h nghttp2_map.h nghttp2_queue.h \
|
2014-03-11 13:20:51 +01:00
|
|
|
nghttp2_frame.h \
|
2014-03-10 17:47:38 +01:00
|
|
|
nghttp2_buf.h \
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_session.h nghttp2_helper.h nghttp2_stream.h nghttp2_int.h \
|
2014-05-06 16:10:50 +02:00
|
|
|
nghttp2_npn.h \
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_submit.h nghttp2_outbound_item.h \
|
2013-07-19 09:50:31 +02:00
|
|
|
nghttp2_net.h \
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_hd.h nghttp2_hd_huffman.h \
|
2014-04-04 14:57:47 +02:00
|
|
|
nghttp2_priority_spec.h \
|
|
|
|
nghttp2_option.h
|
2012-01-17 18:10:22 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
libnghttp2_la_SOURCES = $(HFILES) $(OBJECTS)
|
|
|
|
libnghttp2_la_LDFLAGS = -no-undefined \
|
2012-01-17 16:53:12 +01:00
|
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|