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