.gitignore 526 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. config.guess
  24. config.sub
  25. aclocal.m4
  26. configure
  27. libtool
  28. compile
  29. depcomp
  30. missing
  31. install-sh
  32. ltmain.sh
  33. # ignore all files ending with ~
  34. *.po
  35. *.o
  36. *.plo
  37. *.log
  38. *.la
  39. *.sub
  40. *.status
  41. *.guess
  42. *.in
  43. *.lo