.gitignore 205 B

123456789101112131415161718
  1. #ignore backup files
  2. backup/
  3. icons/
  4. #ignore files generated by the compiler
  5. lib/
  6. *.compiled
  7. *.o
  8. *.a
  9. *.or
  10. *.ppu
  11. #ignore debug information files
  12. *.dbg
  13. #exclude executable output in windows
  14. *.exe
  15. TurboBird