@@ -4,6 +4,7 @@ PERL += -I../openssl/crypto/perlasm -I../openssl/crypto/bn/asm
4
4
5
5
OUTPUTS = \
6
6
x86-elf-gas/aes/aes-586.s \
7
+ x86-elf-gas/aes/aesni-x86.s \
7
8
x86-elf-gas/bf/bf-686.s \
8
9
x86-elf-gas/bn/x86-mont.s \
9
10
x86-elf-gas/bn/x86.s \
@@ -21,15 +22,20 @@ OUTPUTS = \
21
22
x86-elf-gas/whrlpool/wp-mmx.s \
22
23
x86-elf-gas/x86cpuid.s \
23
24
x64-elf-gas/aes/aes-x86_64.s \
25
+ x64-elf-gas/aes/aesni-x86_64.s \
26
+ x64-elf-gas/aes/aesni-sha1-x86_64.s \
27
+ x64-elf-gas/bn/modexp512-x86_64.s \
24
28
x64-elf-gas/bn/x86_64-mont.s \
25
29
x64-elf-gas/camellia/cmll-x86_64.s \
26
30
x64-elf-gas/md5/md5-x86_64.s \
27
31
x64-elf-gas/rc4/rc4-x86_64.s \
32
+ x64-elf-gas/rc4/rc4-md5-x86_64.s \
28
33
x64-elf-gas/sha/sha1-x86_64.s \
29
34
x64-elf-gas/sha/sha512-x86_64.s \
30
35
x64-elf-gas/whrlpool/wp-x86_64.s \
31
36
x64-elf-gas/x86_64cpuid.s \
32
37
x86-macosx-gas/aes/aes-586.s \
38
+ x86-macosx-gas/aes/aesni-x86.s \
33
39
x86-macosx-gas/bf/bf-686.s \
34
40
x86-macosx-gas/bn/x86-mont.s \
35
41
x86-macosx-gas/bn/x86.s \
@@ -47,15 +53,20 @@ OUTPUTS = \
47
53
x86-macosx-gas/whrlpool/wp-mmx.s \
48
54
x86-macosx-gas/x86cpuid.s \
49
55
x64-macosx-gas/aes/aes-x86_64.s \
56
+ x64-macosx-gas/aes/aesni-x86_64.s \
57
+ x64-macosx-gas/aes/aesni-sha1-x86_64.s \
58
+ x64-macosx-gas/bn/modexp512-x86_64.s \
50
59
x64-macosx-gas/bn/x86_64-mont.s \
51
60
x64-macosx-gas/camellia/cmll-x86_64.s \
52
61
x64-macosx-gas/md5/md5-x86_64.s \
53
62
x64-macosx-gas/rc4/rc4-x86_64.s \
63
+ x64-macosx-gas/rc4/rc4-md5-x86_64.s \
54
64
x64-macosx-gas/sha/sha1-x86_64.s \
55
65
x64-macosx-gas/sha/sha512-x86_64.s \
56
66
x64-macosx-gas/whrlpool/wp-x86_64.s \
57
67
x64-macosx-gas/x86_64cpuid.s \
58
68
x86-win32-masm/aes/aes-586.asm \
69
+ x86-win32-masm/aes/aesni-x86.asm \
59
70
x86-win32-masm/bf/bf-686.asm \
60
71
x86-win32-masm/bn/x86-mont.asm \
61
72
x86-win32-masm/bn/x86.asm \
@@ -73,10 +84,14 @@ OUTPUTS = \
73
84
x86-win32-masm/whrlpool/wp-mmx.asm \
74
85
x86-win32-masm/x86cpuid.asm \
75
86
x64-win32-masm/aes/aes-x86_64.asm \
87
+ x64-win32-masm/aes/aesni-x86_64.asm \
88
+ x64-win32-masm/aes/aesni-sha1-x86_64.asm \
89
+ x64-win32-masm/bn/modexp512-x86_64.asm \
76
90
x64-win32-masm/bn/x86_64-mont.asm \
77
91
x64-win32-masm/camellia/cmll-x86_64.asm \
78
92
x64-win32-masm/md5/md5-x86_64.asm \
79
93
x64-win32-masm/rc4/rc4-x86_64.asm \
94
+ x64-win32-masm/rc4/rc4-md5-x86_64.asm \
80
95
x64-win32-masm/sha/sha1-x86_64.asm \
81
96
x64-win32-masm/sha/sha512-x86_64.asm \
82
97
x64-win32-masm/whrlpool/wp-x86_64.asm \
@@ -104,33 +119,46 @@ clean:
104
119
find . -iname ' *.s' -exec rm " {}" \;
105
120
106
121
x64-elf-gas/aes/aes-x86_64.s : ../openssl/crypto/aes/asm/aes-x86_64.pl
122
+ x64-elf-gas/aes/aesni-x86_64.s : ../openssl/crypto/aes/asm/aesni-x86_64.pl
123
+ x64-elf-gas/aes/aesni-sha1-x86_64.s : ../openssl/crypto/aes/asm/aesni-sha1-x86_64.pl
124
+ x64-elf-gas/bn/modexp512-x86_64.s : ../openssl/crypto/bn/asm/modexp512-x86_64.pl
107
125
x64-elf-gas/bn/x86_64-mont.s : ../openssl/crypto/bn/asm/x86_64-mont.pl
108
126
x64-elf-gas/camellia/cmll-x86_64.s : ../openssl/crypto/camellia/asm/cmll-x86_64.pl
109
127
x64-elf-gas/md5/md5-x86_64.s : ../openssl/crypto/md5/asm/md5-x86_64.pl
110
128
x64-elf-gas/rc4/rc4-x86_64.s : ../openssl/crypto/rc4/asm/rc4-x86_64.pl
129
+ x64-elf-gas/rc4/rc4-md5-x86_64.s : ../openssl/crypto/rc4/asm/rc4-md5-x86_64.pl
111
130
x64-elf-gas/sha/sha1-x86_64.s : ../openssl/crypto/sha/asm/sha1-x86_64.pl
112
131
x64-elf-gas/sha/sha512-x86_64.s : ../openssl/crypto/sha/asm/sha512-x86_64.pl
113
132
x64-elf-gas/whrlpool/wp-x86_64.s : ../openssl/crypto/whrlpool/asm/wp-x86_64.pl
114
133
x64-elf-gas/x86_64cpuid.s : ../openssl/crypto/x86_64cpuid.pl
115
134
x64-macosx-gas/aes/aes-x86_64.s : ../openssl/crypto/aes/asm/aes-x86_64.pl
135
+ x64-macosx-gas/aes/aesni-x86_64.s : ../openssl/crypto/aes/asm/aesni-x86_64.pl
136
+ x64-macosx-gas/aes/aesni-sha1-x86_64.s : ../openssl/crypto/aes/asm/aesni-sha1-x86_64.pl
137
+ x64-macosx-gas/bn/modexp512-x86_64.s : ../openssl/crypto/bn/asm/modexp512-x86_64.pl
116
138
x64-macosx-gas/bn/x86_64-mont.s : ../openssl/crypto/bn/asm/x86_64-mont.pl
117
139
x64-macosx-gas/camellia/cmll-x86_64.s : ../openssl/crypto/camellia/asm/cmll-x86_64.pl
118
140
x64-macosx-gas/md5/md5-x86_64.s : ../openssl/crypto/md5/asm/md5-x86_64.pl
119
141
x64-macosx-gas/rc4/rc4-x86_64.s : ../openssl/crypto/rc4/asm/rc4-x86_64.pl
142
+ x64-macosx-gas/rc4/rc4-md5-x86_64.s : ../openssl/crypto/rc4/asm/rc4-md5-x86_64.pl
120
143
x64-macosx-gas/sha/sha1-x86_64.s : ../openssl/crypto/sha/asm/sha1-x86_64.pl
121
144
x64-macosx-gas/sha/sha512-x86_64.s : ../openssl/crypto/sha/asm/sha512-x86_64.pl
122
145
x64-macosx-gas/whrlpool/wp-x86_64.s : ../openssl/crypto/whrlpool/asm/wp-x86_64.pl
123
146
x64-macosx-gas/x86_64cpuid.s : ../openssl/crypto/x86_64cpuid.pl
124
147
x64-win32-masm/aes/aes-x86_64.asm : ../openssl/crypto/aes/asm/aes-x86_64.pl
148
+ x64-win32-masm/aes/aesni-x86_64.asm : ../openssl/crypto/aes/asm/aesni-x86_64.pl
149
+ x64-win32-masm/aes/aesni-sha1-x86_64.asm : ../openssl/crypto/aes/asm/aesni-sha1-x86_64.pl
150
+ x64-win32-masm/bn/modexp512-x86_64.asm : ../openssl/crypto/bn/asm/modexp512-x86_64.pl
125
151
x64-win32-masm/bn/x86_64-mont.asm : ../openssl/crypto/bn/asm/x86_64-mont.pl
126
152
x64-win32-masm/camellia/cmll-x86_64.asm : ../openssl/crypto/camellia/asm/cmll-x86_64.pl
127
153
x64-win32-masm/md5/md5-x86_64.asm : ../openssl/crypto/md5/asm/md5-x86_64.pl
128
154
x64-win32-masm/rc4/rc4-x86_64.asm : ../openssl/crypto/rc4/asm/rc4-x86_64.pl
155
+ x64-win32-masm/rc4/rc4-md5-x86_64.asm : ../openssl/crypto/rc4/asm/rc4-md5-x86_64.pl
129
156
x64-win32-masm/sha/sha1-x86_64.asm : ../openssl/crypto/sha/asm/sha1-x86_64.pl
130
157
x64-win32-masm/sha/sha512-x86_64.asm : ../openssl/crypto/sha/asm/sha512-x86_64.pl
131
158
x64-win32-masm/whrlpool/wp-x86_64.asm : ../openssl/crypto/whrlpool/asm/wp-x86_64.pl
132
159
x64-win32-masm/x86_64cpuid.asm : ../openssl/crypto/x86_64cpuid.pl
133
160
x86-elf-gas/aes/aes-586.s : ../openssl/crypto/aes/asm/aes-586.pl
161
+ x86-elf-gas/aes/aesni-x86.s : ../openssl/crypto/aes/asm/aesni-x86.pl
134
162
x86-elf-gas/bf/bf-686.s : ../openssl/crypto/bf/asm/bf-686.pl
135
163
x86-elf-gas/bn/x86-mont.s : ../openssl/crypto/bn/asm/x86-mont.pl
136
164
x86-elf-gas/bn/x86.s : ../openssl/crypto/bn/asm/x86.pl
@@ -148,6 +176,7 @@ x86-elf-gas/sha/sha512-586.s: ../openssl/crypto/sha/asm/sha512-586.pl
148
176
x86-elf-gas/whrlpool/wp-mmx.s : ../openssl/crypto/whrlpool/asm/wp-mmx.pl
149
177
x86-elf-gas/x86cpuid.s : ../openssl/crypto/x86cpuid.pl
150
178
x86-macosx-gas/aes/aes-586.s : ../openssl/crypto/aes/asm/aes-586.pl
179
+ x86-macosx-gas/aes/aesni-x86.s : ../openssl/crypto/aes/asm/aesni-x86.pl
151
180
x86-macosx-gas/bf/bf-686.s : ../openssl/crypto/bf/asm/bf-686.pl
152
181
x86-macosx-gas/bn/x86-mont.s : ../openssl/crypto/bn/asm/x86-mont.pl
153
182
x86-macosx-gas/bn/x86.s : ../openssl/crypto/bn/asm/x86.pl
@@ -165,6 +194,7 @@ x86-macosx-gas/sha/sha512-586.s: ../openssl/crypto/sha/asm/sha512-586.pl
165
194
x86-macosx-gas/whrlpool/wp-mmx.s : ../openssl/crypto/whrlpool/asm/wp-mmx.pl
166
195
x86-macosx-gas/x86cpuid.s : ../openssl/crypto/x86cpuid.pl
167
196
x86-win32-masm/aes/aes-586.asm : ../openssl/crypto/aes/asm/aes-586.pl
197
+ x86-win32-masm/aes/aesni-x86.asm : ../openssl/crypto/aes/asm/aesni-x86.pl
168
198
x86-win32-masm/bf/bf-686.asm : ../openssl/crypto/bf/asm/bf-686.pl
169
199
x86-win32-masm/bn/x86.asm : ../openssl/crypto/bn/asm/x86.pl
170
200
x86-win32-masm/bn/x86-mont.asm : ../openssl/crypto/bn/asm/x86-mont.pl
0 commit comments