.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ## Copyright (C) 2017 Jeremiah Orians
  2. ## This file is part of M2-Planet.
  3. ##
  4. ## M2-Planet is free software: you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation, either version 3 of the License, or
  7. ## (at your option) any later version.
  8. ##
  9. ## M2-Planet is distributed in the hope that it will be useful,
  10. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ## GNU General Public License for more details.
  13. ##
  14. ## You should have received a copy of the GNU General Public License
  15. ## along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
  16. # Prerequisites
  17. *.d
  18. # Object files
  19. *.o
  20. *.ko
  21. *.obj
  22. *.elf
  23. # Linker output
  24. *.ilk
  25. *.map
  26. *.exp
  27. # Precompiled Headers
  28. *.gch
  29. *.pch
  30. # Libraries
  31. *.lib
  32. *.a
  33. *.la
  34. *.lo
  35. # Shared objects (inc. Windows DLLs)
  36. *.dll
  37. *.so
  38. *.so.*
  39. *.dylib
  40. # Executables
  41. *.exe
  42. *.out
  43. *.app
  44. *.i*86
  45. *.x86_64
  46. *.hex
  47. # Debug files
  48. *.dSYM/
  49. *.su
  50. *.idb
  51. *.pdb
  52. # Kernel Module Compile Results
  53. *.mod*
  54. *.cmd
  55. .tmp_versions/
  56. modules.order
  57. Module.symvers
  58. Mkfile.old
  59. dkms.conf
  60. # Directories storing data that should be ignored
  61. bin/
  62. temp/