.gitignore 249 B

123456789101112131415161718192021222324252627282930313233343536
  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. #
  27. # Backups / patches
  28. #
  29. *~
  30. *.orig
  31. *.rej
  32. /*.patch
  33. /*.diff