diff options
| author | maddaat <git@maddaat.org> | 2026-04-10 18:20:08 +0400 |
|---|---|---|
| committer | maddaat <git@maddaat.org> | 2026-04-10 18:20:08 +0400 |
| commit | 06ec4982b1d3be9582d1be8cc93f7285ca948a05 (patch) | |
| tree | 041bd798c864c5998dfae39af7156b399641afd4 /.gitignore | |
| download | autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.gz autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.bz2 autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.lz autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.xz autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.zst autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.zip | |
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 |
