11cb0ef41Sopenharmony_ci# nghttp2 - HTTP/2 C Library 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ci# Copyright (c) 2012, 2013 Tatsuhiro Tsujikawa 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ci# Permission is hereby granted, free of charge, to any person obtaining 61cb0ef41Sopenharmony_ci# a copy of this software and associated documentation files (the 71cb0ef41Sopenharmony_ci# "Software"), to deal in the Software without restriction, including 81cb0ef41Sopenharmony_ci# without limitation the rights to use, copy, modify, merge, publish, 91cb0ef41Sopenharmony_ci# distribute, sublicense, and/or sell copies of the Software, and to 101cb0ef41Sopenharmony_ci# permit persons to whom the Software is furnished to do so, subject to 111cb0ef41Sopenharmony_ci# the following conditions: 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ci# The above copyright notice and this permission notice shall be 141cb0ef41Sopenharmony_ci# included in all copies or substantial portions of the Software. 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_ci# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 171cb0ef41Sopenharmony_ci# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 181cb0ef41Sopenharmony_ci# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 191cb0ef41Sopenharmony_ci# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 201cb0ef41Sopenharmony_ci# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 211cb0ef41Sopenharmony_ci# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 221cb0ef41Sopenharmony_ci# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 231cb0ef41Sopenharmony_ciSUBDIRS = includes 241cb0ef41Sopenharmony_ci 251cb0ef41Sopenharmony_ciEXTRA_DIST = Makefile.msvc CMakeLists.txt version.rc.in 261cb0ef41Sopenharmony_ci 271cb0ef41Sopenharmony_ciAM_CFLAGS = $(WARNCFLAGS) $(EXTRACFLAG) 281cb0ef41Sopenharmony_ciAM_CPPFLAGS = -I$(srcdir)/includes -I$(builddir)/includes -DBUILDING_NGHTTP2 \ 291cb0ef41Sopenharmony_ci @DEFS@ 301cb0ef41Sopenharmony_ciAM_LDFLAGS = @LIBTOOL_LDFLAGS@ 311cb0ef41Sopenharmony_ci 321cb0ef41Sopenharmony_cipkgconfigdir = $(libdir)/pkgconfig 331cb0ef41Sopenharmony_cipkgconfig_DATA = libnghttp2.pc 341cb0ef41Sopenharmony_ciDISTCLEANFILES = $(pkgconfig_DATA) 351cb0ef41Sopenharmony_ci 361cb0ef41Sopenharmony_cilib_LTLIBRARIES = libnghttp2.la 371cb0ef41Sopenharmony_ci 381cb0ef41Sopenharmony_ciOBJECTS = nghttp2_pq.c nghttp2_map.c nghttp2_queue.c \ 391cb0ef41Sopenharmony_ci nghttp2_frame.c \ 401cb0ef41Sopenharmony_ci nghttp2_buf.c \ 411cb0ef41Sopenharmony_ci nghttp2_stream.c nghttp2_outbound_item.c \ 421cb0ef41Sopenharmony_ci nghttp2_session.c nghttp2_submit.c \ 431cb0ef41Sopenharmony_ci nghttp2_helper.c \ 441cb0ef41Sopenharmony_ci nghttp2_npn.c \ 451cb0ef41Sopenharmony_ci nghttp2_hd.c nghttp2_hd_huffman.c nghttp2_hd_huffman_data.c \ 461cb0ef41Sopenharmony_ci nghttp2_version.c \ 471cb0ef41Sopenharmony_ci nghttp2_priority_spec.c \ 481cb0ef41Sopenharmony_ci nghttp2_option.c \ 491cb0ef41Sopenharmony_ci nghttp2_callbacks.c \ 501cb0ef41Sopenharmony_ci nghttp2_mem.c \ 511cb0ef41Sopenharmony_ci nghttp2_http.c \ 521cb0ef41Sopenharmony_ci nghttp2_rcbuf.c \ 531cb0ef41Sopenharmony_ci nghttp2_extpri.c \ 541cb0ef41Sopenharmony_ci nghttp2_ratelim.c \ 551cb0ef41Sopenharmony_ci nghttp2_time.c \ 561cb0ef41Sopenharmony_ci nghttp2_debug.c \ 571cb0ef41Sopenharmony_ci sfparse.c 581cb0ef41Sopenharmony_ci 591cb0ef41Sopenharmony_ciHFILES = nghttp2_pq.h nghttp2_int.h nghttp2_map.h nghttp2_queue.h \ 601cb0ef41Sopenharmony_ci nghttp2_frame.h \ 611cb0ef41Sopenharmony_ci nghttp2_buf.h \ 621cb0ef41Sopenharmony_ci nghttp2_session.h nghttp2_helper.h nghttp2_stream.h nghttp2_int.h \ 631cb0ef41Sopenharmony_ci nghttp2_npn.h \ 641cb0ef41Sopenharmony_ci nghttp2_submit.h nghttp2_outbound_item.h \ 651cb0ef41Sopenharmony_ci nghttp2_net.h \ 661cb0ef41Sopenharmony_ci nghttp2_hd.h nghttp2_hd_huffman.h \ 671cb0ef41Sopenharmony_ci nghttp2_priority_spec.h \ 681cb0ef41Sopenharmony_ci nghttp2_option.h \ 691cb0ef41Sopenharmony_ci nghttp2_callbacks.h \ 701cb0ef41Sopenharmony_ci nghttp2_mem.h \ 711cb0ef41Sopenharmony_ci nghttp2_http.h \ 721cb0ef41Sopenharmony_ci nghttp2_rcbuf.h \ 731cb0ef41Sopenharmony_ci nghttp2_extpri.h \ 741cb0ef41Sopenharmony_ci nghttp2_ratelim.h \ 751cb0ef41Sopenharmony_ci nghttp2_time.h \ 761cb0ef41Sopenharmony_ci nghttp2_debug.h \ 771cb0ef41Sopenharmony_ci sfparse.h 781cb0ef41Sopenharmony_ci 791cb0ef41Sopenharmony_cilibnghttp2_la_SOURCES = $(HFILES) $(OBJECTS) 801cb0ef41Sopenharmony_cilibnghttp2_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined \ 811cb0ef41Sopenharmony_ci -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) 82