.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. # suppress compiler/linker output
  2. *.[oa]
  3. *.obj
  4. *.l[oa]
  5. [Dd]ebug/
  6. [Rr]elease/
  7. /MSVC_*
  8. .libs/
  9. # release files
  10. /libtomcrypt-*
  11. /crypt-*
  12. # suppress output of build process
  13. gcc_[12].txt
  14. testok.txt
  15. test_*.txt
  16. tv.txt
  17. *_tv.txt
  18. doxygen/
  19. doc/crypt.pdf
  20. doc/refman.pdf
  21. # *nix/windows test executables
  22. constants
  23. constants.exe
  24. ltcrypt
  25. ltcrypt.exe
  26. hashsum
  27. hashsum.exe
  28. multi
  29. multi.exe
  30. openssl-enc
  31. openssl-enc.exe
  32. sizes
  33. sizes.exe
  34. small
  35. small.exe
  36. test
  37. test.exe
  38. tv_gen
  39. tv_gen.exe
  40. timing
  41. timing.exe
  42. # Visual Studio special files
  43. # ignore user specific settings
  44. *.user
  45. *.suo
  46. # ignore non-compressed browse file (holds information for ClassView, IntelliSense and WizardBar)
  47. *.ncb
  48. # ignore VS intermediate and program database files
  49. *.idb
  50. *.pdb
  51. # Eclipse special files
  52. .project
  53. .cproject
  54. .settings/
  55. # oops ;) but we don't want them to appear in the repository...
  56. *.stackdump
  57. *.core
  58. # misc
  59. *.rej
  60. *.patch
  61. *.diff
  62. *.orig
  63. *.out
  64. *.ll
  65. *.gcda
  66. *.gcno
  67. *.gcov
  68. libtomcrypt.pc
  69. # output from doc generation
  70. doxygen/
  71. *.dvi
  72. *.log
  73. *.aux
  74. *.toc
  75. *.idx
  76. *.ilg
  77. *.ind
  78. *.out
  79. *.lof
  80. *.bak
  81. coverage/
  82. coverage*.info
  83. # coverity intermediate directory etc.
  84. cov-int/
  85. .coverity_*
  86. libtomcrypt.lzma