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