1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
# Matches ALL Makefile and Makefile.in occurrences
Makefile
Makefile.in
# ...
_*
.deps/
.libs/
*.o
*.a
*.lo
*.la
*~
*.sw[op]
*.trs
*.log
# Various auto-tools artifacts
/aclocal.m4
/autom4te.cache/
/build-aux
/compile
/config.guess
/config.h
/config.h.in
/config.status
/config.sub
/configure
/configure.lineno
/depcomp
/install-sh
/libtool
/ltmain.sh
/m4/libtool.m4
/m4/ltoptions.m4
/m4/ltsugar.m4
/m4/ltversion.m4
/m4/lt~obsolete.m4
/missing
/stamp-h1
/varnishapi.pc
/varnishapi-uninstalled.pc
TAGS
tags
cscope.*out
.dirstamp
# Default vcl made from bin/varnishd/default.vcl
/bin/varnishd/builtin_vcl.c
/etc/builtin.vcl
# Various auto-generated code snippets
/bin/varnishd/vhp_hufdec.h
/bin/varnishd/vhp_gen_hufdec
/bin/varnishtest/vtc_h2_dectbl.h
/include/vcl.h
/include/vrt_obj.h
/include/vmod_abi.h
/include/tbl/vcl_returns.h
/include/tbl/vrt_stv_var.h
/include/tbl/vcl_context.h
/include/vcs_version.h
/lib/libvcc/vcc_fixed_token.c
/lib/libvcc/vcc_obj.c
/lib/libvcc/vcc_token_defs.h
/lib/libvcc/vcc_types.h
/lib/libvarnishapi/vsl2rst
/lib/libvarnishapi/vxp_fixed_token.c
/lib/libvarnishapi/vxp_tokens.h
# Stats
/lib/libvsc/VSC_*.c
/lib/libvsc/VSC_*.h
/lib/libvsc/VSC_*.rst
/lib/libvsc/counters.rst
# Misc. generated files for included vmods.
/vmod/VSC_*.c
/vmod/VSC_*.h
/vmod/vcc_*_if.c
/vmod/vcc_*_if.h
/vmod/vmod_*.rst
/vmod/vmod_vcs_version.txt
# Man-files and binaries
/man/*.1
/man/*.3
/man/*.7
/doc/sphinx/include
/bin/varnishadm/varnishadm
/bin/varnishd/varnishd
/bin/varnishhist/varnishhist
/bin/varnishlog/varnishlog
/bin/varnishncsa/varnishncsa
/bin/varnishstat/varnishstat
/bin/varnishstat/varnishstat_help_gen
/bin/varnishstat/varnishstat_curses_help.c
/bin/varnishstat/vsc2rst
/bin/varnishtest/teken_state.h
/bin/varnishtest/varnishtest
/bin/varnishtop/varnishtop
# Doc-stuff generated from xml
/doc/*.html
/doc/sphinx/build/
/doc/sphinx/conf.py
/doc/sphinx/reference/vmod_*.generated.rst
# graphviz-generated
/doc/graphviz/*.pdf
# NetBeans insists on this
/nbproject/private/
# Test droppings
/bin/varnishd/*_test
/bin/varnishtest/tests/*.log-t
/include/vrt_test*
/include/vbm_test
/lib/libvarnish/*_test
/lib/libvarnishapi/*_test
# GCOV droppings
*.gcda
*.gcno
# vtc-bisect.sh default vtc
/bisect.vtc
# vtest.sh droppings
/tools/tmp/
/tools/_vtest_tmp/
/tools/varnish-cache/
/tools/vt_key
/tools/vt_key.pub
# fuzzers
/bin/varnishd/esi_parse_fuzzer
# Coverity output
/cov-int
/myproject.tgz
# Witness droppings
witness.dot
witness.svg
# Flexelint droppings
_.fl
_.fl.old
|