.gitignore 589 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 compiled tests
  14. tests/check_stack
  15. tests/check_stack.trs
  16. # ignore Makefiles
  17. Makefile
  18. src/Makefile
  19. tests/Makefile
  20. Makefile.in
  21. src/Makefile.in
  22. tests/Makefile.in
  23. #ignore autoconf files
  24. config.log
  25. config.status
  26. config.guess
  27. config.sub
  28. aclocal.m4
  29. configure
  30. libtool
  31. compile
  32. depcomp
  33. missing
  34. install-sh
  35. ltmain.sh
  36. # ignore all files ending with ~
  37. *.po
  38. *.o
  39. *.plo
  40. *.log
  41. *.la
  42. *.sub
  43. *.status
  44. *.guess
  45. *.in
  46. *.lo