.gitignore 834 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Object files
  2. # -------------------------
  3. *.o
  4. *.ko
  5. *.obj
  6. *.elf
  7. *.class
  8. # Libraries
  9. # -------------------------
  10. *.lib
  11. *.a
  12. # Shared objects
  13. # -------------------------
  14. *.dll
  15. *.so
  16. *.so.*
  17. *.dylib
  18. # Executables
  19. # -------------------------
  20. *.exe
  21. *.out
  22. *.app
  23. *.i*86
  24. *.x86_64
  25. *.hex
  26. *.ctxt
  27. # =========================
  28. # Operating System Files
  29. # =========================
  30. # Linux
  31. # -------------------------
  32. .directory
  33. # OSX
  34. # -------------------------
  35. .DS_Store
  36. .AppleDouble
  37. .LSOverride
  38. # Icon must end, with two \r.
  39. Icon
  40. # Thumbnails
  41. ._*
  42. # Files that might appear on external disk
  43. .Spotlight-V100
  44. .Trashes
  45. # Windows
  46. # -------------------------
  47. # Windows image file caches
  48. Thumbs.db
  49. ehthumbs.db
  50. # Folder config file
  51. Desktop.ini
  52. # Recycle Bin used on file shares
  53. $RECYCLE.BIN/
  54. # Windows Installer files
  55. *.cab
  56. *.msi
  57. *.msm
  58. *.msp