# nghttp2 - HTTP/2 C Library # Copyright (c) 2014 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. AM_CPPFLAGS = @DEFS@ EXTRA_DIST = CMakeLists.txt build_config.rb mruby/* if ENABLE_THIRD_PARTY noinst_LTLIBRARIES = liburl-parser.la liburl_parser_la_SOURCES = \ url-parser/url_parser.c \ url-parser/url_parser.h noinst_LTLIBRARIES += libllhttp.la libllhttp_la_SOURCES = \ llhttp/src/api.c \ llhttp/src/http.c \ llhttp/src/llhttp.c \ llhttp/include/llhttp.h libllhttp_la_CPPFLAGS = -I${srcdir}/llhttp/include if HAVE_NEVERBLEED noinst_LTLIBRARIES += libneverbleed.la libneverbleed_la_CPPFLAGS = @OPENSSL_CFLAGS@ libneverbleed_la_LIBADD = @OPENSSL_LIBS@ libneverbleed_la_SOURCES = neverbleed/neverbleed.c neverbleed/neverbleed.h endif # HAVE_NEVERBLEED if HAVE_MRUBY .PHONY: all-local clean mruby mruby: mkdir -p "${abs_builddir}/mruby/build" diff "${srcdir}/build_config.rb" "${abs_builddir}/mruby/build/build_config.rb" >& /dev/null || \ cp "${srcdir}/build_config.rb" "${abs_builddir}/mruby/build" MRUBY_CONFIG="${abs_builddir}/mruby/build/build_config.rb" \ BUILD_DIR="${abs_builddir}/mruby/build" \ INSTALL_DIR="${abs_builddir}/mruby/build/install/bin" \ CC="${CC}" CXX="$(firstword $(CXX))" LD="${LD}" \ CFLAGS="${CPPFLAGS} ${CFLAGS}" \ CXXFLAGS="$(wordlist 2, $(words $(CXX)), $(CXX)) ${CPPFLAGS} ${CXXFLAGS}" \ LDFLAGS="${LDFLAGS}" \ "${srcdir}/mruby/minirake" -f "${srcdir}/mruby/Rakefile" all-local: mruby clean-local: [ ! -f "${abs_builddir}/mruby/build/build_config.rb" ] || \ MRUBY_CONFIG="${abs_builddir}/mruby/build/build_config.rb" \ BUILD_DIR="${abs_builddir}/mruby/build" \ CC="${CC}" \ "${srcdir}/mruby/minirake" -f "${srcdir}/mruby/Rakefile" clean endif # HAVE_MRUBY endif # ENABLE_THIRD_PARTY