diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0087de4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,74 @@ +################################ +# A place to build out-of-tree # +################################ + +/build/* +!/build/.keep + +########################## +# Common generated files # +########################## + +*.a +*.c.d +*.core +*.la +*.lo +*.o + +.deps/ +.dirstamp +.libs/ + +############################ +# Always generated in root # +############################ + +/INSTALL +/aclocal.m4 +/ar-lib +/autom4te.cache/ +/autoscan.log +/compile +/config.guess +/config.h.in +/config.h.in~ +/config.sub +/configure +/configure.ac~ +/configure~ +/depcomp +/install-sh +/ltmain.sh +/missing +/test-driver + +# Custom + +/Makefile.in +/include/Makefile.in +/tests/Makefile.in + +########################################### +# Only generated when configuring in root # +########################################### + +/config.h +/config.log +/config.status +/libtool +/stamp-h1 + +# Test subdirs + +/tests/test-suite.log +/tests/test*.log +/tests/test*.trs + +# Custom + +/foobar + +/Makefile +/include/Makefile +/tests/Makefile |
