2
0

.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. der_print_flexi
  33. der_print_flexi.exe
  34. hashsum
  35. hashsum.exe
  36. multi
  37. multi.exe
  38. openssl-enc
  39. openssl-enc.exe
  40. openssh-privkey
  41. openssh-privkey.exe
  42. latex-tables
  43. latex-tables.exe
  44. sizes
  45. sizes.exe
  46. small
  47. small.exe
  48. test
  49. test.exe
  50. tv_gen
  51. tv_gen.exe
  52. timing
  53. timing.exe
  54. # Visual Studio special files
  55. # ignore user specific settings
  56. *.user
  57. *.suo
  58. # ignore non-compressed browse file (holds information for ClassView, IntelliSense and WizardBar)
  59. *.ncb
  60. # ignore VS intermediate and program database files
  61. *.idb
  62. *.pdb
  63. # Eclipse special files
  64. .project
  65. .cproject
  66. .settings/
  67. # KDevelop special files
  68. *.kdev4
  69. # macOS special files
  70. .DS_Store
  71. # other special files
  72. showlibs # symlink to .libs
  73. # oops ;) but we don't want them to appear in the repository...
  74. *.stackdump
  75. *.core
  76. # misc
  77. *.rej
  78. *.patch
  79. *.diff
  80. *.orig
  81. *.out
  82. *.ll
  83. *.gcda
  84. *.gcno
  85. *.gcov
  86. libtomcrypt.pc
  87. # output from doc generation
  88. doxygen/
  89. *.dvi
  90. *.log
  91. *.aux
  92. *.toc
  93. *.idx
  94. *.ilg
  95. *.ind
  96. *.out
  97. *.lof
  98. *.bak
  99. coverage*/
  100. coverage*.info
  101. # coverity intermediate directory etc.
  102. cov-int/
  103. .coverity_*
  104. libtomcrypt.lzma
  105. # cmake build directories
  106. build*/