.gitignore 611 B

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