.gitignore 278 B

12345678910111213141516171819202122
  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
  20. *.status
  21. *.guess