12345678910111213141516171819202122 |
- # ignore all bin directories
- # matches "bin" in any subfolder
- bin/
- m4/
- build-test/
- # ignore all target directories
- target/
- autom4te.cache/
- # ignore Makefiles
- Makefile
- src/Makefile
- tests/Makefile
- # ignore all files ending with ~
- *.po
- *.o
- *.plo
- *.log
- *.la
- *.sub
- *.status
- *.guess
|