summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/Makefile.ssl
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bn/Makefile.ssl')
-rw-r--r--src/lib/libcrypto/bn/Makefile.ssl322
1 files changed, 322 insertions, 0 deletions
diff --git a/src/lib/libcrypto/bn/Makefile.ssl b/src/lib/libcrypto/bn/Makefile.ssl
new file mode 100644
index 0000000000..c1547a8e6d
--- /dev/null
+++ b/src/lib/libcrypto/bn/Makefile.ssl
@@ -0,0 +1,322 @@
1#
2# SSLeay/crypto/bn/Makefile
3#
4
5DIR= bn
6TOP= ../..
7CC= cc
8CPP= $(CC) -E
9INCLUDES= -I.. -I$(TOP) -I../../include
10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
13INSTALLTOP=/usr/local/ssl
14MAKE= make -f Makefile.ssl
15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17MAKEFILE= Makefile.ssl
18AR= ar r
19
20BN_ASM= bn_asm.o
21# or use
22#BN_ASM= bn86-elf.o
23
24CFLAGS= $(INCLUDES) $(CFLAG)
25
26GENERAL=Makefile
27TEST=bntest.c exptest.c
28APPS=
29
30LIB=$(TOP)/libcrypto.a
31LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
32 bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
33 bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
34 bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c
35
36LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
37 bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
38 bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
39 bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o
40
41SRC= $(LIBSRC)
42
43EXHEADER= bn.h
44HEADER= bn_lcl.h bn_prime.h $(EXHEADER)
45
46ALL= $(GENERAL) $(SRC) $(HEADER)
47
48top:
49 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
50
51all: lib
52
53bn_prime.h: bn_prime.pl
54 $(PERL) bn_prime.pl >bn_prime.h
55
56divtest: divtest.c ../../libcrypto.a
57 cc -I../../include divtest.c -o divtest ../../libcrypto.a
58
59bnbug: bnbug.c ../../libcrypto.a top
60 cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
61
62lib: $(LIBOBJ)
63 $(AR) $(LIB) $(LIBOBJ)
64 $(RANLIB) $(LIB) || echo Never mind.
65 @touch lib
66
67# elf
68asm/bn86-elf.s: asm/bn-586.pl ../perlasm/x86asm.pl
69 (cd asm; $(PERL) bn-586.pl elf $(CFLAGS) > bn86-elf.s)
70
71asm/co86-elf.s: asm/co-586.pl ../perlasm/x86asm.pl
72 (cd asm; $(PERL) co-586.pl elf $(CFLAGS) > co86-elf.s)
73
74# a.out
75asm/bn86-out.o: asm/bn86unix.cpp
76 $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o
77
78asm/co86-out.o: asm/co86unix.cpp
79 $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o
80
81# bsdi
82asm/bn86bsdi.o: asm/bn86unix.cpp
83 $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o
84
85asm/co86bsdi.o: asm/co86unix.cpp
86 $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o
87
88asm/bn86unix.cpp: asm/bn-586.pl ../perlasm/x86asm.pl
89 (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp )
90
91asm/co86unix.cpp: asm/co-586.pl ../perlasm/x86asm.pl
92 (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp )
93
94asm/sparcv8.o: asm/sparcv8.S
95
96asm/sparcv8plus.o: asm/sparcv8plus.S
97
98# Old GNU assembler doesn't understand V9 instructions, so we
99# hire /usr/ccs/bin/as to do the job. Note that option is called
100# *-gcc27, but even gcc 2>=8 users may experience similar problem
101# if they didn't bother to upgrade GNU assembler. Such users should
102# not choose this option, but be adviced to *remove* GNU assembler
103# or upgrade it.
104asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S
105 $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \
106 /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o
107
108
109asm/ia64.o: asm/ia64.S
110
111# Some compiler drivers (most notably HP-UX and Intel C++) don't
112# understand .S extension:-( I wish I could pipe output from cc -E,
113# but it's too compiler driver/ABI dependent to cover with a single
114# rule... <appro@fy.chalmers.se>
115asm/ia64-cpp.o: asm/ia64.S
116 $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \
117 $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \
118 rm -f /tmp/ia64.$$$$.s
119
120asm/x86_64-gcc.o: asm/x86_64-gcc.c
121
122files:
123 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
124
125links:
126 @$(TOP)/util/point.sh Makefile.ssl Makefile
127 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
128 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
129 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
130
131install:
132 @for i in $(EXHEADER) ; \
133 do \
134 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
135 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
136 done;
137
138exptest:
139 rm -f exptest
140 gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
141
142div:
143 rm -f a.out
144 gcc -I.. -g div.c ../../libcrypto.a
145
146tags:
147 ctags $(SRC)
148
149tests:
150
151lint:
152 lint -DLINT $(INCLUDES) $(SRC)>fluff
153
154depend:
155 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
156
157dclean:
158 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
159 mv -f Makefile.new $(MAKEFILE)
160
161clean:
162 rm -f asm/co86unix.cpp asm/bn86unix.cpp asm/*-elf.* *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s
163
164# DO NOT DELETE THIS LINE -- make depend depends on it.
165
166bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
167bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
168bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
169bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
170bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
171bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
172bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h
173bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
174bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
175bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
176bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
177bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
178bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
179bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h
180bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
181bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
182bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
183bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
184bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
185bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
186bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h
187bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
188bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
189bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
190bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
191bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
192bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
193bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h
194bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
195bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
196bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
197bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
198bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
199bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
200bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h
201bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
202bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
203bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
204bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
205bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
206bn_err.o: ../../include/openssl/symhacks.h bn_err.c
207bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
208bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
209bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
210bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
211bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
212bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
213bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h
214bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
215bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
216bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
217bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
218bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
219bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
220bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h
221bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
222bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
223bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
224bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
225bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
226bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
227bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h
228bn_kron.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h
229bn_kron.o: ../../include/openssl/opensslconf.h bn_kron.c bn_lcl.h
230bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
231bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
232bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
233bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
234bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
235bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
236bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c
237bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
238bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
239bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
240bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
241bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
242bn_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
243bn_mod.o: ../cryptlib.h bn_lcl.h bn_mod.c
244bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
245bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
246bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
247bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
248bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
249bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
250bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c
251bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
252bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
253bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
254bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
255bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
256bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
257bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c
258bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
259bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
260bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
261bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
262bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
263bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
264bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c
265bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
266bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
267bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
268bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
269bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
270bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
271bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
272bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
273bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
274bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
275bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
276bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
277bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
278bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
279bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c
280bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
281bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
282bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
283bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
284bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
285bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
286bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
287bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
288bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
289bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
290bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
291bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
292bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
293bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
294bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c
295bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
296bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
297bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
298bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
299bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
300bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
301bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c
302bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
303bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
304bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
305bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
306bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
307bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
308bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c
309bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
310bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
311bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
312bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
313bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
314bn_sqrt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
315bn_sqrt.o: ../cryptlib.h bn_lcl.h bn_sqrt.c
316bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
317bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
318bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
319bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
320bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
321bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
322bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c