2014-03-30 12:09:21 +02:00
|
|
|
# nghttp2 - HTTP/2 C Library
|
2012-01-17 16:53:12 +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.
|
2015-01-19 17:14:22 +01:00
|
|
|
SUBDIRS = lib third-party src examples python tests integration-tests \
|
2015-06-06 16:32:32 +02:00
|
|
|
doc contrib script
|
2012-01-17 16:53:12 +01:00
|
|
|
|
2015-07-14 18:16:56 +02:00
|
|
|
# Now with python setuptools, make uninstall will leave many files we
|
|
|
|
# cannot easily remove (e.g., easy-install.pth). Disable it for
|
|
|
|
# distcheck rule.
|
|
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = --disable-python-bindings
|
|
|
|
|
2012-01-17 16:53:12 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2012-04-25 15:27:50 +02:00
|
|
|
|
|
|
|
dist_doc_DATA = README.rst
|
2012-08-01 19:17:20 +02:00
|
|
|
|
2014-10-19 14:51:43 +02:00
|
|
|
EXTRA_DIST = nghttpx.conf.sample proxy.pac.sample android-config android-make \
|
|
|
|
Dockerfile.android
|
2014-11-27 15:06:32 +01:00
|
|
|
|
2014-12-01 13:13:56 +01:00
|
|
|
.PHONY: clang-format
|
2014-11-27 15:06:32 +01:00
|
|
|
|
|
|
|
# Format source files using clang-format. Don't format source files
|
|
|
|
# under third-party directory since we are not responsible for thier
|
|
|
|
# coding style.
|
|
|
|
clang-format:
|
|
|
|
CLANGFORMAT=`git config --get clangformat.binary`; \
|
|
|
|
test -z $${CLANGFORMAT} && CLANGFORMAT="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}
|