1234567891011121314151617181920 |
- # 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
|