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