.gitignore 258 B

1234567891011121314151617181920
  1. # ignore all bin directories
  2. # matches "bin" in any subfolder
  3. bin/
  4. m4
  5. build-test
  6. # ignore all target directories
  7. target/
  8. autom4te.cache
  9. # ignore Makefiles
  10. Makefile
  11. src/Makefile
  12. tests/Makefile
  13. # ignore all files ending with ~
  14. *.po
  15. *.o
  16. *.plo
  17. *.log
  18. *.la
  19. *.sub