2cfc1aaa3b11c7e15a1f516e0da9c4e443a0bc06
[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 expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
115                                 sfx=".so"; \
116                                 cp cyg$$l.dll $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
117                           else \
118                                 case "$(CFLAGS)" in \
119                                 *DSO_BEOS*)     sfx=".so";;     \
120                                 *DSO_DLFCN*)    sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;;    \
121                                 *DSO_DL*)       sfx=".sl";;     \
122                                 *DSO_WIN32*)    sfx="eay32.dll"; pfx=;; \
123                                 *)              sfx=".bad";;    \
124                                 esac; \
125                                 cp $$pfx$$l$$sfx $(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 update: local_depend
150         @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
151
152 depend: local_depend
153         @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
154         @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
155 local_depend:
156         @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
157
158 dclean:
159         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
160         mv -f Makefile.new $(MAKEFILE)
161         @target=dclean; $(RECURSIVE_MAKE)
162
163 clean:
164         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
165         @target=clean; $(RECURSIVE_MAKE)
166
167 # DO NOT DELETE THIS LINE -- make depend depends on it.
168
169 e_4758cca.o: ../include/openssl/asn1.h ../include/openssl/bio.h
170 e_4758cca.o: ../include/openssl/bn.h ../include/openssl/buffer.h
171 e_4758cca.o: ../include/openssl/crypto.h ../include/openssl/dso.h
172 e_4758cca.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
173 e_4758cca.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
174 e_4758cca.o: ../include/openssl/engine.h ../include/openssl/err.h
175 e_4758cca.o: ../include/openssl/evp.h ../include/openssl/lhash.h
176 e_4758cca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
177 e_4758cca.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
178 e_4758cca.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
179 e_4758cca.o: ../include/openssl/rand.h ../include/openssl/rsa.h
180 e_4758cca.o: ../include/openssl/safestack.h ../include/openssl/sha.h
181 e_4758cca.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
182 e_4758cca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
183 e_4758cca.o: e_4758cca.c e_4758cca_err.c e_4758cca_err.h
184 e_4758cca.o: vendor_defns/hw_4758_cca.h
185 e_aep.o: ../include/openssl/asn1.h ../include/openssl/bio.h
186 e_aep.o: ../include/openssl/bn.h ../include/openssl/buffer.h
187 e_aep.o: ../include/openssl/crypto.h ../include/openssl/dh.h
188 e_aep.o: ../include/openssl/dsa.h ../include/openssl/dso.h
189 e_aep.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
190 e_aep.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
191 e_aep.o: ../include/openssl/engine.h ../include/openssl/err.h
192 e_aep.o: ../include/openssl/evp.h ../include/openssl/lhash.h
193 e_aep.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
194 e_aep.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
195 e_aep.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
196 e_aep.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
197 e_aep.o: ../include/openssl/sha.h ../include/openssl/stack.h
198 e_aep.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
199 e_aep.o: ../include/openssl/x509_vfy.h e_aep.c e_aep_err.c e_aep_err.h
200 e_aep.o: vendor_defns/aep.h
201 e_atalla.o: ../include/openssl/asn1.h ../include/openssl/bio.h
202 e_atalla.o: ../include/openssl/bn.h ../include/openssl/buffer.h
203 e_atalla.o: ../include/openssl/crypto.h ../include/openssl/dh.h
204 e_atalla.o: ../include/openssl/dsa.h ../include/openssl/dso.h
205 e_atalla.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
206 e_atalla.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
207 e_atalla.o: ../include/openssl/engine.h ../include/openssl/err.h
208 e_atalla.o: ../include/openssl/evp.h ../include/openssl/lhash.h
209 e_atalla.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
210 e_atalla.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
211 e_atalla.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
212 e_atalla.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
213 e_atalla.o: ../include/openssl/sha.h ../include/openssl/stack.h
214 e_atalla.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
215 e_atalla.o: ../include/openssl/x509_vfy.h e_atalla.c e_atalla_err.c
216 e_atalla.o: e_atalla_err.h vendor_defns/atalla.h
217 e_capi.o: ../include/openssl/asn1.h ../include/openssl/bio.h
218 e_capi.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
219 e_capi.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
220 e_capi.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
221 e_capi.o: ../include/openssl/engine.h ../include/openssl/evp.h
222 e_capi.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
223 e_capi.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
224 e_capi.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
225 e_capi.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
226 e_capi.o: ../include/openssl/sha.h ../include/openssl/stack.h
227 e_capi.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
228 e_capi.o: ../include/openssl/x509_vfy.h e_capi.c
229 e_chil.o: ../include/openssl/asn1.h ../include/openssl/bio.h
230 e_chil.o: ../include/openssl/bn.h ../include/openssl/buffer.h
231 e_chil.o: ../include/openssl/crypto.h ../include/openssl/dh.h
232 e_chil.o: ../include/openssl/dso.h ../include/openssl/e_os2.h
233 e_chil.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
234 e_chil.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
235 e_chil.o: ../include/openssl/err.h ../include/openssl/evp.h
236 e_chil.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
237 e_chil.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
238 e_chil.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
239 e_chil.o: ../include/openssl/pem.h ../include/openssl/pem2.h
240 e_chil.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
241 e_chil.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
242 e_chil.o: ../include/openssl/sha.h ../include/openssl/stack.h
243 e_chil.o: ../include/openssl/symhacks.h ../include/openssl/ui.h
244 e_chil.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_chil.c
245 e_chil.o: e_chil_err.c e_chil_err.h vendor_defns/hwcryptohook.h
246 e_cswift.o: ../include/openssl/asn1.h ../include/openssl/bio.h
247 e_cswift.o: ../include/openssl/bn.h ../include/openssl/buffer.h
248 e_cswift.o: ../include/openssl/crypto.h ../include/openssl/dh.h
249 e_cswift.o: ../include/openssl/dsa.h ../include/openssl/dso.h
250 e_cswift.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
251 e_cswift.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
252 e_cswift.o: ../include/openssl/engine.h ../include/openssl/err.h
253 e_cswift.o: ../include/openssl/evp.h ../include/openssl/lhash.h
254 e_cswift.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
255 e_cswift.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
256 e_cswift.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
257 e_cswift.o: ../include/openssl/rand.h ../include/openssl/rsa.h
258 e_cswift.o: ../include/openssl/safestack.h ../include/openssl/sha.h
259 e_cswift.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
260 e_cswift.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_cswift.c
261 e_cswift.o: e_cswift_err.c e_cswift_err.h vendor_defns/cswift.h
262 e_gmp.o: ../include/openssl/asn1.h ../include/openssl/bio.h
263 e_gmp.o: ../include/openssl/bn.h ../include/openssl/buffer.h
264 e_gmp.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
265 e_gmp.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
266 e_gmp.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
267 e_gmp.o: ../include/openssl/evp.h ../include/openssl/lhash.h
268 e_gmp.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
269 e_gmp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
270 e_gmp.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
271 e_gmp.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
272 e_gmp.o: ../include/openssl/sha.h ../include/openssl/stack.h
273 e_gmp.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
274 e_gmp.o: ../include/openssl/x509_vfy.h e_gmp.c
275 e_nuron.o: ../include/openssl/asn1.h ../include/openssl/bio.h
276 e_nuron.o: ../include/openssl/bn.h ../include/openssl/buffer.h
277 e_nuron.o: ../include/openssl/crypto.h ../include/openssl/dh.h
278 e_nuron.o: ../include/openssl/dsa.h ../include/openssl/dso.h
279 e_nuron.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
280 e_nuron.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
281 e_nuron.o: ../include/openssl/engine.h ../include/openssl/err.h
282 e_nuron.o: ../include/openssl/evp.h ../include/openssl/lhash.h
283 e_nuron.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
284 e_nuron.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
285 e_nuron.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
286 e_nuron.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
287 e_nuron.o: ../include/openssl/sha.h ../include/openssl/stack.h
288 e_nuron.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
289 e_nuron.o: ../include/openssl/x509_vfy.h e_nuron.c e_nuron_err.c e_nuron_err.h
290 e_padlock.o: ../include/openssl/aes.h ../include/openssl/asn1.h
291 e_padlock.o: ../include/openssl/bio.h ../include/openssl/buffer.h
292 e_padlock.o: ../include/openssl/crypto.h ../include/openssl/dso.h
293 e_padlock.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
294 e_padlock.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
295 e_padlock.o: ../include/openssl/engine.h ../include/openssl/err.h
296 e_padlock.o: ../include/openssl/evp.h ../include/openssl/lhash.h
297 e_padlock.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
298 e_padlock.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
299 e_padlock.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
300 e_padlock.o: ../include/openssl/rand.h ../include/openssl/safestack.h
301 e_padlock.o: ../include/openssl/sha.h ../include/openssl/stack.h
302 e_padlock.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
303 e_padlock.o: ../include/openssl/x509_vfy.h e_padlock.c
304 e_sureware.o: ../include/openssl/asn1.h ../include/openssl/bio.h
305 e_sureware.o: ../include/openssl/bn.h ../include/openssl/buffer.h
306 e_sureware.o: ../include/openssl/crypto.h ../include/openssl/dh.h
307 e_sureware.o: ../include/openssl/dsa.h ../include/openssl/dso.h
308 e_sureware.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
309 e_sureware.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
310 e_sureware.o: ../include/openssl/engine.h ../include/openssl/err.h
311 e_sureware.o: ../include/openssl/evp.h ../include/openssl/lhash.h
312 e_sureware.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
313 e_sureware.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
314 e_sureware.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
315 e_sureware.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
316 e_sureware.o: ../include/openssl/rand.h ../include/openssl/rsa.h
317 e_sureware.o: ../include/openssl/safestack.h ../include/openssl/sha.h
318 e_sureware.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
319 e_sureware.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
320 e_sureware.o: e_sureware.c e_sureware_err.c e_sureware_err.h
321 e_sureware.o: vendor_defns/sureware.h
322 e_ubsec.o: ../include/openssl/asn1.h ../include/openssl/bio.h
323 e_ubsec.o: ../include/openssl/bn.h ../include/openssl/buffer.h
324 e_ubsec.o: ../include/openssl/crypto.h ../include/openssl/dh.h
325 e_ubsec.o: ../include/openssl/dsa.h ../include/openssl/dso.h
326 e_ubsec.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
327 e_ubsec.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
328 e_ubsec.o: ../include/openssl/engine.h ../include/openssl/err.h
329 e_ubsec.o: ../include/openssl/evp.h ../include/openssl/lhash.h
330 e_ubsec.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
331 e_ubsec.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
332 e_ubsec.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
333 e_ubsec.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
334 e_ubsec.o: ../include/openssl/sha.h ../include/openssl/stack.h
335 e_ubsec.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
336 e_ubsec.o: ../include/openssl/x509_vfy.h e_ubsec.c e_ubsec_err.c e_ubsec_err.h
337 e_ubsec.o: vendor_defns/hw_ubsec.h