.gitignore 401 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # emacs-generated files.
  2. *~
  3. \#*\#
  4. # autoconf/automake/autotools shit.
  5. stamp-h1
  6. compile
  7. depcomp
  8. aclocal.m4
  9. autom4te.cache
  10. install-sh
  11. Makefile.in
  12. Makefile
  13. config*
  14. .deps
  15. /missing
  16. *.Po
  17. # tests shit
  18. *.trs
  19. *.log
  20. test-driver
  21. # unittests
  22. test_*
  23. !test_*.c
  24. # binaries, libraries, and objects
  25. *.[oa]
  26. qa
  27. gen
  28. unittest
  29. # latex-generated files.
  30. book/*.pdf
  31. book/*.out
  32. book/*.log
  33. book/*.aux
  34. book/*.idx
  35. book/*.toc