.gitignore 2.8 KB

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