.gitignore 463 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # ---> Autotools
  2. # http://www.gnu.org/software/automake
  3. Makefile.in
  4. # http://www.gnu.org/software/autoconf
  5. *autom4te.cache
  6. *aclocal.m4
  7. *compile
  8. *configure
  9. *depcomp
  10. *install-sh
  11. *missing
  12. *stamp-h1
  13. # ---> C
  14. # Object files
  15. *.o
  16. *.ko
  17. *.obj
  18. *.elf
  19. # Precompiled Headers
  20. *.gch
  21. *.pch
  22. # Libraries
  23. *.lib
  24. *.a
  25. *.la
  26. *.lo
  27. # Shared objects (inc. Windows DLLs)
  28. *.dll
  29. *.so
  30. *.so.*
  31. *.dylib
  32. # Executables
  33. *.exe
  34. *.out
  35. *.app
  36. *.i*86
  37. *.x86_64
  38. *.hex
  39. # Debug files
  40. *.dSYM/
  41. .svn/*