.gitignore 465 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # ignore all bin directories
  2. # matches "bin" in any subfolder
  3. bin/
  4. m4/
  5. build-test/
  6. .deps/
  7. .libs/
  8. # ignore all target directories
  9. target/
  10. autom4te.cache/
  11. #ignore test driver
  12. test-driver
  13. # ignore Makefiles
  14. Makefile
  15. src/Makefile
  16. tests/Makefile
  17. Makefile.in
  18. src/Makefile.in
  19. tests/Makefile.in
  20. #ignore autoconf files
  21. config.log
  22. config.status
  23. aclocal.m4
  24. configure
  25. libtool
  26. compile
  27. # ignore all files ending with ~
  28. *.po
  29. *.o
  30. *.plo
  31. *.log
  32. *.la
  33. *.sub
  34. *.status
  35. *.guess
  36. *.in
  37. *.lo