.gitignore 2.9 KB

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