.gitignore 276 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # ---> C
  2. # bin folder
  3. bin/*
  4. # Object files
  5. *.o
  6. *.ko
  7. *.obj
  8. *.elf
  9. # Precompiled Headers
  10. *.gch
  11. *.pch
  12. # Libraries
  13. *.lib
  14. *.a
  15. *.la
  16. *.lo
  17. # Shared objects (inc. Windows DLLs)
  18. *.dll
  19. *.so
  20. *.so.*
  21. *.dylib
  22. # Executables
  23. *.exe
  24. *.out
  25. *.app
  26. *.i*86
  27. *.x86_64
  28. *.hex
  29. # Debug files
  30. *.dSYM/