.gitignore 2.8 KB
Newer Older
1
# Ignore editor artefacts
R
Richard Levitte 已提交
2
/.dir-locals.el
A
Andy Polyakov 已提交
3

D
Dr. Stephen Henson 已提交
4
# Top level excludes
R
Rich Salz 已提交
5
/Makefile.orig
B
Ben Laurie 已提交
6
/MINFO
7
/TABLE
D
Dr. Stephen Henson 已提交
8 9
/*.pc
/rehash.time
B
Ben Laurie 已提交
10 11 12 13
/inc.*
/makefile.*
/out.*
/tmp.*
14
/configdata.pm
D
Dr. Stephen Henson 已提交
15

A
Andy Polyakov 已提交
16 17
# *all* Makefiles
Makefile
18 19
# ... except in demos
!/demos/*/Makefile
R
Rich Salz 已提交
20

D
Dr. Stephen Henson 已提交
21
# Links under apps
22
/apps/CA.pl
23
/apps/tsget
24
/apps/tsget.pl
25
/apps/md4.c
D
Dr. Stephen Henson 已提交
26 27

# Auto generated headers
Z
z00416851 已提交
28
/crypto/buildinf.h
T
Todd Short 已提交
29
/apps/progs.h
Z
z00416851 已提交
30
/openssl/include/opensslconf.h
31
/util/domd
D
Dr. Stephen Henson 已提交
32

33 34 35 36 37 38 39
# error code files
/crypto/err/openssl.txt.old
/engines/e_afalg.txt.old
/engines/e_capi.txt.old
/engines/e_dasync.txt.old
/engines/e_ossltest.txt.old

D
Dr. Stephen Henson 已提交
40
# Executables
41 42 43
/apps/openssl
/test/sha256t
/test/sha512t
A
Andy Polyakov 已提交
44
/test/gost2814789t
45
/test/ssltest_old
46 47 48 49 50 51 52 53 54 55
/test/*test
/test/fips_aesavs
/test/fips_desmovs
/test/fips_dhvs
/test/fips_drbgvs
/test/fips_dssvs
/test/fips_ecdhvs
/test/fips_ecdsavs
/test/fips_rngvs
/test/fips_test_suite
E
Emilia Kasper 已提交
56
/test/ssltest_old
T
Todd Short 已提交
57
/test/x509aux
R
Rich Salz 已提交
58
/test/v3ext
M
Matt Caswell 已提交
59
/test/versions
M
Matt Caswell 已提交
60
/test/ossl_shim/ossl_shim
61
/test/rsa_complex
62 63

# Certain files that get created by tests on the fly
64
/test/test-runs
65 66 67 68 69 70 71 72 73 74 75
/test/buildtest_*

# Fuzz stuff.
# Anything without an extension is an executable on Unix, so we keep files
# with extensions.  And we keep the corpora subddir versioned as well.
# Anything more generic with extensions that should be ignored will be taken
# care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
/fuzz/*
!/fuzz/README*
!/fuzz/corpora
!/fuzz/*.*
D
Dr. Stephen Henson 已提交
76 77

# Misc auto generated files
Z
z00416851 已提交
78
/include/openssl/opensslconf.h
79
/tools/c_rehash
80
/tools/c_rehash.pl
81
/util/shlib_wrap.sh
R
Richard Levitte 已提交
82 83
/tags
/TAGS
84 85
/libcrypto.map
/libssl.map
86

87
# Windows (legacy)
88 89
/tmp32
/tmp32.dbg
90
/tmp32dll
91
/tmp32dll.dbg
92 93
/out32
/out32.dbg
94
/out32dll
95
/out32dll.dbg
96 97
/inc32
/MINFO
98
/ms/.rnd
R
Richard Levitte 已提交
99 100 101 102 103 104
/ms/bcb.mak
/ms/libeay32.def
/ms/nt.mak
/ms/ntdll.mak
/ms/ssleay32.def
/ms/version32.rc
M
Matt Caswell 已提交
105 106 107

# Files created on other branches that are not held in git, and are not
# needed on this branch
R
Richard Levitte 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
/include/openssl/asn1_mac.h
/include/openssl/des_old.h
/include/openssl/fips.h
/include/openssl/fips_rand.h
/include/openssl/krb5_asn.h
/include/openssl/kssl.h
/include/openssl/pq_compat.h
/include/openssl/ssl23.h
/include/openssl/tmdiff.h
/include/openssl/ui_compat.h
/test/fips_aesavs.c
/test/fips_desmovs.c
/test/fips_dsatest.c
/test/fips_dssvs.c
/test/fips_hmactest.c
/test/fips_randtest.c
/test/fips_rngvs.c
/test/fips_rsagtest.c
/test/fips_rsastest.c
/test/fips_rsavtest.c
/test/fips_shatest.c
/test/fips_test_suite.c
/test/shatest.c
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149

##### Generic patterns
# Auto generated assembly language source files
*.asm
!/crypto/*/asm/*.asm

# Object files
*.o
*.obj

# editor artefacts
*.swp
.#*
\#*#
*~

# Certificate symbolic links
*.0

150 151
# All kinds of libraries and executables
*.a
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
*.so
*.so.*
*.dylib
*.dylib.*
*.dll
*.dll.*
*.exe
*.pyc
*.exp
*.lib
*.pdb
*.ilk
*.def
*.rc
*.res

# Misc generated stuff
Makefile.save
/crypto/**/lib
/engines/**/lib
/ssl/**/lib
*.bak
cscope.*
*.d
M
Matt Caswell 已提交
176
*.d.tmp
J
JimC 已提交
177 178 179 180
pod2htmd.tmp

# Windows manifest files
*.manifest
181
doc-nits