.gitignore 622 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # ignore all bin directories
  2. # matches "bin" in any subfolder
  3. bin/
  4. m4/
  5. build-test/
  6. .deps/
  7. .libs/
  8. lib/*
  9. lib/
  10. # ignore all target directories
  11. target/
  12. autom4te.cache/
  13. #ignore test driver
  14. test-driver
  15. #ignore compiled tests
  16. tests/check_stack
  17. tests/check_stack.exe
  18. tests/check_stack.trs
  19. # ignore Makefiles
  20. Makefile
  21. src/Makefile
  22. tests/Makefile
  23. Makefile.in
  24. src/Makefile.in
  25. tests/Makefile.in
  26. #ignore autoconf files
  27. config.log
  28. config.status
  29. config.guess
  30. config.sub
  31. aclocal.m4
  32. configure
  33. libtool
  34. compile
  35. depcomp
  36. missing
  37. install-sh
  38. ltmain.sh
  39. # ignore all files ending with ~
  40. *.po
  41. *.o
  42. *.plo
  43. *.log
  44. *.la
  45. *.sub
  46. *.status
  47. *.guess
  48. *.in
  49. *.lo