*** empty log message ***
[openssl.git] / crypto / bn / Makefile.ssl
1 #
2 # SSLeay/crypto/bn/Makefile
3 #
4
5 DIR=    bn
6 TOP=    ../..
7 CC=     cc
8 INCLUDES= -I.. -I../../include
9 CFLAG=-g
10 INSTALL_PREFIX=
11 OPENSSLDIR=     /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKE=           make -f Makefile.ssl
14 MAKEDEPEND=     $(TOP)/util/domd $(TOP)
15 MAKEFILE=       Makefile.ssl
16 AR=             ar r
17
18 BN_ASM=         bn_asm.o
19 # or use
20 #BN_ASM=        bn86-elf.o
21
22 CFLAGS= $(INCLUDES) $(CFLAG)
23
24 # We let the C compiler driver to take care of .s files. This is done in
25 # order to be excused from maintaining a separate set of architecture
26 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
27 # gcc, then the driver will automatically translate it to -xarch=v8plus
28 # and pass it down to assembler.
29 AS=$(CC) -c
30 ASFLAGS=$(CFLAGS)
31
32 GENERAL=Makefile
33 TEST=bntest.c exptest.c
34 APPS=
35
36 LIB=$(TOP)/libcrypto.a
37 LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c \
38         bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
39         bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c bn_recp.c bn_mont.c \
40         bn_mpi.c bn_exp2.c
41
42 LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o \
43         bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
44         bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) bn_recp.o bn_mont.o \
45         bn_mpi.o bn_exp2.o
46
47 SRC= $(LIBSRC)
48
49 EXHEADER= bn.h
50 HEADER= bn_lcl.h bn_prime.h $(EXHEADER)
51
52 ALL=    $(GENERAL) $(SRC) $(HEADER)
53
54 top:
55         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
56
57 all:    lib
58
59 bn_prime.h: bn_prime.pl
60         $(PERL) bn_prime.pl >bn_prime.h
61
62 divtest: divtest.c ../../libcrypto.a
63         cc -I../../include divtest.c -o divtest ../../libcrypto.a
64
65 bnbug: bnbug.c ../../libcrypto.a top
66         cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
67
68 lib:    $(LIBOBJ)
69         $(AR) $(LIB) $(LIBOBJ)
70         $(RANLIB) $(LIB)
71         @touch lib
72
73 # elf
74 asm/bn86-elf.o: asm/bn86unix.cpp
75         $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o
76
77 asm/co86-elf.o: asm/co86unix.cpp
78         $(CPP) -DELF asm/co86unix.cpp | as -o asm/co86-elf.o
79
80 # solaris
81 asm/bn86-sol.o: asm/bn86unix.cpp
82         $(CC) -E -DSOL asm/bn86unix.cpp | sed 's/^#.*//' > asm/bn86-sol.s
83         as -o asm/bn86-sol.o asm/bn86-sol.s
84         rm -f asm/bn86-sol.s
85
86 asm/co86-sol.o: asm/co86unix.cpp
87         $(CC) -E -DSOL asm/co86unix.cpp | sed 's/^#.*//' > asm/co86-sol.s
88         as -o asm/co86-sol.o asm/co86-sol.s
89         rm -f asm/co86-sol.s
90
91 # a.out
92 asm/bn86-out.o: asm/bn86unix.cpp
93         $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o
94
95 asm/co86-out.o: asm/co86unix.cpp
96         $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o
97
98 # bsdi
99 asm/bn86bsdi.o: asm/bn86unix.cpp
100         $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o
101
102 asm/co86bsdi.o: asm/co86unix.cpp
103         $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o
104
105 asm/bn86unix.cpp: asm/bn-586.pl
106         (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp )
107
108 asm/co86unix.cpp: asm/co-586.pl
109         (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp )
110
111 asm/sparcv8.o: asm/sparcv8.S
112
113 asm/sparcv8plus.o: asm/sparcv8plus.S
114
115 # Old GNU assembler doesn't understand V9 instructions, so we
116 # hire /usr/ccs/bin/as to do the job. Note that option is called
117 # *-gcc27, but even gcc 2>=8 users may experience similar problem
118 # if they didn't bother to upgrade GNU assembler. Such users should
119 # not choose this option, but be adviced to *remove* GNU assembler
120 # or upgrade it.
121 asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S
122         $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \
123                 /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o
124
125 files:
126         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
127
128 links:
129         @$(TOP)/util/point.sh Makefile.ssl Makefile
130         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
131         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
132         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
133
134 install:
135         @for i in $(EXHEADER) ; \
136         do  \
137         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
138         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
139         done;
140
141 exptest:
142         rm -f exptest
143         gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
144
145 div:
146         rm -f a.out
147         gcc -I.. -g div.c ../../libcrypto.a
148
149 tags:
150         ctags $(SRC)
151
152 tests:
153
154 lint:
155         lint -DLINT $(INCLUDES) $(SRC)>fluff
156
157 depend:
158         $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
159
160 dclean:
161         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
162         mv -f Makefile.new $(MAKEFILE)
163
164 clean:
165         rm -f asm/co86unix.cpp asm/bn86unix.cpp *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s
166
167 # DO NOT DELETE THIS LINE -- make depend depends on it.
168
169 bn_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
170 bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
171 bn_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
172 bn_add.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
173 bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
174 bn_add.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
175 bn_asm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
176 bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
177 bn_asm.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
178 bn_asm.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
179 bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
180 bn_asm.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
181 bn_blind.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
182 bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
183 bn_blind.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
184 bn_blind.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
185 bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
186 bn_blind.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
187 bn_ctx.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
188 bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
189 bn_ctx.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
190 bn_ctx.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
191 bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
192 bn_ctx.o: ../../include/openssl/stack.h ../cryptlib.h
193 bn_div.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
194 bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
195 bn_div.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
196 bn_div.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
197 bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
198 bn_div.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
199 bn_err.o: ../../include/openssl/bn.h ../../include/openssl/err.h
200 bn_err.o: ../../include/openssl/opensslconf.h
201 bn_exp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
202 bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
203 bn_exp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
204 bn_exp.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
205 bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
206 bn_exp.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
207 bn_exp2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
208 bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
209 bn_exp2.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
210 bn_exp2.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
211 bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
212 bn_exp2.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
213 bn_gcd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
214 bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
215 bn_gcd.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
216 bn_gcd.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
217 bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
218 bn_gcd.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
219 bn_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
220 bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
221 bn_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
222 bn_lib.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
223 bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
224 bn_lib.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
225 bn_mont.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
226 bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
227 bn_mont.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
228 bn_mont.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
229 bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
230 bn_mont.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
231 bn_mpi.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
232 bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
233 bn_mpi.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
234 bn_mpi.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
235 bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
236 bn_mpi.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
237 bn_mul.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
238 bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
239 bn_mul.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
240 bn_mul.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
241 bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
242 bn_mul.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
243 bn_prime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
244 bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
245 bn_prime.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
246 bn_prime.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
247 bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
248 bn_prime.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
249 bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.h
250 bn_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
251 bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
252 bn_print.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
253 bn_print.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
254 bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
255 bn_print.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
256 bn_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
257 bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
258 bn_rand.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
259 bn_rand.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
260 bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
261 bn_rand.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
262 bn_rand.o: ../cryptlib.h bn_lcl.h
263 bn_recp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
264 bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
265 bn_recp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
266 bn_recp.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
267 bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
268 bn_recp.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
269 bn_shift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
270 bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
271 bn_shift.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
272 bn_shift.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
273 bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
274 bn_shift.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
275 bn_sqr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
276 bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
277 bn_sqr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
278 bn_sqr.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
279 bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
280 bn_sqr.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
281 bn_word.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
282 bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
283 bn_word.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
284 bn_word.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
285 bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
286 bn_word.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h