Run make update
[openssl.git] / .gitignore
1 # Ignore editor artefacts
2 /.dir-locals.el
3
4 # Top level excludes
5 /Makefile
6 /MINFO
7 /TABLE
8 /*.pc
9 /rehash.time
10 /inc.*
11 /makefile.*
12 /out.*
13 /tmp.*
14 /configdata.pm
15
16 # Links under apps
17 /apps/CA.pl
18 /apps/tsget
19 /apps/tsget.pl
20 /apps/md4.c
21
22 # Auto generated headers
23 /crypto/buildinf.h
24 /include/crypto/*_conf.h
25 /include/openssl/configuration.h
26 /include/openssl/opensslv.h
27
28 # Auto generated doc files
29 doc/man1/openssl-ca.pod
30 doc/man1/openssl-cms.pod
31 doc/man1/openssl-crl.pod
32 doc/man1/openssl-dgst.pod
33 doc/man1/openssl-dhparam.pod
34 doc/man1/openssl-dsaparam.pod
35 doc/man1/openssl-ecparam.pod
36 doc/man1/openssl-enc.pod
37 doc/man1/openssl-gendsa.pod
38 doc/man1/openssl-genrsa.pod
39 doc/man1/openssl-ocsp.pod
40 doc/man1/openssl-passwd.pod
41 doc/man1/openssl-pkcs12.pod
42 doc/man1/openssl-pkcs8.pod
43 doc/man1/openssl-pkeyutl.pod
44 doc/man1/openssl-rand.pod
45 doc/man1/openssl-req.pod
46 doc/man1/openssl-rsautl.pod
47 doc/man1/openssl-s_client.pod
48 doc/man1/openssl-s_server.pod
49 doc/man1/openssl-s_time.pod
50 doc/man1/openssl-smime.pod
51 doc/man1/openssl-speed.pod
52 doc/man1/openssl-srp.pod
53 doc/man1/openssl-ts.pod
54 doc/man1/openssl-verify.pod
55 doc/man1/openssl-x509.pod
56
57 # error code files
58 /crypto/err/openssl.txt.old
59 /engines/e_afalg.txt.old
60 /engines/e_capi.txt.old
61 /engines/e_dasync.txt.old
62 /engines/e_ossltest.txt.old
63
64 # Executables
65 /apps/openssl
66 /test/sha256t
67 /test/sha512t
68 /test/gost2814789t
69 /test/ssltest_old
70 /test/*test
71 /test/fips_aesavs
72 /test/fips_desmovs
73 /test/fips_dhvs
74 /test/fips_drbgvs
75 /test/fips_dssvs
76 /test/fips_ecdhvs
77 /test/fips_ecdsavs
78 /test/fips_rngvs
79 /test/fips_test_suite
80 /test/ssltest_old
81 /test/x509aux
82 /test/v3ext
83 /test/versions
84 /test/ossl_shim/ossl_shim
85 /test/rsa_complex
86 /test/confdump
87 # Other generated files in test/
88 /test/provider_internal_test.conf
89 /test/fipsinstall.conf
90 /providers/fipsinstall.conf
91
92 # Certain files that get created by tests on the fly
93 /test/test-runs
94 /test/buildtest_*
95
96 # Fuzz stuff.
97 # Anything without an extension is an executable on Unix, so we keep files
98 # with extensions.  And we keep the corpora subddir versioned as well.
99 # Anything more generic with extensions that should be ignored will be taken
100 # care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
101 /fuzz/*
102 !/fuzz/README*
103 !/fuzz/corpora
104 !/fuzz/*.*
105
106 # Misc auto generated files
107 /doc/man7/openssl_user_macros.pod
108 /tools/c_rehash
109 /tools/c_rehash.pl
110 /util/shlib_wrap.sh
111 /tags
112 /TAGS
113 *.map
114 *.ld
115
116 # Windows (legacy)
117 /tmp32
118 /tmp32.dbg
119 /tmp32dll
120 /tmp32dll.dbg
121 /out32
122 /out32.dbg
123 /out32dll
124 /out32dll.dbg
125 /inc32
126 /MINFO
127 /ms/bcb.mak
128 /ms/libeay32.def
129 /ms/nt.mak
130 /ms/ntdll.mak
131 /ms/ssleay32.def
132 /ms/version32.rc
133
134 # Files created on other branches that are not held in git, and are not
135 # needed on this branch
136 /include/openssl/asn1_mac.h
137 /include/openssl/des_old.h
138 /include/openssl/fips.h
139 /include/openssl/fips_rand.h
140 /include/openssl/krb5_asn.h
141 /include/openssl/kssl.h
142 /include/openssl/pq_compat.h
143 /include/openssl/ssl23.h
144 /include/openssl/tmdiff.h
145 /include/openssl/ui_compat.h
146 /test/fips_aesavs.c
147 /test/fips_desmovs.c
148 /test/fips_dsatest.c
149 /test/fips_dssvs.c
150 /test/fips_hmactest.c
151 /test/fips_randtest.c
152 /test/fips_rngvs.c
153 /test/fips_rsagtest.c
154 /test/fips_rsastest.c
155 /test/fips_rsavtest.c
156 /test/fips_shatest.c
157 /test/fips_test_suite.c
158 /test/shatest.c
159
160 # Generated docs directories
161 /doc/html
162 /doc/man
163
164 ##### Generic patterns
165 # Auto generated assembly language source files
166 *.s
167 !/crypto/*/asm/*.s
168 /crypto/arm*.S
169 /crypto/*/*.S
170 *.asm
171 !/crypto/*/asm/*.asm
172
173 # Object files
174 *.o
175 *.obj
176
177 # editor artefacts
178 *.swp
179 .#*
180 \#*#
181 *~
182
183 # Certificate symbolic links
184 *.0
185
186 # All kinds of libraries and executables
187 *.a
188 *.so
189 *.so.*
190 *.dylib
191 *.dylib.*
192 *.dll
193 *.dll.*
194 *.exe
195 *.pyc
196 *.exp
197 *.lib
198 *.pdb
199 *.ilk
200 *.def
201 *.rc
202 *.res
203
204 # Misc generated stuff
205 Makefile.save
206 /crypto/**/lib
207 /engines/**/lib
208 /ssl/**/lib
209 *.bak
210 cscope.*
211 *.d
212 pod2htmd.tmp
213
214 # Windows manifest files
215 *.manifest
216 doc-nits