diff --git a/Makefile.am b/Makefile.am index 1196473e..831b317d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,7 @@ # 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 = lib third-party src examples python tests integration-tests \ - doc contrib + doc contrib script ACLOCAL_AMFLAGS = -I m4 @@ -41,5 +41,3 @@ clang-format: $${CLANGFORMAT} -i lib/*.{c,h} lib/includes/nghttp2/*.h \ src/*.{c,cc,h} src/includes/nghttp2/*.h examples/*.{c,cc} \ tests/*.{c,h} - -dist_pkgdata_SCRIPTS = script/fetch-ocsp-response diff --git a/configure.ac b/configure.ac index 9455ee2b..7725754e 100644 --- a/configure.ac +++ b/configure.ac @@ -695,6 +695,7 @@ AC_CONFIG_FILES([ doc/asio_http2_client.h.rst doc/contribute.rst contrib/Makefile + script/Makefile ]) AC_OUTPUT diff --git a/script/Makefile.am b/script/Makefile.am new file mode 100644 index 00000000..fe5d3652 --- /dev/null +++ b/script/Makefile.am @@ -0,0 +1,25 @@ +# nghttp2 - HTTP/2 C Library + +# Copyright (c) 2015 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. + +EXTRA_DIST = README.rst +dist_pkgdata_SCRIPTS = fetch-ocsp-response