.gitignore 2.9 KB

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