.gitignore 472 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. *.diff
  2. *.patch
  3. *.orig
  4. *.rej
  5. *~
  6. .#*
  7. *#
  8. *.flt
  9. *.gmo
  10. *.info
  11. *.la
  12. *.lo
  13. *.o
  14. *.pyc
  15. *.tmp
  16. .deps
  17. .libs
  18. autom4te.cache
  19. config.cache
  20. config.h
  21. config.intl
  22. config.log
  23. config.status
  24. libtool
  25. POTFILES
  26. *-POTFILES
  27. TAGS
  28. TAGS.sub
  29. .local.vimrc
  30. .lvimrc
  31. .clang-format
  32. .gdbinit
  33. .gdb_history
  34. # ignore core files, but not java/net/protocol/core/
  35. core
  36. !core/
  37. lost+found
  38. # ignore ./contrib/gcc_update output
  39. LAST_UPDATED
  40. REVISION
  41. # ignore in-tree prerequisites
  42. /mpfr*
  43. /mpc*
  44. /gmp*
  45. /isl*