.gitignore 2.7 KB

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