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