.gitignore 222 B

123456789101112131415
  1. # ignore all bin directories
  2. # matches "bin" in any subfolder
  3. bin/
  4. # ignore all target directories
  5. target/
  6. autom4te.cache
  7. # ignore Makefiles
  8. Makefile
  9. src/Makefile
  10. tests/Makefile
  11. # ignore all files ending with ~
  12. *.po
  13. *.o