]> git.ipfire.org Git - thirdparty/openssl.git/blob - engines/Makefile
e3719bcdae8ef29864cb2cc06fa08d61174b29aa
[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 EDIRS= ccgost
13
14 RECURSIVE_MAKE= [ -n "$(EDIRS)" ] && for i in $(EDIRS) ; 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
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 LIBOBJ= e_4758cca.o \
42 e_aep.o \
43 e_atalla.o \
44 e_cswift.o \
45 e_gmp.o \
46 e_chil.o \
47 e_nuron.o \
48 e_sureware.o \
49 e_ubsec.o \
50 e_padlock.o
51
52 SRC= $(LIBSRC)
53
54 EXHEADER=
55 HEADER= e_4758cca_err.c e_4758cca_err.h \
56 e_aep_err.c e_aep_err.h \
57 e_atalla_err.c e_atalla_err.h \
58 e_cswift_err.c e_cswift_err.h \
59 e_gmp_err.c e_gmp_err.h \
60 e_chil_err.c e_chil_err.h \
61 e_nuron_err.c e_nuron_err.h \
62 e_sureware_err.c e_sureware_err.h \
63 e_ubsec_err.c e_ubsec_err.h
64
65 ALL= $(GENERAL) $(SRC) $(HEADER)
66
67 top:
68 (cd ..; $(MAKE) DIRS=$(DIR) all)
69
70 all: lib subdirs
71
72 lib: $(LIBOBJ)
73 @if [ -n "$(SHARED_LIBS)" ]; then \
74 set -e; \
75 for l in $(LIBNAMES); do \
76 $(MAKE) -f ../Makefile.shared -e \
77 LIBNAME=$$l LIBEXTRAS=e_$$l.o \
78 LIBDEPS='-L.. -lcrypto $(EX_LIBS)' \
79 link_o.$(SHLIB_TARGET); \
80 done; \
81 else \
82 $(AR) $(LIB) $(LIBOBJ); \
83 $(RANLIB) $(LIB) || echo Never mind.; \
84 fi; \
85 touch lib
86
87 subdirs:
88 echo $(EDIRS)
89 @target=all; $(RECURSIVE_MAKE)
90
91 files:
92 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
93 @target=files; $(RECURSIVE_MAKE)
94
95 links:
96 @target=links; $(RECURSIVE_MAKE)
97
98 # XXXXX This currently only works on systems that use .so as suffix
99 # for shared libraries as well as for Cygwin which uses the
100 # dlfcn_name_converter and therefore stores the engines with .so suffix, too.
101 # XXXXX This was extended to HP-UX dl targets, which use .sl suffix.
102 # XXXXX This was extended to mingw targets, which use eay32.dll suffix without lib as prefix.
103 install:
104 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
105 @if [ -n "$(SHARED_LIBS)" ]; then \
106 set -e; \
107 for l in $(LIBNAMES); do \
108 ( echo installing $$l; \
109 pfx=lib; \
110 if [ "$(PLATFORM)" != "Cygwin" ]; then \
111 case "$(CFLAGS)" in \
112 *DSO_BEOS*) sfx=".so";; \
113 *DSO_DLFCN*) sfx=".so";; \
114 *DSO_DL*) sfx=".sl";; \
115 *DSO_WIN32*) sfx="eay32.dll"; pfx=;; \
116 *) sfx=".bad";; \
117 esac; \
118 cp $$pfx$$l$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/$$pfx$$l$$sfx.new; \
119 else \
120 sfx=".so"; \
121 cp cyg$$l.dll $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/$$pfx$$l$$sfx.new; \
122 fi; \
123 chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/$$pfx$$l$$sfx.new; \
124 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/$$pfx$$l$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/$$pfx$$l$$sfx ); \
125 done; \
126 fi
127 @target=install; $(RECURSIVE_MAKE)
128
129 tags:
130 ctags $(SRC)
131
132 errors:
133 set -e; for l in $(LIBNAMES); do \
134 $(PERL) ../util/mkerr.pl -conf e_$$l.ec \
135 -nostatic -staticloader -write e_$$l.c; \
136 done
137 (cd ccgost; $(MAKE) PERL=$(PERL) errors)
138
139 tests:
140
141 lint:
142 lint -DLINT $(INCLUDES) $(SRC)>fluff
143 @target=lint; $(RECURSIVE_MAKE)
144
145 depend:
146 @if [ -z "$(THIS)" ]; then \
147 $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
148 fi
149 @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
150 @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
151
152 dclean:
153 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
154 mv -f Makefile.new $(MAKEFILE)
155 @target=dclean; $(RECURSIVE_MAKE)
156
157 clean:
158 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
159 @target=clean; $(RECURSIVE_MAKE)
160
161 # DO NOT DELETE THIS LINE -- make depend depends on it.
162
163 e_4758cca.o: ../include/openssl/asn1.h ../include/openssl/bio.h
164 e_4758cca.o: ../include/openssl/bn.h ../include/openssl/buffer.h
165 e_4758cca.o: ../include/openssl/crypto.h ../include/openssl/dso.h
166 e_4758cca.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
167 e_4758cca.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
168 e_4758cca.o: ../include/openssl/engine.h ../include/openssl/err.h
169 e_4758cca.o: ../include/openssl/evp.h ../include/openssl/lhash.h
170 e_4758cca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
171 e_4758cca.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
172 e_4758cca.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
173 e_4758cca.o: ../include/openssl/rand.h ../include/openssl/rsa.h
174 e_4758cca.o: ../include/openssl/safestack.h ../include/openssl/sha.h
175 e_4758cca.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
176 e_4758cca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
177 e_4758cca.o: e_4758cca.c e_4758cca_err.c e_4758cca_err.h
178 e_4758cca.o: vendor_defns/hw_4758_cca.h
179 e_aep.o: ../include/openssl/asn1.h ../include/openssl/bio.h
180 e_aep.o: ../include/openssl/bn.h ../include/openssl/buffer.h
181 e_aep.o: ../include/openssl/crypto.h ../include/openssl/dh.h
182 e_aep.o: ../include/openssl/dsa.h ../include/openssl/dso.h
183 e_aep.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
184 e_aep.o: ../include/openssl/err.h ../include/openssl/lhash.h
185 e_aep.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
186 e_aep.o: ../include/openssl/ossl_typ.h ../include/openssl/rsa.h
187 e_aep.o: ../include/openssl/safestack.h ../include/openssl/stack.h
188 e_aep.o: ../include/openssl/symhacks.h e_aep.c e_aep_err.c e_aep_err.h
189 e_aep.o: vendor_defns/aep.h
190 e_atalla.o: ../include/openssl/asn1.h ../include/openssl/bio.h
191 e_atalla.o: ../include/openssl/bn.h ../include/openssl/buffer.h
192 e_atalla.o: ../include/openssl/crypto.h ../include/openssl/dh.h
193 e_atalla.o: ../include/openssl/dsa.h ../include/openssl/dso.h
194 e_atalla.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
195 e_atalla.o: ../include/openssl/err.h ../include/openssl/lhash.h
196 e_atalla.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
197 e_atalla.o: ../include/openssl/ossl_typ.h ../include/openssl/rsa.h
198 e_atalla.o: ../include/openssl/safestack.h ../include/openssl/stack.h
199 e_atalla.o: ../include/openssl/symhacks.h e_atalla.c e_atalla_err.c
200 e_atalla.o: e_atalla_err.h vendor_defns/atalla.h
201 e_chil.o: ../include/openssl/asn1.h ../include/openssl/bio.h
202 e_chil.o: ../include/openssl/bn.h ../include/openssl/buffer.h
203 e_chil.o: ../include/openssl/crypto.h ../include/openssl/dh.h
204 e_chil.o: ../include/openssl/dso.h ../include/openssl/e_os2.h
205 e_chil.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
206 e_chil.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
207 e_chil.o: ../include/openssl/err.h ../include/openssl/evp.h
208 e_chil.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
209 e_chil.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
210 e_chil.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
211 e_chil.o: ../include/openssl/pem.h ../include/openssl/pem2.h
212 e_chil.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
213 e_chil.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
214 e_chil.o: ../include/openssl/sha.h ../include/openssl/stack.h
215 e_chil.o: ../include/openssl/symhacks.h ../include/openssl/ui.h
216 e_chil.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_chil.c
217 e_chil.o: e_chil_err.c e_chil_err.h vendor_defns/hwcryptohook.h
218 e_cswift.o: ../include/openssl/asn1.h ../include/openssl/bio.h
219 e_cswift.o: ../include/openssl/bn.h ../include/openssl/buffer.h
220 e_cswift.o: ../include/openssl/crypto.h ../include/openssl/dh.h
221 e_cswift.o: ../include/openssl/dsa.h ../include/openssl/dso.h
222 e_cswift.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
223 e_cswift.o: ../include/openssl/err.h ../include/openssl/lhash.h
224 e_cswift.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
225 e_cswift.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
226 e_cswift.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
227 e_cswift.o: ../include/openssl/stack.h ../include/openssl/symhacks.h e_cswift.c
228 e_cswift.o: e_cswift_err.c e_cswift_err.h vendor_defns/cswift.h
229 e_gmp.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
230 e_gmp.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
231 e_gmp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
232 e_gmp.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
233 e_gmp.o: ../include/openssl/stack.h ../include/openssl/symhacks.h e_gmp.c
234 e_nuron.o: ../include/openssl/asn1.h ../include/openssl/bio.h
235 e_nuron.o: ../include/openssl/bn.h ../include/openssl/buffer.h
236 e_nuron.o: ../include/openssl/crypto.h ../include/openssl/dh.h
237 e_nuron.o: ../include/openssl/dsa.h ../include/openssl/dso.h
238 e_nuron.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
239 e_nuron.o: ../include/openssl/err.h ../include/openssl/lhash.h
240 e_nuron.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
241 e_nuron.o: ../include/openssl/ossl_typ.h ../include/openssl/rsa.h
242 e_nuron.o: ../include/openssl/safestack.h ../include/openssl/stack.h
243 e_nuron.o: ../include/openssl/symhacks.h e_nuron.c e_nuron_err.c e_nuron_err.h
244 e_padlock.o: ../include/openssl/aes.h ../include/openssl/asn1.h
245 e_padlock.o: ../include/openssl/bio.h ../include/openssl/crypto.h
246 e_padlock.o: ../include/openssl/dso.h ../include/openssl/e_os2.h
247 e_padlock.o: ../include/openssl/engine.h ../include/openssl/err.h
248 e_padlock.o: ../include/openssl/evp.h ../include/openssl/lhash.h
249 e_padlock.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
250 e_padlock.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
251 e_padlock.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
252 e_padlock.o: ../include/openssl/safestack.h ../include/openssl/stack.h
253 e_padlock.o: ../include/openssl/symhacks.h e_padlock.c
254 e_sureware.o: ../include/openssl/asn1.h ../include/openssl/bio.h
255 e_sureware.o: ../include/openssl/bn.h ../include/openssl/buffer.h
256 e_sureware.o: ../include/openssl/crypto.h ../include/openssl/dh.h
257 e_sureware.o: ../include/openssl/dsa.h ../include/openssl/dso.h
258 e_sureware.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
259 e_sureware.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
260 e_sureware.o: ../include/openssl/engine.h ../include/openssl/err.h
261 e_sureware.o: ../include/openssl/evp.h ../include/openssl/lhash.h
262 e_sureware.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
263 e_sureware.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
264 e_sureware.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
265 e_sureware.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
266 e_sureware.o: ../include/openssl/rand.h ../include/openssl/rsa.h
267 e_sureware.o: ../include/openssl/safestack.h ../include/openssl/sha.h
268 e_sureware.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
269 e_sureware.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
270 e_sureware.o: e_sureware.c e_sureware_err.c e_sureware_err.h
271 e_sureware.o: vendor_defns/sureware.h
272 e_ubsec.o: ../include/openssl/asn1.h ../include/openssl/bio.h
273 e_ubsec.o: ../include/openssl/bn.h ../include/openssl/buffer.h
274 e_ubsec.o: ../include/openssl/crypto.h ../include/openssl/dh.h
275 e_ubsec.o: ../include/openssl/dsa.h ../include/openssl/dso.h
276 e_ubsec.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
277 e_ubsec.o: ../include/openssl/err.h ../include/openssl/lhash.h
278 e_ubsec.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
279 e_ubsec.o: ../include/openssl/ossl_typ.h ../include/openssl/rsa.h
280 e_ubsec.o: ../include/openssl/safestack.h ../include/openssl/stack.h
281 e_ubsec.o: ../include/openssl/symhacks.h e_ubsec.c e_ubsec_err.c e_ubsec_err.h
282 e_ubsec.o: vendor_defns/hw_ubsec.h