Initialize variable
[openssl.git] / engines / Makefile
1 #
2 # OpenSSL/engines/Makefile
3 #
4
5 #The following engines have been disabled as they currently do not build
6 # aep atalla cswift chil nuron sureware ubsec
7
8 DIR=    engines
9 TOP=    ..
10 CC=     cc
11 INCLUDES= -I../include
12 CFLAG=-g
13 MAKEFILE=       Makefile
14 AR=             ar r
15 ENGDIRS= ccgost
16
17 RECURSIVE_MAKE= [ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \
18                     (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
19                     $(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \
20                 done;
21
22 ENGINES_ASM_OBJ=
23
24 PEX_LIBS=
25 EX_LIBS=
26
27 CFLAGS= $(INCLUDES) $(CFLAG)
28 ASFLAGS= $(INCLUDES) $(ASFLAG)
29 AFLAGS= $(ASFLAGS)
30
31 GENERAL=Makefile engines.com install.com engine_vector.mar
32
33 LIB=$(TOP)/libcrypto.a
34 LIBNAMES= 4758cca gmp padlock capi
35
36 LIBSRC= e_4758cca.c \
37         e_gmp.c \
38         e_padlock.c \
39         e_capi.c
40 LIBOBJ= e_4758cca.o \
41         e_gmp.o \
42         e_padlock.o \
43         e_capi.o \
44         $(ENGINES_ASM_OBJ)
45
46 SRC= $(LIBSRC)
47
48 HEADER= e_4758cca_err.c e_4758cca_err.h \
49         e_gmp_err.c e_gmp_err.h \
50         e_chil_err.c e_chil_err.h \
51         e_nuron_err.c e_nuron_err.h \
52         e_sureware_err.c e_sureware_err.h \
53         e_ubsec_err.c e_ubsec_err.h \
54         e_capi_err.c e_capi_err.h
55
56 ALL=    $(GENERAL) $(SRC) $(HEADER)
57
58 top:
59         (cd ..; $(MAKE) DIRS=$(DIR) all)
60
61 all:    lib subdirs
62
63 lib:    $(LIBOBJ)
64         @if [ -n "$(SHARED_LIBS)" ]; then \
65                 set -e; \
66                 for l in $(LIBNAMES); do \
67                         $(MAKE) -f ../Makefile.shared -e \
68                                 LIBNAME=$$l LIBEXTRAS="e_$$l*.o" \
69                                 LIBDEPS='-L.. -lcrypto $(EX_LIBS)' \
70                                 link_o.$(SHLIB_TARGET); \
71                 done; \
72         else \
73                 $(AR) $(LIB) $(LIBOBJ); \
74                 $(RANLIB) $(LIB) || echo Never mind.; \
75         fi; \
76         touch lib
77
78 e_padlock-x86.s:        asm/e_padlock-x86.pl
79         $(PERL) asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
80 e_padlock-x86_64.s:     asm/e_padlock-x86_64.pl
81         $(PERL) asm/e_padlock-x86_64.pl $(PERLASM_SCHEME) > $@
82
83 subdirs:
84         @target=all; $(RECURSIVE_MAKE)
85
86 files:
87         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
88         @target=files; $(RECURSIVE_MAKE)
89
90 # XXXXX This currently only works on systems that use .so as suffix
91 # for shared libraries as well as for Cygwin which uses the
92 # dlfcn_name_converter and therefore stores the engines with .so suffix, too.
93 # XXXXX This was extended to HP-UX dl targets, which use .sl suffix.
94 # XXXXX This was extended to mingw targets, which use eay32.dll suffix without lib as prefix.
95 install:
96         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
97         @if [ -n "$(SHARED_LIBS)" ]; then \
98                 set -e; \
99                 $(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines; \
100                 for l in $(LIBNAMES); do \
101                         ( echo installing $$l; \
102                           pfx=lib; \
103                           if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
104                                 sfx=".so"; \
105                                 cp cyg$$l.dll $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
106                           else \
107                                 case "$(CFLAGS)" in \
108                                 *DSO_DLFCN*)    sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;;    \
109                                 *DSO_DL*)       sfx=".sl";;     \
110                                 *DSO_WIN32*)    sfx="eay32.dll"; pfx=;; \
111                                 *)              sfx=".bad";;    \
112                                 esac; \
113                                 cp $$pfx$$l$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
114                           fi; \
115                           chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
116                           mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx ); \
117                 done; \
118         fi
119         @target=install; $(RECURSIVE_MAKE)
120
121 tags:
122         ctags $(SRC)
123
124 errors:
125         set -e; for l in $(LIBNAMES); do \
126                 $(PERL) ../util/mkerr.pl -conf e_$$l.ec \
127                         -nostatic -staticloader -write e_$$l.c; \
128         done
129         (cd ccgost; $(MAKE) PERL=$(PERL) errors)
130
131 tests:
132
133 lint:
134         lint -DLINT $(INCLUDES) $(SRC)>fluff
135         @target=lint; $(RECURSIVE_MAKE)
136
137 depend:
138         @if [ -z "$(THIS)" ]; then \
139             $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
140         fi
141         @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
142         @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
143
144 dclean:
145         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
146         mv -f Makefile.new $(MAKEFILE)
147         @target=dclean; $(RECURSIVE_MAKE)
148
149 clean:
150         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
151         @target=clean; $(RECURSIVE_MAKE)
152
153 # DO NOT DELETE THIS LINE -- make depend depends on it.
154
155 e_4758cca.o: ../include/openssl/asn1.h ../include/openssl/bio.h
156 e_4758cca.o: ../include/openssl/bn.h ../include/openssl/buffer.h
157 e_4758cca.o: ../include/openssl/crypto.h ../include/openssl/dso.h
158 e_4758cca.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
159 e_4758cca.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
160 e_4758cca.o: ../include/openssl/engine.h ../include/openssl/err.h
161 e_4758cca.o: ../include/openssl/evp.h ../include/openssl/lhash.h
162 e_4758cca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
163 e_4758cca.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
164 e_4758cca.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
165 e_4758cca.o: ../include/openssl/rand.h ../include/openssl/rsa.h
166 e_4758cca.o: ../include/openssl/safestack.h ../include/openssl/sha.h
167 e_4758cca.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
168 e_4758cca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
169 e_4758cca.o: e_4758cca.c e_4758cca_err.c e_4758cca_err.h
170 e_4758cca.o: vendor_defns/hw_4758_cca.h
171 e_capi.o: ../include/openssl/asn1.h ../include/openssl/bio.h
172 e_capi.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
173 e_capi.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
174 e_capi.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
175 e_capi.o: ../include/openssl/engine.h ../include/openssl/evp.h
176 e_capi.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
177 e_capi.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
178 e_capi.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
179 e_capi.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
180 e_capi.o: ../include/openssl/sha.h ../include/openssl/stack.h
181 e_capi.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
182 e_capi.o: ../include/openssl/x509_vfy.h e_capi.c
183 e_gmp.o: ../include/openssl/asn1.h ../include/openssl/bio.h
184 e_gmp.o: ../include/openssl/bn.h ../include/openssl/buffer.h
185 e_gmp.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
186 e_gmp.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
187 e_gmp.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
188 e_gmp.o: ../include/openssl/evp.h ../include/openssl/lhash.h
189 e_gmp.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
190 e_gmp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
191 e_gmp.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
192 e_gmp.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
193 e_gmp.o: ../include/openssl/sha.h ../include/openssl/stack.h
194 e_gmp.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
195 e_gmp.o: ../include/openssl/x509_vfy.h e_gmp.c
196 e_padlock.o: ../include/openssl/aes.h ../include/openssl/asn1.h
197 e_padlock.o: ../include/openssl/bio.h ../include/openssl/buffer.h
198 e_padlock.o: ../include/openssl/crypto.h ../include/openssl/dso.h
199 e_padlock.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
200 e_padlock.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
201 e_padlock.o: ../include/openssl/engine.h ../include/openssl/err.h
202 e_padlock.o: ../include/openssl/evp.h ../include/openssl/lhash.h
203 e_padlock.o: ../include/openssl/modes.h ../include/openssl/obj_mac.h
204 e_padlock.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
205 e_padlock.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
206 e_padlock.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
207 e_padlock.o: ../include/openssl/safestack.h ../include/openssl/sha.h
208 e_padlock.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
209 e_padlock.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
210 e_padlock.o: e_padlock.c