Refactor .gitignore files
This commit is contained in:
parent
ebbe065716
commit
ccea4d42b5
|
@ -1,14 +1,18 @@
|
||||||
|
# emacs backup file
|
||||||
*~
|
*~
|
||||||
*.o
|
|
||||||
*.lo
|
# autotools
|
||||||
*.la
|
*.la
|
||||||
depcomp
|
*.lo
|
||||||
*.m4
|
*.m4
|
||||||
|
*.o
|
||||||
|
.deps/
|
||||||
|
.libs/
|
||||||
|
INSTALL
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
libtool
|
|
||||||
missing
|
|
||||||
autom4te.cache/
|
autom4te.cache/
|
||||||
|
compile
|
||||||
config.guess
|
config.guess
|
||||||
config.h
|
config.h
|
||||||
config.h.in
|
config.h.in
|
||||||
|
@ -16,37 +20,14 @@ config.log
|
||||||
config.status
|
config.status
|
||||||
config.sub
|
config.sub
|
||||||
configure
|
configure
|
||||||
|
depcomp
|
||||||
install-sh
|
install-sh
|
||||||
.deps/
|
libtool
|
||||||
.libs
|
|
||||||
lib/includes/nghttp2/nghttp2ver.h
|
|
||||||
lib/libnghttp2.pc
|
|
||||||
src/libnghttp2_asio.pc
|
|
||||||
ltmain.sh
|
ltmain.sh
|
||||||
|
missing
|
||||||
stamp-h1
|
stamp-h1
|
||||||
.deps/
|
|
||||||
INSTALL
|
|
||||||
.DS_STORE
|
|
||||||
compile
|
|
||||||
test-driver
|
test-driver
|
||||||
.dirstamp
|
|
||||||
doc/index.rst
|
# test logs generated by `make check`
|
||||||
doc/nghttp2.h.rst
|
*.log
|
||||||
doc/nghttp2ver.h.rst
|
*.trs
|
||||||
doc/package_README.rst
|
|
||||||
doc/tutorial-client.rst
|
|
||||||
doc/tutorial-server.rst
|
|
||||||
doc/nghttpx-howto.rst
|
|
||||||
doc/h2load-howto.rst
|
|
||||||
doc/tutorial-hpack.rst
|
|
||||||
doc/python-apiref.rst
|
|
||||||
doc/building-android-binary.rst
|
|
||||||
doc/asio_http2.h.rst
|
|
||||||
doc/asio_http2_server.h.rst
|
|
||||||
doc/asio_http2_client.h.rst
|
|
||||||
doc/libnghttp2_asio.rst
|
|
||||||
doc/contribute.rst
|
|
||||||
python/setup.py
|
|
||||||
python/dist
|
|
||||||
python/MANIFEST
|
|
||||||
integration-tests/config.go
|
|
||||||
|
|
|
@ -1,3 +1,20 @@
|
||||||
|
# generated files
|
||||||
apiref.rst
|
apiref.rst
|
||||||
|
asio_http2.h.rst
|
||||||
|
asio_http2_client.h.rst
|
||||||
|
asio_http2_server.h.rst
|
||||||
|
building-android-binary.rst
|
||||||
conf.py
|
conf.py
|
||||||
manual
|
contribute.rst
|
||||||
|
h2load-howto.rst
|
||||||
|
index.rst
|
||||||
|
libnghttp2_asio.rst
|
||||||
|
manual/
|
||||||
|
nghttp2.h.rst
|
||||||
|
nghttp2ver.h.rst
|
||||||
|
nghttpx-howto.rst
|
||||||
|
package_README.rst
|
||||||
|
python-apiref.rst
|
||||||
|
tutorial-client.rst
|
||||||
|
tutorial-hpack.rst
|
||||||
|
tutorial-server.rst
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
# generated files
|
||||||
|
config.go
|
|
@ -0,0 +1,3 @@
|
||||||
|
# generated files
|
||||||
|
includes/nghttp2/nghttp2ver.h
|
||||||
|
libnghttp2.pc
|
|
@ -0,0 +1,4 @@
|
||||||
|
# generated files
|
||||||
|
MANIFEST
|
||||||
|
dist/
|
||||||
|
setup.py
|
|
@ -1,12 +1,16 @@
|
||||||
|
# generated files
|
||||||
|
libnghttp2_asio.pc
|
||||||
|
|
||||||
|
# programs
|
||||||
|
deflatehd
|
||||||
|
h2load
|
||||||
|
inflatehd
|
||||||
nghttp
|
nghttp
|
||||||
nghttpd
|
nghttpd
|
||||||
nghttpx
|
nghttpx
|
||||||
nghttpx-unittest
|
|
||||||
nghttpx-unittest.log
|
# build
|
||||||
nghttpx-unittest.trs
|
|
||||||
test-suite.log
|
|
||||||
.dirstamp
|
|
||||||
libnghttpx.a
|
libnghttpx.a
|
||||||
deflatehd
|
|
||||||
inflatehd
|
# tests
|
||||||
h2load
|
nghttpx-unittest
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
test-suite.log
|
# tests
|
||||||
failmalloc
|
failmalloc
|
||||||
failmalloc.log
|
|
||||||
failmalloc.trs
|
|
||||||
main
|
main
|
||||||
main.log
|
|
||||||
main.trs
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
.dirstamp
|
Loading…
Reference in New Issue