Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 1 | # Template from: |
| 2 | # https://github.com/github/gitignore/blob/master/Autotools.gitignore |
| 3 | |
| 4 | # http://www.gnu.org/software/automake |
| 5 | |
| 6 | Makefile.in |
| 7 | /ar-lib |
| 8 | /mdate-sh |
| 9 | /py-compile |
| 10 | /test-driver |
| 11 | /ylwrap |
| 12 | |
Patrick Venture | a2efc76 | 2019-03-06 13:23:42 -0800 | [diff] [blame] | 13 | # Code Coverage |
| 14 | *.gcda |
| 15 | *.gcno |
| 16 | *.trs |
| 17 | *-coverage* |
| 18 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 19 | # http://www.gnu.org/software/autoconf |
| 20 | |
| 21 | /autom4te.cache |
| 22 | /autoscan.log |
| 23 | /autoscan-*.log |
| 24 | /aclocal.m4 |
William A. Kennington III | 374350d | 2019-03-15 14:14:07 -0700 | [diff] [blame] | 25 | /aminclude_static.am |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 26 | /compile |
| 27 | /config.guess |
| 28 | /config.h.in |
| 29 | /config.sub |
| 30 | /configure |
| 31 | /configure.scan |
| 32 | /depcomp |
| 33 | /install-sh |
| 34 | /missing |
| 35 | /stamp-h1 |
Patrick Venture | 9e0c1af | 2018-12-03 09:10:51 -0800 | [diff] [blame] | 36 | /m4 |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 37 | |
| 38 | # https://www.gnu.org/software/libtool/ |
| 39 | |
| 40 | /ltmain.sh |
| 41 | |
| 42 | # http://www.gnu.org/software/texinfo |
| 43 | |
| 44 | /texinfo.tex |
| 45 | |
| 46 | # Repo Specific Items |
| 47 | *.o |
Patrick Venture | 0f11545 | 2018-09-27 14:24:21 -0700 | [diff] [blame] | 48 | *.lo |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 49 | /config.h |
| 50 | /config.h.in~ |
| 51 | /config.log |
| 52 | /config.status |
| 53 | Makefile |
| 54 | .deps |
| 55 | .dirstamp |
| 56 | /lib* |
| 57 | .libs/ |
| 58 | /*-libtool |
| 59 | /ipmid |
| 60 | .project |
| 61 | /test/*_unittest |
| 62 | /test/*.log |
| 63 | /test/*.trs |
| 64 | |
| 65 | # ignore vim swap files |
| 66 | .*.sw* |
| 67 | # failures from patch |
| 68 | *.orig |
| 69 | *.rej |
| 70 | # backup files from some editors |
| 71 | *~ |
| 72 | .cscope/ |
| 73 | build/ |