93c2a0195f820a0c50815a32741f02241fdecadb
[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 ASFLAGS=$(CFLAGS)
24
25 GENERAL=Makefile
26 TEST=bntest.c exptest.c
27 APPS=
28
29 LIB=$(TOP)/libcrypto.a
30 LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mul.c \
31         bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
32         bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c bn_recp.c bn_mont.c \
33         bn_mpi.c bn_exp2.c
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
40 SRC= $(LIBSRC)
41
42 EXHEADER= bn.h
43 HEADER= bn_lcl.h bn_prime.h $(EXHEADER)
44
45 ALL=    $(GENERAL) $(SRC) $(HEADER)
46
47 top:
48         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
49
50 all:    lib
51
52 knuth: bn_knuth.c
53         cc -pg -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a
54
55 knuth.fast: bn_knuth.c
56         cc -pg -fast -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a
57
58
59 lib:    $(LIBOBJ)
60         $(AR) $(LIB) $(LIBOBJ)
61         $(RANLIB) $(LIB)
62         @touch lib
63
64 # elf
65 asm/bn86-elf.o: asm/bn86unix.cpp
66         $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o
67
68 asm/co86-elf.o: asm/co86unix.cpp
69         $(CPP) -DELF asm/co86unix.cpp | as -o asm/co86-elf.o
70
71 # solaris
72 asm/bn86-sol.o: asm/bn86unix.cpp
73         $(CC) -E -DSOL asm/bn86unix.cpp | sed 's/^#.*//' > asm/bn86-sol.s
74         as -o asm/bn86-sol.o asm/bn86-sol.s
75         rm -f asm/bn86-sol.s
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
82 # a.out
83 asm/bn86-out.o: asm/bn86unix.cpp
84         $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o
85
86 asm/co86-out.o: asm/co86unix.cpp
87         $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o
88
89 # bsdi
90 asm/bn86bsdi.o: asm/bn86unix.cpp
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 )
101
102 asm/sparcv8.o: asm/sparcv8.S
103
104 asm/sparcv8plus.o: asm/sparcv8plus.S
105         $(CC) -xarch=v8plus -c asm/sparcv8plus.S -o asm/sparcv8plus.o
106
107 asm/sparcv8plus-gcc.o: asm/sparcv8plus.S
108         gcc -E asm/sparcv8plus.S | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc.o
109         # GNU as cannot handle that file, so we circumvent PATH and
110         # always use /usr/ccs/bin/as.
111
112 # MIPS 64 bit assember 
113 asm/mips3.o: asm/mips3.s
114
115 # MIPS 32 bit assember
116 asm/mips1.o: asm/mips1.s
117         /usr/bin/as -O2 -o asm/mips1.o asm/mips1.s
118
119 files:
120         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
121
122 links:
123         @$(TOP)/util/point.sh Makefile.ssl Makefile
124         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
125         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
126         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
127
128 install:
129         @for i in $(EXHEADER) ; \
130         do  \
131         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
132         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
133         done;
134
135 exptest:
136         rm -f exptest
137         gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
138
139 div:
140         rm -f a.out
141         gcc -I.. -g div.c ../../libcrypto.a
142
143 tags:
144         ctags $(SRC)
145
146 tests:
147
148 lint:
149         lint -DLINT $(INCLUDES) $(SRC)>fluff
150
151 depend:
152         $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
153
154 dclean:
155         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
156         mv -f Makefile.new $(MAKEFILE)
157
158 clean:
159         rm -f asm/co86unix.cpp asm/bn86unix.cpp *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s
160
161 # DO NOT DELETE THIS LINE -- make depend depends on it.
162
163 bn_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
164 bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
165 bn_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
166 bn_add.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
167 bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
168 bn_add.o: ../cryptlib.h bn_lcl.h
169 bn_asm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
170 bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
171 bn_asm.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
172 bn_asm.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
173 bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
174 bn_asm.o: ../cryptlib.h bn_lcl.h
175 bn_blind.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
176 bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
177 bn_blind.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
178 bn_blind.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
179 bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
180 bn_blind.o: ../cryptlib.h bn_lcl.h
181 bn_div.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
182 bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
183 bn_div.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
184 bn_div.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
185 bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
186 bn_div.o: ../cryptlib.h bn_lcl.h
187 bn_err.o: ../../include/openssl/bn.h ../../include/openssl/err.h
188 bn_err.o: ../../include/openssl/opensslconf.h
189 bn_exp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
190 bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
191 bn_exp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
192 bn_exp.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
193 bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
194 bn_exp.o: ../cryptlib.h bn_lcl.h
195 bn_exp2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
196 bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
197 bn_exp2.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
198 bn_exp2.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
199 bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
200 bn_exp2.o: ../cryptlib.h bn_lcl.h
201 bn_gcd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
202 bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
203 bn_gcd.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
204 bn_gcd.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
205 bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
206 bn_gcd.o: ../cryptlib.h bn_lcl.h
207 bn_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
208 bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
209 bn_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
210 bn_lib.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
211 bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
212 bn_lib.o: ../cryptlib.h bn_lcl.h
213 bn_mont.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
214 bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
215 bn_mont.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
216 bn_mont.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
217 bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
218 bn_mont.o: ../cryptlib.h bn_lcl.h
219 bn_mpi.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
220 bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
221 bn_mpi.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
222 bn_mpi.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
223 bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
224 bn_mpi.o: ../cryptlib.h bn_lcl.h
225 bn_mul.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
226 bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
227 bn_mul.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
228 bn_mul.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
229 bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
230 bn_mul.o: ../cryptlib.h bn_lcl.h
231 bn_prime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
232 bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
233 bn_prime.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
234 bn_prime.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
235 bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
236 bn_prime.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h bn_prime.h
237 bn_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
238 bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
239 bn_print.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
240 bn_print.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
241 bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
242 bn_print.o: ../cryptlib.h bn_lcl.h
243 bn_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
244 bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
245 bn_rand.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
246 bn_rand.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
247 bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
248 bn_rand.o: ../../include/openssl/stack.h ../cryptlib.h bn_lcl.h
249 bn_recp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
250 bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
251 bn_recp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
252 bn_recp.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
253 bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
254 bn_recp.o: ../cryptlib.h bn_lcl.h
255 bn_shift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
256 bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
257 bn_shift.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
258 bn_shift.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
259 bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
260 bn_shift.o: ../cryptlib.h bn_lcl.h
261 bn_sqr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
262 bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
263 bn_sqr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
264 bn_sqr.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
265 bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
266 bn_sqr.o: ../cryptlib.h bn_lcl.h
267 bn_word.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
268 bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
269 bn_word.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
270 bn_word.o: ../../include/openssl/err.h ../../include/openssl/opensslconf.h
271 bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
272 bn_word.o: ../cryptlib.h bn_lcl.h