.gitignore 1.5 KB

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