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