1
0
Fork 0
mirror of https://github.com/tailix/autotools-project.git synced 2024-10-27 05:23:30 -04:00
autotools-project/.gitignore

66 lines
797 B
Text
Raw Normal View History

2022-06-06 21:09:06 -04:00
##########################
# Common generated files #
##########################
*.a
*.c.d
2022-06-11 06:53:45 -04:00
*.la
*.lo
2022-06-06 21:09:06 -04:00
*.o
.deps/
.dirstamp
2022-06-11 06:53:45 -04:00
.libs/
2022-06-06 21:09:06 -04:00
############################
# 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
2022-06-11 06:53:45 -04:00
/ltmain.sh
2022-06-06 21:09:06 -04:00
/missing
/test-driver
2022-06-11 06:53:45 -04:00
/m4/*
!/m4/.keep
2022-06-06 21:09:06 -04:00
# Custom
/Makefile.in
2022-06-07 00:10:53 -04:00
/include/Makefile.in
2022-06-06 21:09:06 -04:00
###########################################
# Only generated when configuring in root #
###########################################
/config.h
/config.log
/config.status
2022-06-11 06:53:45 -04:00
/libtool
2022-06-06 21:09:06 -04:00
/stamp-h1
/test-suite.log
/tests/test*.log
/tests/test*.trs
# Custom
/Makefile
2022-06-07 00:10:53 -04:00
/include/Makefile
2022-06-06 21:09:06 -04:00
/autotools-project