]> git.ipfire.org Git - thirdparty/openssl.git/blame - .gitignore
Prepare for 3.0 alpha 2
[thirdparty/openssl.git] / .gitignore
CommitLineData
27f215cf 1# Ignore editor artefacts
d7c02691 2/.dir-locals.el
bba43f3f 3
e71972d1 4# Top level excludes
dbb1dc1e 5/Makefile
1aaa0419 6/MINFO
e3c15964 7/TABLE
e71972d1
DSH
8/*.pc
9/rehash.time
7e25d818
BL
10/inc.*
11/makefile.*
12/out.*
13/tmp.*
291e94df 14/configdata.pm
e71972d1 15
e71972d1 16# Links under apps
a5b2791c 17/apps/CA.pl
ef653053 18/apps/tsget
ab68742a 19/apps/tsget.pl
a5b2791c 20/apps/md4.c
e71972d1 21
e71972d1 22# Auto generated headers
a5b2791c 23/crypto/buildinf.h
25f2138b 24/include/crypto/*_conf.h
46994f71 25/include/openssl/configuration.h
dbb1dc1e 26/include/openssl/opensslv.h
e71972d1 27
9fcb9702 28# Auto generated doc files
5e98904c 29doc/man1/openssl-*.pod
9fcb9702 30
bbe3ed06
MC
31# Auto generated der files
32providers/common/der/der_dsa.c
33providers/common/der/der_ec.c
34providers/common/der/der_rsa.c
35providers/common/include/prov/der_dsa.h
36providers/common/include/prov/der_ec.h
37providers/common/include/prov/der_rsa.h
38
52df25cf
RS
39# error code files
40/crypto/err/openssl.txt.old
41/engines/e_afalg.txt.old
42/engines/e_capi.txt.old
43/engines/e_dasync.txt.old
44/engines/e_ossltest.txt.old
45
e71972d1 46# Executables
a5b2791c
BL
47/apps/openssl
48/test/sha256t
49/test/sha512t
bd2bceb9 50/test/gost2814789t
ef653053 51/test/ssltest_old
a5b2791c
BL
52/test/*test
53/test/fips_aesavs
54/test/fips_desmovs
55/test/fips_dhvs
56/test/fips_drbgvs
57/test/fips_dssvs
58/test/fips_ecdhvs
59/test/fips_ecdsavs
60/test/fips_rngvs
61/test/fips_test_suite
5a22cf96 62/test/ssltest_old
48244109 63/test/x509aux
e417070c 64/test/v3ext
dbcfd902 65/test/versions
694cfa1f 66/test/ossl_shim/ossl_shim
da5fac72 67/test/rsa_complex
d7e4aecd 68/test/confdump
1e887969 69/test/bio_prefix_text
6d872a83 70# Other generated files in test/
433deaff
RS
71/test/provider_internal_test.cnf
72/test/fipsinstall.cnf
73/providers/fipsinstall.cnf
27f215cf
RL
74
75# Certain files that get created by tests on the fly
f0790d4d 76/test-runs
27f215cf
RL
77/test/buildtest_*
78
79# Fuzz stuff.
80# Anything without an extension is an executable on Unix, so we keep files
81# with extensions. And we keep the corpora subddir versioned as well.
82# Anything more generic with extensions that should be ignored will be taken
83# care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
84/fuzz/*
85!/fuzz/README*
86!/fuzz/corpora
87!/fuzz/*.*
e71972d1
DSH
88
89# Misc auto generated files
871493a2 90/doc/man7/openssl_user_macros.pod
a5b2791c 91/tools/c_rehash
ab68742a 92/tools/c_rehash.pl
6462876f 93/util/shlib_wrap.sh
f631f2ec
RL
94/tags
95/TAGS
a21f4cec
MC
96*.map
97*.ld
888e2a9b
VP
98/apps/progs.c
99/apps/progs.h
448e6f06 100
ab68742a 101# Windows (legacy)
37d92b1b
RL
102/tmp32
103/tmp32.dbg
448e6f06 104/tmp32dll
41c9cfbc 105/tmp32dll.dbg
37d92b1b
RL
106/out32
107/out32.dbg
448e6f06 108/out32dll
41c9cfbc 109/out32dll.dbg
448e6f06
MC
110/inc32
111/MINFO
f631f2ec
RL
112/ms/bcb.mak
113/ms/libeay32.def
114/ms/nt.mak
115/ms/ntdll.mak
116/ms/ssleay32.def
117/ms/version32.rc
8757bf83
MC
118
119# Files created on other branches that are not held in git, and are not
120# needed on this branch
f631f2ec
RL
121/include/openssl/asn1_mac.h
122/include/openssl/des_old.h
123/include/openssl/fips.h
124/include/openssl/fips_rand.h
125/include/openssl/krb5_asn.h
126/include/openssl/kssl.h
127/include/openssl/pq_compat.h
128/include/openssl/ssl23.h
129/include/openssl/tmdiff.h
130/include/openssl/ui_compat.h
131/test/fips_aesavs.c
132/test/fips_desmovs.c
133/test/fips_dsatest.c
134/test/fips_dssvs.c
135/test/fips_hmactest.c
136/test/fips_randtest.c
137/test/fips_rngvs.c
138/test/fips_rsagtest.c
139/test/fips_rsastest.c
140/test/fips_rsavtest.c
141/test/fips_shatest.c
142/test/fips_test_suite.c
143/test/shatest.c
27f215cf 144
df8f116e
RL
145# Generated docs directories
146/doc/html
147/doc/man
148
27f215cf
RL
149##### Generic patterns
150# Auto generated assembly language source files
151*.s
152!/crypto/*/asm/*.s
153/crypto/arm*.S
154/crypto/*/*.S
155*.asm
156!/crypto/*/asm/*.asm
157
158# Object files
159*.o
160*.obj
161
162# editor artefacts
163*.swp
164.#*
165\#*#
166*~
167
168# Certificate symbolic links
169*.0
170
645c694d
RL
171# All kinds of libraries and executables
172*.a
27f215cf
RL
173*.so
174*.so.*
175*.dylib
176*.dylib.*
177*.dll
178*.dll.*
179*.exe
180*.pyc
181*.exp
182*.lib
183*.pdb
184*.ilk
185*.def
186*.rc
187*.res
188
189# Misc generated stuff
190Makefile.save
191/crypto/**/lib
192/engines/**/lib
193/ssl/**/lib
194*.bak
195cscope.*
196*.d
7b5108df 197*.d.tmp
e7932c1e
J
198pod2htmd.tmp
199
200# Windows manifest files
201*.manifest
65c1f979 202doc-nits