make update
[openssl.git] / engines / Makefile
1 #
2 # OpenSSL/engines/Makefile
3 #
4
5 DIR=    engines
6 TOP=    ..
7 CC=     cc
8 INCLUDES= -I../include
9 CFLAG=-g
10 MAKEFILE=       Makefile
11 AR=             ar r
12 ENGDIRS= ccgost
13
14 RECURSIVE_MAKE= [ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \
15                     (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
16                     $(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \
17                 done;
18
19 PEX_LIBS=
20 EX_LIBS=
21
22 CFLAGS= $(INCLUDES) $(CFLAG)
23
24 GENERAL=Makefile engines.com install.com engine_vector.mar
25 TEST=
26 APPS=
27
28 LIB=$(TOP)/libcrypto.a
29 LIBNAMES= 4758cca aep atalla cswift gmp chil nuron sureware ubsec padlock capi
30
31 LIBSRC= e_4758cca.c \
32         e_aep.c \
33         e_atalla.c \
34         e_cswift.c \
35         e_gmp.c \
36         e_chil.c \
37         e_nuron.c \
38         e_sureware.c \
39         e_ubsec.c \
40         e_padlock.c \
41         e_capi.c
42 LIBOBJ= e_4758cca.o \
43         e_aep.o \
44         e_atalla.o \
45         e_cswift.o \
46         e_gmp.o \
47         e_chil.o \
48         e_nuron.o \
49         e_sureware.o \
50         e_ubsec.o \
51         e_padlock.o \
52         e_capi.o
53
54 SRC= $(LIBSRC)
55
56 EXHEADER= 
57 HEADER= e_4758cca_err.c e_4758cca_err.h \
58         e_aep_err.c e_aep_err.h \
59         e_atalla_err.c e_atalla_err.h \
60         e_cswift_err.c e_cswift_err.h \
61         e_gmp_err.c e_gmp_err.h \
62         e_chil_err.c e_chil_err.h \
63         e_nuron_err.c e_nuron_err.h \
64         e_sureware_err.c e_sureware_err.h \
65         e_ubsec_err.c e_ubsec_err.h \
66         e_capi_err.c e_capi_err.h
67
68 ALL=    $(GENERAL) $(SRC) $(HEADER)
69
70 top:
71         (cd ..; $(MAKE) DIRS=$(DIR) all)
72
73 all:    lib subdirs
74
75 lib:    $(LIBOBJ)
76         @if [ -n "$(SHARED_LIBS)" ]; then \
77                 set -e; \
78                 for l in $(LIBNAMES); do \
79                         $(MAKE) -f ../Makefile.shared -e \
80                                 LIBNAME=$$l LIBEXTRAS=e_$$l.o \
81                                 LIBDEPS='-L.. -lcrypto $(EX_LIBS)' \
82                                 link_o.$(SHLIB_TARGET); \
83                 done; \
84         else \
85                 $(AR) $(LIB) $(LIBOBJ); \
86                 $(RANLIB) $(LIB) || echo Never mind.; \
87         fi; \
88         touch lib
89
90 subdirs:
91         echo $(EDIRS)
92         @target=all; $(RECURSIVE_MAKE)
93
94 files:
95         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
96         @target=files; $(RECURSIVE_MAKE)
97
98 links:
99         @target=links; $(RECURSIVE_MAKE)
100
101 # XXXXX This currently only works on systems that use .so as suffix
102 # for shared libraries as well as for Cygwin which uses the
103 # dlfcn_name_converter and therefore stores the engines with .so suffix, too.
104 # XXXXX This was extended to HP-UX dl targets, which use .sl suffix.
105 # XXXXX This was extended to mingw targets, which use eay32.dll suffix without lib as prefix.
106 install:
107         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
108         @if [ -n "$(SHARED_LIBS)" ]; then \
109                 set -e; \
110                 $(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines; \
111                 for l in $(LIBNAMES); do \
112                         ( echo installing $$l; \
113                           pfx=lib; \
114                           if [ "$(PLATFORM)" != "Cygwin" ]; then \
115                                 case "$(CFLAGS)" in \
116                                 *DSO_BEOS*)     sfx=".so";;     \
117                                 *DSO_DLFCN*)    sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;;    \
118                                 *DSO_DL*)       sfx=".sl";;     \
119                                 *DSO_WIN32*)    sfx="eay32.dll"; pfx=;; \
120                                 *)              sfx=".bad";;    \
121                                 esac; \
122                                 cp $$pfx$$l$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
123                           else \
124                                 sfx=".so"; \
125                                 cp cyg$$l.dll $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
126                           fi; \
127                           chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
128                           mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx ); \
129                 done; \
130         fi
131         @target=install; $(RECURSIVE_MAKE)
132
133 tags:
134         ctags $(SRC)
135
136 errors:
137         set -e; for l in $(LIBNAMES); do \
138                 $(PERL) ../util/mkerr.pl -conf e_$$l.ec \
139                         -nostatic -staticloader -write e_$$l.c; \
140         done
141         (cd ccgost; $(MAKE) PERL=$(PERL) errors)
142
143 tests:
144
145 lint:
146         lint -DLINT $(INCLUDES) $(SRC)>fluff
147         @target=lint; $(RECURSIVE_MAKE)
148
149 depend:
150         @if [ -z "$(THIS)" ]; then \
151             $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
152         fi
153         @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
154         @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
155
156 dclean:
157         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
158         mv -f Makefile.new $(MAKEFILE)
159         @target=dclean; $(RECURSIVE_MAKE)
160
161 clean:
162         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
163         @target=clean; $(RECURSIVE_MAKE)
164
165 # DO NOT DELETE THIS LINE -- make depend depends on it.
166
167 e_4758cca.o: ../include/openssl/asn1.h ../include/openssl/bio.h
168 e_4758cca.o: ../include/openssl/bn.h ../include/openssl/buffer.h
169 e_4758cca.o: ../include/openssl/crypto.h ../include/openssl/dso.h
170 e_4758cca.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
171 e_4758cca.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
172 e_4758cca.o: ../include/openssl/engine.h ../include/openssl/err.h
173 e_4758cca.o: ../include/openssl/evp.h ../include/openssl/lhash.h
174 e_4758cca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
175 e_4758cca.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
176 e_4758cca.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
177 e_4758cca.o: ../include/openssl/rand.h ../include/openssl/rsa.h
178 e_4758cca.o: ../include/openssl/safestack.h ../include/openssl/sha.h
179 e_4758cca.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
180 e_4758cca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
181 e_4758cca.o: e_4758cca.c e_4758cca_err.c e_4758cca_err.h
182 e_4758cca.o: vendor_defns/hw_4758_cca.h
183 e_aep.o: ../include/openssl/asn1.h ../include/openssl/bio.h
184 e_aep.o: ../include/openssl/bn.h ../include/openssl/buffer.h
185 e_aep.o: ../include/openssl/crypto.h ../include/openssl/dh.h
186 e_aep.o: ../include/openssl/dsa.h ../include/openssl/dso.h
187 e_aep.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
188 e_aep.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
189 e_aep.o: ../include/openssl/engine.h ../include/openssl/err.h
190 e_aep.o: ../include/openssl/evp.h ../include/openssl/lhash.h
191 e_aep.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
192 e_aep.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
193 e_aep.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
194 e_aep.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
195 e_aep.o: ../include/openssl/sha.h ../include/openssl/stack.h
196 e_aep.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
197 e_aep.o: ../include/openssl/x509_vfy.h e_aep.c e_aep_err.c e_aep_err.h
198 e_aep.o: vendor_defns/aep.h
199 e_atalla.o: ../include/openssl/asn1.h ../include/openssl/bio.h
200 e_atalla.o: ../include/openssl/bn.h ../include/openssl/buffer.h
201 e_atalla.o: ../include/openssl/crypto.h ../include/openssl/dh.h
202 e_atalla.o: ../include/openssl/dsa.h ../include/openssl/dso.h
203 e_atalla.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
204 e_atalla.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
205 e_atalla.o: ../include/openssl/engine.h ../include/openssl/err.h
206 e_atalla.o: ../include/openssl/evp.h ../include/openssl/lhash.h
207 e_atalla.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
208 e_atalla.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
209 e_atalla.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
210 e_atalla.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
211 e_atalla.o: ../include/openssl/sha.h ../include/openssl/stack.h
212 e_atalla.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
213 e_atalla.o: ../include/openssl/x509_vfy.h e_atalla.c e_atalla_err.c
214 e_atalla.o: e_atalla_err.h vendor_defns/atalla.h
215 e_capi.o: ../include/openssl/asn1.h ../include/openssl/bio.h
216 e_capi.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
217 e_capi.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
218 e_capi.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
219 e_capi.o: ../include/openssl/engine.h ../include/openssl/evp.h
220 e_capi.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
221 e_capi.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
222 e_capi.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
223 e_capi.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
224 e_capi.o: ../include/openssl/sha.h ../include/openssl/stack.h
225 e_capi.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
226 e_capi.o: ../include/openssl/x509_vfy.h e_capi.c
227 e_chil.o: ../include/openssl/asn1.h ../include/openssl/bio.h
228 e_chil.o: ../include/openssl/bn.h ../include/openssl/buffer.h
229 e_chil.o: ../include/openssl/crypto.h ../include/openssl/dh.h
230 e_chil.o: ../include/openssl/dso.h ../include/openssl/e_os2.h
231 e_chil.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
232 e_chil.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
233 e_chil.o: ../include/openssl/err.h ../include/openssl/evp.h
234 e_chil.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
235 e_chil.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
236 e_chil.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
237 e_chil.o: ../include/openssl/pem.h ../include/openssl/pem2.h
238 e_chil.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
239 e_chil.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
240 e_chil.o: ../include/openssl/sha.h ../include/openssl/stack.h
241 e_chil.o: ../include/openssl/symhacks.h ../include/openssl/ui.h
242 e_chil.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_chil.c
243 e_chil.o: e_chil_err.c e_chil_err.h vendor_defns/hwcryptohook.h
244 e_cswift.o: ../include/openssl/asn1.h ../include/openssl/bio.h
245 e_cswift.o: ../include/openssl/bn.h ../include/openssl/buffer.h
246 e_cswift.o: ../include/openssl/crypto.h ../include/openssl/dh.h
247 e_cswift.o: ../include/openssl/dsa.h ../include/openssl/dso.h
248 e_cswift.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
249 e_cswift.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
250 e_cswift.o: ../include/openssl/engine.h ../include/openssl/err.h
251 e_cswift.o: ../include/openssl/evp.h ../include/openssl/lhash.h
252 e_cswift.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
253 e_cswift.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
254 e_cswift.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
255 e_cswift.o: ../include/openssl/rand.h ../include/openssl/rsa.h
256 e_cswift.o: ../include/openssl/safestack.h ../include/openssl/sha.h
257 e_cswift.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
258 e_cswift.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_cswift.c
259 e_cswift.o: e_cswift_err.c e_cswift_err.h vendor_defns/cswift.h
260 e_gmp.o: ../include/openssl/asn1.h ../include/openssl/bio.h
261 e_gmp.o: ../include/openssl/bn.h ../include/openssl/buffer.h
262 e_gmp.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
263 e_gmp.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
264 e_gmp.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
265 e_gmp.o: ../include/openssl/evp.h ../include/openssl/lhash.h
266 e_gmp.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
267 e_gmp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
268 e_gmp.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
269 e_gmp.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
270 e_gmp.o: ../include/openssl/sha.h ../include/openssl/stack.h
271 e_gmp.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
272 e_gmp.o: ../include/openssl/x509_vfy.h e_gmp.c
273 e_nuron.o: ../include/openssl/asn1.h ../include/openssl/bio.h
274 e_nuron.o: ../include/openssl/bn.h ../include/openssl/buffer.h
275 e_nuron.o: ../include/openssl/crypto.h ../include/openssl/dh.h
276 e_nuron.o: ../include/openssl/dsa.h ../include/openssl/dso.h
277 e_nuron.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
278 e_nuron.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
279 e_nuron.o: ../include/openssl/engine.h ../include/openssl/err.h
280 e_nuron.o: ../include/openssl/evp.h ../include/openssl/lhash.h
281 e_nuron.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
282 e_nuron.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
283 e_nuron.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
284 e_nuron.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
285 e_nuron.o: ../include/openssl/sha.h ../include/openssl/stack.h
286 e_nuron.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
287 e_nuron.o: ../include/openssl/x509_vfy.h e_nuron.c e_nuron_err.c e_nuron_err.h
288 e_padlock.o: ../include/openssl/aes.h ../include/openssl/asn1.h
289 e_padlock.o: ../include/openssl/bio.h ../include/openssl/buffer.h
290 e_padlock.o: ../include/openssl/crypto.h ../include/openssl/dso.h
291 e_padlock.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
292 e_padlock.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
293 e_padlock.o: ../include/openssl/engine.h ../include/openssl/err.h
294 e_padlock.o: ../include/openssl/evp.h ../include/openssl/lhash.h
295 e_padlock.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
296 e_padlock.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
297 e_padlock.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
298 e_padlock.o: ../include/openssl/rand.h ../include/openssl/safestack.h
299 e_padlock.o: ../include/openssl/sha.h ../include/openssl/stack.h
300 e_padlock.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
301 e_padlock.o: ../include/openssl/x509_vfy.h e_padlock.c
302 e_sureware.o: ../include/openssl/asn1.h ../include/openssl/bio.h
303 e_sureware.o: ../include/openssl/bn.h ../include/openssl/buffer.h
304 e_sureware.o: ../include/openssl/crypto.h ../include/openssl/dh.h
305 e_sureware.o: ../include/openssl/dsa.h ../include/openssl/dso.h
306 e_sureware.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
307 e_sureware.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
308 e_sureware.o: ../include/openssl/engine.h ../include/openssl/err.h
309 e_sureware.o: ../include/openssl/evp.h ../include/openssl/lhash.h
310 e_sureware.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
311 e_sureware.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
312 e_sureware.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
313 e_sureware.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
314 e_sureware.o: ../include/openssl/rand.h ../include/openssl/rsa.h
315 e_sureware.o: ../include/openssl/safestack.h ../include/openssl/sha.h
316 e_sureware.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
317 e_sureware.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
318 e_sureware.o: e_sureware.c e_sureware_err.c e_sureware_err.h
319 e_sureware.o: vendor_defns/sureware.h
320 e_ubsec.o: ../include/openssl/asn1.h ../include/openssl/bio.h
321 e_ubsec.o: ../include/openssl/bn.h ../include/openssl/buffer.h
322 e_ubsec.o: ../include/openssl/crypto.h ../include/openssl/dh.h
323 e_ubsec.o: ../include/openssl/dsa.h ../include/openssl/dso.h
324 e_ubsec.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
325 e_ubsec.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
326 e_ubsec.o: ../include/openssl/engine.h ../include/openssl/err.h
327 e_ubsec.o: ../include/openssl/evp.h ../include/openssl/lhash.h
328 e_ubsec.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
329 e_ubsec.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
330 e_ubsec.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
331 e_ubsec.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
332 e_ubsec.o: ../include/openssl/sha.h ../include/openssl/stack.h
333 e_ubsec.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
334 e_ubsec.o: ../include/openssl/x509_vfy.h e_ubsec.c e_ubsec_err.c e_ubsec_err.h
335 e_ubsec.o: vendor_defns/hw_ubsec.h