.gitignore 383 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # ---> C
  2. # Object files
  3. *.o
  4. *.ko
  5. *.obj
  6. *.elf
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Libraries
  11. *.lib
  12. *.a
  13. *.la
  14. *.lo
  15. # Shared objects (inc. Windows DLLs)
  16. *.dll
  17. *.so
  18. *.so.*
  19. *.dylib
  20. # Executables
  21. *.exe
  22. *.out
  23. *.app
  24. *.i*86
  25. *.x86_64
  26. *.hex
  27. # Debug files
  28. *.dSYM/
  29. # ---> Vim
  30. [._]*.s[a-w][a-z]
  31. [._]s[a-w][a-z]
  32. *.un~
  33. Session.vim
  34. .netrwhist
  35. *~
  36. # ---> FlexBuilder
  37. bin/
  38. bin-debug/
  39. bin-release/