.gitignore 2.7 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 10
/*.a
/*.pc
/rehash.time
B
Ben Laurie 已提交
11 12 13 14
/inc.*
/makefile.*
/out.*
/tmp.*
15
/configdata.pm
D
Dr. Stephen Henson 已提交
16

A
Andy Polyakov 已提交
17 18
# *all* Makefiles
Makefile
R
Rich Salz 已提交
19

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

# Auto generated headers
27
/crypto/buildinf.h
R
Rich Salz 已提交
28
/crypto/include/internal/*_conf.h
29 30
/openssl/include/opensslconf.h
/util/domd
D
Dr. Stephen Henson 已提交
31 32

# Executables
33 34 35
/apps/openssl
/test/sha256t
/test/sha512t
A
Andy Polyakov 已提交
36
/test/gost2814789t
37
/test/ssltest_old
38 39 40 41 42 43 44 45 46 47
/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 已提交
48
/test/ssltest_old
T
Todd Short 已提交
49
/test/x509aux
R
Rich Salz 已提交
50
/test/v3ext
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69

# Certain files that get created by tests on the fly
/test/*.ss
/test/*.srl
/test/.rnd
/test/test*.pem
/test/newkey.pem
/test/*.log
/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 已提交
70 71

# Misc auto generated files
R
Richard Levitte 已提交
72
/include/openssl/opensslconf.h
73
/tools/c_rehash
74
/tools/c_rehash.pl
R
Richard Levitte 已提交
75 76 77 78
/tags
/TAGS
/crypto.map
/ssl.map
79

80
# Windows (legacy)
81 82
/tmp32
/tmp32.dbg
83
/tmp32dll
84
/tmp32dll.dbg
85 86
/out32
/out32.dbg
87
/out32dll
88
/out32dll.dbg
89 90
/inc32
/MINFO
91
/ms/.rnd
R
Richard Levitte 已提交
92 93 94 95 96 97
/ms/bcb.mak
/ms/libeay32.def
/ms/nt.mak
/ms/ntdll.mak
/ms/ssleay32.def
/ms/version32.rc
M
Matt Caswell 已提交
98 99 100

# Files created on other branches that are not held in git, and are not
# needed on this branch
R
Richard Levitte 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
/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
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171

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

# Object files
*.o
*.obj

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

# Certificate symbolic links
*.0

# All kinds of executables
*.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
J
JimC 已提交
172 173 174 175
pod2htmd.tmp

# Windows manifest files
*.manifest