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