.gitignore 408 B

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