diff options
Diffstat (limited to 'src/lib/libcrypto/bn/Makefile.ssl')
-rw-r--r-- | src/lib/libcrypto/bn/Makefile.ssl | 215 |
1 files changed, 179 insertions, 36 deletions
diff --git a/src/lib/libcrypto/bn/Makefile.ssl b/src/lib/libcrypto/bn/Makefile.ssl index 9809d26cbc..fcabb62452 100644 --- a/src/lib/libcrypto/bn/Makefile.ssl +++ b/src/lib/libcrypto/bn/Makefile.ssl | |||
@@ -7,35 +7,35 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) |
13 | MAKEFILE= Makefile.ssl | 15 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 16 | AR= ar r |
15 | 17 | ||
16 | BN_MULW= bn_mulw.o | 18 | BN_ASM= bn_asm.o |
17 | # or use | 19 | # or use |
18 | #BN_MULW= bn86-elf.o | 20 | #BN_ASM= bn86-elf.o |
19 | 21 | ||
20 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
23 | ASFLAGS=$(CFLAGS) | ||
21 | 24 | ||
22 | ERR=bn | ||
23 | ERRC=bn_err | ||
24 | GENERAL=Makefile | 25 | GENERAL=Makefile |
25 | TEST=bntest.c exptest.c | 26 | TEST=bntest.c exptest.c |
26 | APPS= | 27 | APPS= |
27 | 28 | ||
28 | LIB=$(TOP)/libcrypto.a | 29 | LIB=$(TOP)/libcrypto.a |
29 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mod.c bn_mul.c \ | 30 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mul.c \ |
30 | bn_print.c bn_rand.c bn_shift.c bn_sub.c bn_word.c bn_blind.c \ | 31 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ |
31 | bn_gcd.c bn_prime.c $(ERRC).c bn_sqr.c bn_mulw.c bn_recp.c bn_mont.c \ | 32 | bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c bn_recp.c bn_mont.c \ |
32 | bn_mpi.c | 33 | bn_mpi.c bn_exp2.c |
33 | |||
34 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_mod.o bn_mul.o \ | ||
35 | bn_print.o bn_rand.o bn_shift.o bn_sub.o bn_word.o bn_blind.o \ | ||
36 | bn_gcd.o bn_prime.o $(ERRC).o bn_sqr.o $(BN_MULW) bn_recp.o bn_mont.o \ | ||
37 | bn_mpi.o | ||
38 | 34 | ||
35 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_mul.o \ | ||
36 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | ||
37 | bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) bn_recp.o bn_mont.o \ | ||
38 | bn_mpi.o bn_exp2.o | ||
39 | 39 | ||
40 | SRC= $(LIBSRC) | 40 | SRC= $(LIBSRC) |
41 | 41 | ||
@@ -58,53 +58,90 @@ knuth.fast: bn_knuth.c | |||
58 | 58 | ||
59 | lib: $(LIBOBJ) | 59 | lib: $(LIBOBJ) |
60 | $(AR) $(LIB) $(LIBOBJ) | 60 | $(AR) $(LIB) $(LIBOBJ) |
61 | sh $(TOP)/util/ranlib.sh $(LIB) | 61 | $(RANLIB) $(LIB) |
62 | @touch lib | 62 | @touch lib |
63 | 63 | ||
64 | # elf | 64 | # elf |
65 | asm/bn86-elf.o: asm/bn86unix.cpp | 65 | asm/bn86-elf.o: asm/bn86unix.cpp |
66 | $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o | 66 | $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o |
67 | 67 | ||
68 | asm/co86-elf.o: asm/co86unix.cpp | ||
69 | $(CPP) -DELF asm/co86unix.cpp | as -o asm/co86-elf.o | ||
70 | |||
68 | # solaris | 71 | # solaris |
69 | asm/bn86-sol.o: asm/bn86unix.cpp | 72 | asm/bn86-sol.o: asm/bn86unix.cpp |
70 | $(CC) -E -DSOL asm/bn86unix.cpp | sed 's/^#.*//' > asm/bn86-sol.s | 73 | $(CC) -E -DSOL asm/bn86unix.cpp | sed 's/^#.*//' > asm/bn86-sol.s |
71 | as -o asm/bn86-sol.o asm/bn86-sol.s | 74 | as -o asm/bn86-sol.o asm/bn86-sol.s |
72 | rm -f asm/bn86-sol.s | 75 | rm -f asm/bn86-sol.s |
73 | 76 | ||
77 | asm/co86-sol.o: asm/co86unix.cpp | ||
78 | $(CC) -E -DSOL asm/co86unix.cpp | sed 's/^#.*//' > asm/co86-sol.s | ||
79 | as -o asm/co86-sol.o asm/co86-sol.s | ||
80 | rm -f asm/co86-sol.s | ||
81 | |||
74 | # a.out | 82 | # a.out |
75 | asm/bn86-out.o: asm/bn86unix.cpp | 83 | asm/bn86-out.o: asm/bn86unix.cpp |
76 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o | 84 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o |
77 | 85 | ||
86 | asm/co86-out.o: asm/co86unix.cpp | ||
87 | $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o | ||
88 | |||
78 | # bsdi | 89 | # bsdi |
79 | asm/bn86bsdi.o: asm/bn86unix.cpp | 90 | asm/bn86bsdi.o: asm/bn86unix.cpp |
80 | $(CPP) -DBSDI asm/bn86unix.cpp | as -o asm/bn86bsdi.o | 91 | $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o |
92 | |||
93 | asm/co86bsdi.o: asm/co86unix.cpp | ||
94 | $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o | ||
95 | |||
96 | asm/bn86unix.cpp: asm/bn-586.pl | ||
97 | (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp ) | ||
98 | |||
99 | asm/co86unix.cpp: asm/co-586.pl | ||
100 | (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp ) | ||
81 | 101 | ||
82 | asm/bn86unix.cpp: | 102 | asm/sparcv8.o: asm/sparcv8.S |
83 | (cd asm; perl bn-586.pl cpp >bn86unix.cpp ) | 103 | |
104 | asm/sparcv8plus.o: asm/sparcv8plus.S | ||
105 | |||
106 | # Old GNU assembler doesn't understand V9 instructions, so we | ||
107 | # hire /usr/ccs/bin/as to do the job. Note that option is called | ||
108 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
109 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
110 | # not choose this option, but be adviced to *remove* GNU assembler | ||
111 | # or upgrade it. | ||
112 | asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S | ||
113 | $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \ | ||
114 | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o | ||
115 | |||
116 | # MIPS 64 bit assember | ||
117 | asm/mips3.o: asm/mips3.s | ||
118 | |||
119 | # MIPS 32 bit assember | ||
120 | asm/mips1.o: asm/mips1.s | ||
121 | /usr/bin/as -O2 -o asm/mips1.o asm/mips1.s | ||
84 | 122 | ||
85 | files: | 123 | files: |
86 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 124 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
87 | 125 | ||
88 | links: | 126 | links: |
89 | /bin/rm -f Makefile | 127 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
90 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 128 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
91 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 129 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
92 | $(TOP)/util/mklink.sh ../../test $(TEST) | 130 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
93 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
94 | 131 | ||
95 | install: | 132 | install: |
96 | @for i in $(EXHEADER) ; \ | 133 | @for i in $(EXHEADER) ; \ |
97 | do \ | 134 | do \ |
98 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 135 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
99 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 136 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
100 | done; | 137 | done; |
101 | 138 | ||
102 | exptest: | 139 | exptest: |
103 | /bin/rm -f exptest | 140 | rm -f exptest |
104 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a | 141 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a |
105 | 142 | ||
106 | div: | 143 | div: |
107 | /bin/rm -f a.out | 144 | rm -f a.out |
108 | gcc -I.. -g div.c ../../libcrypto.a | 145 | gcc -I.. -g div.c ../../libcrypto.a |
109 | 146 | ||
110 | tags: | 147 | tags: |
@@ -116,18 +153,124 @@ lint: | |||
116 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 153 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
117 | 154 | ||
118 | depend: | 155 | depend: |
119 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 156 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
120 | 157 | ||
121 | dclean: | 158 | dclean: |
122 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 159 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
123 | mv -f Makefile.new $(MAKEFILE) | 160 | mv -f Makefile.new $(MAKEFILE) |
124 | 161 | ||
125 | clean: | 162 | clean: |
126 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_mulw.s | 163 | rm -f asm/co86unix.cpp asm/bn86unix.cpp *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s |
127 | |||
128 | errors: | ||
129 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # special case .org | ||
130 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
131 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
132 | 164 | ||
133 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 165 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
166 | |||
167 | bn_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
168 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
169 | bn_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
170 | bn_add.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
171 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
172 | bn_add.o: ../cryptlib.h bn_lcl.h | ||
173 | bn_asm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
174 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
175 | bn_asm.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
176 | bn_asm.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
177 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
178 | bn_asm.o: ../cryptlib.h bn_lcl.h | ||
179 | bn_blind.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
180 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
181 | bn_blind.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
182 | bn_blind.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
183 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
184 | bn_blind.o: ../cryptlib.h bn_lcl.h | ||
185 | bn_div.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
186 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
187 | bn_div.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
188 | bn_div.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
189 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
190 | bn_div.o: ../cryptlib.h bn_lcl.h | ||
191 | bn_err.o: ../../include/openssl/bn.h ../../include/openssl/err.h | ||
192 | bn_err.o: ../../include/openssl/opensslconf.h | ||
193 | bn_exp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
194 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
195 | bn_exp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
196 | bn_exp.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
197 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
198 | bn_exp.o: ../cryptlib.h bn_lcl.h | ||
199 | bn_exp2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
200 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
201 | bn_exp2.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
202 | bn_exp2.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
203 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
204 | bn_exp2.o: ../cryptlib.h bn_lcl.h | ||
205 | bn_gcd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
206 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
207 | bn_gcd.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
208 | bn_gcd.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
209 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
210 | bn_gcd.o: ../cryptlib.h bn_lcl.h | ||
211 | bn_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
212 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
213 | bn_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
214 | bn_lib.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
215 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
216 | bn_lib.o: ../cryptlib.h bn_lcl.h | ||
217 | bn_mont.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
218 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
219 | bn_mont.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
220 | bn_mont.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
221 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
222 | bn_mont.o: ../cryptlib.h bn_lcl.h | ||
223 | bn_mpi.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
224 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
225 | bn_mpi.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
226 | bn_mpi.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
227 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
228 | bn_mpi.o: ../cryptlib.h bn_lcl.h | ||
229 | bn_mul.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
230 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
231 | bn_mul.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
232 | bn_mul.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
233 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
234 | bn_mul.o: ../cryptlib.h bn_lcl.h | ||
235 | bn_prime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
236 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
237 | bn_prime.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
238 | bn_prime.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
239 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
240 | bn_prime.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h bn_prime.h | ||
241 | bn_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
242 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
243 | bn_print.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
244 | bn_print.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
245 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
246 | bn_print.o: ../cryptlib.h bn_lcl.h | ||
247 | bn_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
248 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
249 | bn_rand.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
250 | bn_rand.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
251 | bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
252 | bn_rand.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h | ||
253 | bn_recp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
254 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
255 | bn_recp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
256 | bn_recp.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
257 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
258 | bn_recp.o: ../cryptlib.h bn_lcl.h | ||
259 | bn_shift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
260 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
261 | bn_shift.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
262 | bn_shift.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
263 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
264 | bn_shift.o: ../cryptlib.h bn_lcl.h | ||
265 | bn_sqr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
266 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
267 | bn_sqr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
268 | bn_sqr.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
269 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
270 | bn_sqr.o: ../cryptlib.h bn_lcl.h | ||
271 | bn_word.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
272 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
273 | bn_word.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
274 | bn_word.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h | ||
275 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h | ||
276 | bn_word.o: ../cryptlib.h bn_lcl.h | ||