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/dso.h ../include/openssl/engine.h
169 e_4758cca.o: ../include/openssl/err.h ../include/openssl/lhash.h
170 e_4758cca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
171 e_4758cca.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
172 e_4758cca.o: ../include/openssl/safestack.h ../include/openssl/stack.h
173 e_4758cca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
174 e_4758cca.o: e_4758cca.c e_4758cca_err.c e_4758cca_err.h
175 e_4758cca.o: vendor_defns/hw_4758_cca.h
176 e_aep.o: ../include/openssl/asn1.h ../include/openssl/bio.h
177 e_aep.o: ../include/openssl/dso.h ../include/openssl/engine.h
178 e_aep.o: ../include/openssl/err.h ../include/openssl/lhash.h
179 e_aep.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
180 e_aep.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
181 e_aep.o: ../include/openssl/stack.h ../include/openssl/x509.h
182 e_aep.o: ../include/openssl/x509_vfy.h e_aep.c e_aep_err.c e_aep_err.h
183 e_aep.o: vendor_defns/aep.h
184 e_atalla.o: ../include/openssl/asn1.h ../include/openssl/bio.h
185 e_atalla.o: ../include/openssl/dso.h ../include/openssl/engine.h
186 e_atalla.o: ../include/openssl/err.h ../include/openssl/lhash.h
187 e_atalla.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
188 e_atalla.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
189 e_atalla.o: ../include/openssl/stack.h ../include/openssl/x509.h
190 e_atalla.o: ../include/openssl/x509_vfy.h e_atalla.c e_atalla_err.c
191 e_atalla.o: e_atalla_err.h vendor_defns/atalla.h
192 e_capi.o: ../include/openssl/asn1.h ../include/openssl/bio.h
193 e_capi.o: ../include/openssl/engine.h ../include/openssl/lhash.h
194 e_capi.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
195 e_capi.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
196 e_capi.o: ../include/openssl/stack.h ../include/openssl/x509.h
197 e_capi.o: ../include/openssl/x509_vfy.h e_capi.c
198 e_chil.o: ../include/openssl/asn1.h ../include/openssl/bio.h
199 e_chil.o: ../include/openssl/dso.h ../include/openssl/engine.h
200 e_chil.o: ../include/openssl/err.h ../include/openssl/lhash.h
201 e_chil.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
202 e_chil.o: ../include/openssl/pem.h ../include/openssl/pem2.h
203 e_chil.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
204 e_chil.o: ../include/openssl/safestack.h ../include/openssl/stack.h
205 e_chil.o: ../include/openssl/ui.h ../include/openssl/x509.h
206 e_chil.o: ../include/openssl/x509_vfy.h e_chil.c e_chil_err.c e_chil_err.h
207 e_chil.o: vendor_defns/hwcryptohook.h
208 e_cswift.o: ../include/openssl/asn1.h ../include/openssl/bio.h
209 e_cswift.o: ../include/openssl/dso.h ../include/openssl/engine.h
210 e_cswift.o: ../include/openssl/err.h ../include/openssl/lhash.h
211 e_cswift.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
212 e_cswift.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
213 e_cswift.o: ../include/openssl/safestack.h ../include/openssl/stack.h
214 e_cswift.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_cswift.c
215 e_cswift.o: e_cswift_err.c e_cswift_err.h vendor_defns/cswift.h
216 e_gmp.o: ../include/openssl/asn1.h ../include/openssl/bio.h
217 e_gmp.o: ../include/openssl/engine.h ../include/openssl/lhash.h
218 e_gmp.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
219 e_gmp.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
220 e_gmp.o: ../include/openssl/stack.h ../include/openssl/x509.h
221 e_gmp.o: ../include/openssl/x509_vfy.h e_gmp.c
222 e_nuron.o: ../include/openssl/asn1.h ../include/openssl/bio.h
223 e_nuron.o: ../include/openssl/dso.h ../include/openssl/engine.h
224 e_nuron.o: ../include/openssl/err.h ../include/openssl/lhash.h
225 e_nuron.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
226 e_nuron.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
227 e_nuron.o: ../include/openssl/stack.h ../include/openssl/x509.h
228 e_nuron.o: ../include/openssl/x509_vfy.h e_nuron.c e_nuron_err.c e_nuron_err.h
229 e_padlock.o: ../include/openssl/asn1.h ../include/openssl/bio.h
230 e_padlock.o: ../include/openssl/dso.h ../include/openssl/engine.h
231 e_padlock.o: ../include/openssl/err.h ../include/openssl/lhash.h
232 e_padlock.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
233 e_padlock.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
234 e_padlock.o: ../include/openssl/safestack.h ../include/openssl/stack.h
235 e_padlock.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
236 e_padlock.o: e_padlock.c
237 e_sureware.o: ../include/openssl/asn1.h ../include/openssl/bio.h
238 e_sureware.o: ../include/openssl/dso.h ../include/openssl/engine.h
239 e_sureware.o: ../include/openssl/err.h ../include/openssl/lhash.h
240 e_sureware.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
241 e_sureware.o: ../include/openssl/pem.h ../include/openssl/pem2.h
242 e_sureware.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
243 e_sureware.o: ../include/openssl/safestack.h ../include/openssl/stack.h
244 e_sureware.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
245 e_sureware.o: e_sureware.c e_sureware_err.c e_sureware_err.h
246 e_sureware.o: vendor_defns/sureware.h
247 e_ubsec.o: ../include/openssl/asn1.h ../include/openssl/bio.h
248 e_ubsec.o: ../include/openssl/dso.h ../include/openssl/engine.h
249 e_ubsec.o: ../include/openssl/err.h ../include/openssl/lhash.h
250 e_ubsec.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
251 e_ubsec.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
252 e_ubsec.o: ../include/openssl/stack.h ../include/openssl/x509.h
253 e_ubsec.o: ../include/openssl/x509_vfy.h e_ubsec.c e_ubsec_err.c e_ubsec_err.h
254 e_ubsec.o: vendor_defns/hw_ubsec.h