1234567891011121314151617181920212223 |
- # 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
- *.in
|