.gitignore 531 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Compiled Sources
  2. ###################
  3. *.o
  4. *.a
  5. *.elf
  6. *.bin
  7. *.map
  8. *.hex
  9. *.dis
  10. *.exe
  11. # Packages
  12. ############
  13. # Logs and Databases
  14. ######################
  15. *.log
  16. # VIM Swap Files
  17. ######################
  18. *.swp
  19. # Build directory
  20. ######################
  21. build/
  22. # Test failure outputs
  23. ######################
  24. tests/*.exp
  25. tests/*.out
  26. # Python cache files
  27. ######################
  28. __pycache__/
  29. *.pyc
  30. # Customized Makefile/project overrides
  31. ######################
  32. GNUmakefile
  33. user.props
  34. # Generated rst files
  35. ######################
  36. genrst/