.gitignore 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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. # Other generated files in test/
  58. /test/provider_internal_test.conf
  59. # Certain files that get created by tests on the fly
  60. /test/test-runs
  61. /test/buildtest_*
  62. # Fuzz stuff.
  63. # Anything without an extension is an executable on Unix, so we keep files
  64. # with extensions. And we keep the corpora subddir versioned as well.
  65. # Anything more generic with extensions that should be ignored will be taken
  66. # care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
  67. /fuzz/*
  68. !/fuzz/README*
  69. !/fuzz/corpora
  70. !/fuzz/*.*
  71. # Misc auto generated files
  72. /doc/man7/openssl_user_macros.pod
  73. /include/openssl/opensslconf.h
  74. /tools/c_rehash
  75. /tools/c_rehash.pl
  76. /util/shlib_wrap.sh
  77. /tags
  78. /TAGS
  79. *.map
  80. *.ld
  81. # Windows (legacy)
  82. /tmp32
  83. /tmp32.dbg
  84. /tmp32dll
  85. /tmp32dll.dbg
  86. /out32
  87. /out32.dbg
  88. /out32dll
  89. /out32dll.dbg
  90. /inc32
  91. /MINFO
  92. /ms/.rnd
  93. /ms/bcb.mak
  94. /ms/libeay32.def
  95. /ms/nt.mak
  96. /ms/ntdll.mak
  97. /ms/ssleay32.def
  98. /ms/version32.rc
  99. # Files created on other branches that are not held in git, and are not
  100. # needed on this branch
  101. /include/openssl/asn1_mac.h
  102. /include/openssl/des_old.h
  103. /include/openssl/fips.h
  104. /include/openssl/fips_rand.h
  105. /include/openssl/krb5_asn.h
  106. /include/openssl/kssl.h
  107. /include/openssl/pq_compat.h
  108. /include/openssl/ssl23.h
  109. /include/openssl/tmdiff.h
  110. /include/openssl/ui_compat.h
  111. /test/fips_aesavs.c
  112. /test/fips_desmovs.c
  113. /test/fips_dsatest.c
  114. /test/fips_dssvs.c
  115. /test/fips_hmactest.c
  116. /test/fips_randtest.c
  117. /test/fips_rngvs.c
  118. /test/fips_rsagtest.c
  119. /test/fips_rsastest.c
  120. /test/fips_rsavtest.c
  121. /test/fips_shatest.c
  122. /test/fips_test_suite.c
  123. /test/shatest.c
  124. ##### Generic patterns
  125. # Auto generated assembly language source files
  126. *.s
  127. !/crypto/*/asm/*.s
  128. /crypto/arm*.S
  129. /crypto/*/*.S
  130. *.asm
  131. !/crypto/*/asm/*.asm
  132. # Object files
  133. *.o
  134. *.obj
  135. # editor artefacts
  136. *.swp
  137. .#*
  138. \#*#
  139. *~
  140. # Certificate symbolic links
  141. *.0
  142. # All kinds of libraries and executables
  143. *.a
  144. *.so
  145. *.so.*
  146. *.dylib
  147. *.dylib.*
  148. *.dll
  149. *.dll.*
  150. *.exe
  151. *.pyc
  152. *.exp
  153. *.lib
  154. *.pdb
  155. *.ilk
  156. *.def
  157. *.rc
  158. *.res
  159. # Misc generated stuff
  160. Makefile.save
  161. /crypto/**/lib
  162. /engines/**/lib
  163. /ssl/**/lib
  164. *.bak
  165. cscope.*
  166. *.d
  167. pod2htmd.tmp
  168. # Windows manifest files
  169. *.manifest
  170. doc-nits