.gitignore 388 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # ---> Linux
  2. *~
  3. # KDE directory preferences
  4. .directory
  5. # Linux trash folder which might appear on any partition or disk
  6. .Trash-*
  7. # ---> C
  8. # Object files
  9. *.o
  10. *.ko
  11. *.obj
  12. *.elf
  13. # Precompiled Headers
  14. *.gch
  15. *.pch
  16. # Libraries
  17. *.lib
  18. *.a
  19. *.la
  20. *.lo
  21. # Shared objects (inc. Windows DLLs)
  22. *.dll
  23. *.so
  24. *.so.*
  25. *.dylib
  26. # Executables
  27. *.exe
  28. *.out
  29. *.app
  30. *.i*86
  31. *.x86_64
  32. *.hex
  33. # Debug files
  34. *.dSYM/