.gitignore 616 B

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