.gitignore 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. # Ignore editor artefacts
  2. /.dir-locals.el
  3. # Top level excludes
  4. /Makefile.orig
  5. /MINFO
  6. /TABLE
  7. /*.pc
  8. /rehash.time
  9. /inc.*
  10. /makefile.*
  11. /out.*
  12. /tmp.*
  13. /configdata.pm
  14. # *all* Makefiles
  15. Makefile
  16. # ... except in demos
  17. !/demos/*/Makefile
  18. # Links under apps
  19. /apps/CA.pl
  20. /apps/tsget
  21. /apps/tsget.pl
  22. /apps/md4.c
  23. # Auto generated headers
  24. /crypto/buildinf.h
  25. /apps/progs.h
  26. /crypto/include/internal/*_conf.h
  27. /openssl/include/opensslconf.h
  28. /util/domd
  29. # error code files
  30. /crypto/err/openssl.txt.old
  31. /engines/e_afalg.txt.old
  32. /engines/e_capi.txt.old
  33. /engines/e_dasync.txt.old
  34. /engines/e_ossltest.txt.old
  35. # Executables
  36. /apps/openssl
  37. /test/sha256t
  38. /test/sha512t
  39. /test/gost2814789t
  40. /test/ssltest_old
  41. /test/*test
  42. /test/fips_aesavs
  43. /test/fips_desmovs
  44. /test/fips_dhvs
  45. /test/fips_drbgvs
  46. /test/fips_dssvs
  47. /test/fips_ecdhvs
  48. /test/fips_ecdsavs
  49. /test/fips_rngvs
  50. /test/fips_test_suite
  51. /test/ssltest_old
  52. /test/x509aux
  53. /test/v3ext
  54. /test/versions
  55. /test/ossl_shim/ossl_shim
  56. /test/rsa_complex
  57. # Certain files that get created by tests on the fly
  58. /test/test-runs
  59. /test/buildtest_*
  60. # Fuzz stuff.
  61. # Anything without an extension is an executable on Unix, so we keep files
  62. # with extensions. And we keep the corpora subddir versioned as well.
  63. # Anything more generic with extensions that should be ignored will be taken
  64. # care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
  65. /fuzz/*
  66. !/fuzz/README*
  67. !/fuzz/corpora
  68. !/fuzz/*.*
  69. # Misc auto generated files
  70. /include/openssl/opensslconf.h
  71. /tools/c_rehash
  72. /tools/c_rehash.pl
  73. /util/shlib_wrap.sh
  74. /tags
  75. /TAGS
  76. *.map
  77. *.ld
  78. # Windows (legacy)
  79. /tmp32
  80. /tmp32.dbg
  81. /tmp32dll
  82. /tmp32dll.dbg
  83. /out32
  84. /out32.dbg
  85. /out32dll
  86. /out32dll.dbg
  87. /inc32
  88. /MINFO
  89. /ms/.rnd
  90. /ms/bcb.mak
  91. /ms/libeay32.def
  92. /ms/nt.mak
  93. /ms/ntdll.mak
  94. /ms/ssleay32.def
  95. /ms/version32.rc
  96. # Files created on other branches that are not held in git, and are not
  97. # needed on this branch
  98. /include/openssl/asn1_mac.h
  99. /include/openssl/des_old.h
  100. /include/openssl/fips.h
  101. /include/openssl/fips_rand.h
  102. /include/openssl/krb5_asn.h
  103. /include/openssl/kssl.h
  104. /include/openssl/pq_compat.h
  105. /include/openssl/ssl23.h
  106. /include/openssl/tmdiff.h
  107. /include/openssl/ui_compat.h
  108. /test/fips_aesavs.c
  109. /test/fips_desmovs.c
  110. /test/fips_dsatest.c
  111. /test/fips_dssvs.c
  112. /test/fips_hmactest.c
  113. /test/fips_randtest.c
  114. /test/fips_rngvs.c
  115. /test/fips_rsagtest.c
  116. /test/fips_rsastest.c
  117. /test/fips_rsavtest.c
  118. /test/fips_shatest.c
  119. /test/fips_test_suite.c
  120. /test/shatest.c
  121. ##### Generic patterns
  122. # Auto generated assembly language source files
  123. *.s
  124. !/crypto/*/asm/*.s
  125. /crypto/arm*.S
  126. /crypto/*/*.S
  127. *.asm
  128. !/crypto/*/asm/*.asm
  129. # Object files
  130. *.o
  131. *.obj
  132. # editor artefacts
  133. *.swp
  134. .#*
  135. \#*#
  136. *~
  137. # Certificate symbolic links
  138. *.0
  139. # All kinds of libraries and executables
  140. *.a
  141. *.so
  142. *.so.*
  143. *.dylib
  144. *.dylib.*
  145. *.dll
  146. *.dll.*
  147. *.exe
  148. *.pyc
  149. *.exp
  150. *.lib
  151. *.pdb
  152. *.ilk
  153. *.def
  154. *.rc
  155. *.res
  156. # Misc generated stuff
  157. Makefile.save
  158. /crypto/**/lib
  159. /engines/**/lib
  160. /ssl/**/lib
  161. *.bak
  162. cscope.*
  163. *.d
  164. pod2htmd.tmp
  165. # Windows manifest files
  166. *.manifest
  167. doc-nits