.gitignore 272 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #
  2. # Never ignore these
  3. #
  4. !.gitignore
  5. #
  6. # Generated files
  7. #
  8. *.os
  9. *.oS
  10. *.a
  11. *.i
  12. *.o
  13. *.depend
  14. lib/
  15. install_dir/
  16. .config*
  17. .*.dep
  18. /*.log
  19. cscope.*
  20. #
  21. # Debugging files
  22. #
  23. .gdb_history
  24. .gdbinit
  25. core
  26. *.c.[0-9][0-9][0-9]t.*
  27. #
  28. # Backups / patches
  29. #
  30. *~
  31. *.orig
  32. *.rej
  33. /*.patch
  34. /*.diff