1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # ignore all bin directories
- # matches "bin" in any subfolder
- bin/
- m4/
- build-test/
- .deps/
- .libs/
- # ignore all target directories
- target/
- autom4te.cache/
- #ignore test driver
- test-driver
- # ignore Makefiles
- Makefile
- src/Makefile
- tests/Makefile
- Makefile.in
- src/Makefile.in
- tests/Makefile.in
- #ignore autoconf files
- config.log
- config.status
- config.guess
- config.sub
- aclocal.m4
- configure
- libtool
- compile
- depcomp
- missing
- install-sh
- ltmain.sh
- # ignore all files ending with ~
- *.po
- *.o
- *.plo
- *.log
- *.la
- *.sub
- *.status
- *.guess
- *.in
- *.lo
|