Commit f4800a020eaf6c646f564192161f506943552abf

Authored by Craig McQueen
1 parent 09b7a730

Initial .gitignore

Showing 1 changed file with 24 additions and 0 deletions
.gitignore 0 → 100644
  1 +# Ignore objects and archives, anywhere in the tree.
  2 +*.[oa]
  3 +*.lo
  4 +*.la
  5 +*.ko
  6 +
  7 +# Other build output
  8 +*.mod.c
  9 +*.o.cmd
  10 +*.ko.cmd
  11 +/module/Module.symvers
  12 +/module/modules.order
  13 +/module/.tmp_versions
  14 +
  15 +# Ignore backup files
  16 +*~
  17 +
  18 +# Ignore Eclipse project files
  19 +.cproject
  20 +.project
  21 +.autotools
  22 +.settings
  23 +.pydevproject
  24 +
... ...