diff options
Diffstat (limited to 'src/lib/libcrypto/engine/Makefile.ssl')
-rw-r--r-- | src/lib/libcrypto/engine/Makefile.ssl | 220 |
1 files changed, 220 insertions, 0 deletions
diff --git a/src/lib/libcrypto/engine/Makefile.ssl b/src/lib/libcrypto/engine/Makefile.ssl new file mode 100644 index 0000000000..7a0ffe755d --- /dev/null +++ b/src/lib/libcrypto/engine/Makefile.ssl | |||
@@ -0,0 +1,220 @@ | |||
1 | # | ||
2 | # OpenSSL/crypto/engine/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= engine | ||
6 | TOP= ../.. | ||
7 | CC= cc | ||
8 | INCLUDES= -I.. -I../../include | ||
9 | CFLAG=-g | ||
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKE= make -f Makefile.ssl | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | ||
15 | MAKEFILE= Makefile.ssl | ||
16 | AR= ar r | ||
17 | |||
18 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
19 | |||
20 | GENERAL=Makefile | ||
21 | TEST= enginetest.c | ||
22 | APPS= | ||
23 | |||
24 | LIB=$(TOP)/libcrypto.a | ||
25 | LIBSRC= engine_err.c engine_lib.c engine_list.c engine_openssl.c \ | ||
26 | hw_atalla.c hw_cswift.c hw_ncipher.c | ||
27 | LIBOBJ= engine_err.o engine_lib.o engine_list.o engine_openssl.o \ | ||
28 | hw_atalla.o hw_cswift.o hw_ncipher.o | ||
29 | |||
30 | SRC= $(LIBSRC) | ||
31 | |||
32 | EXHEADER= engine.h | ||
33 | HEADER= $(EXHEADER) | ||
34 | |||
35 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
36 | |||
37 | top: | ||
38 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
39 | |||
40 | all: lib | ||
41 | |||
42 | lib: $(LIBOBJ) | ||
43 | $(AR) $(LIB) $(LIBOBJ) | ||
44 | $(RANLIB) $(LIB) | ||
45 | @touch lib | ||
46 | |||
47 | files: | ||
48 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
49 | |||
50 | links: | ||
51 | @$(TOP)/util/point.sh Makefile.ssl Makefile | ||
52 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
53 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
55 | |||
56 | install: | ||
57 | @for i in $(EXHEADER) ; \ | ||
58 | do \ | ||
59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
60 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
61 | done; | ||
62 | |||
63 | tags: | ||
64 | ctags $(SRC) | ||
65 | |||
66 | tests: | ||
67 | |||
68 | lint: | ||
69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
70 | |||
71 | depend: | ||
72 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | ||
73 | |||
74 | dclean: | ||
75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
76 | mv -f Makefile.new $(MAKEFILE) | ||
77 | |||
78 | clean: | ||
79 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
80 | |||
81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
82 | |||
83 | engine_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
84 | engine_err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
85 | engine_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
86 | engine_err.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
87 | engine_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
88 | engine_err.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
89 | engine_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
90 | engine_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
91 | engine_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
92 | engine_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
93 | engine_err.o: ../../include/openssl/objects.h | ||
94 | engine_err.o: ../../include/openssl/opensslconf.h | ||
95 | engine_err.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
96 | engine_err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
97 | engine_err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
98 | engine_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
99 | engine_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
100 | engine_err.o: ../../include/openssl/symhacks.h | ||
101 | engine_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
102 | engine_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
103 | engine_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
104 | engine_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
105 | engine_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
106 | engine_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
107 | engine_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
108 | engine_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
109 | engine_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
110 | engine_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
111 | engine_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
112 | engine_lib.o: ../../include/openssl/objects.h | ||
113 | engine_lib.o: ../../include/openssl/opensslconf.h | ||
114 | engine_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
115 | engine_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
116 | engine_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
117 | engine_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
118 | engine_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
119 | engine_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
120 | engine_list.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
121 | engine_list.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
122 | engine_list.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
123 | engine_list.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
124 | engine_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
125 | engine_list.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | ||
126 | engine_list.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
127 | engine_list.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
128 | engine_list.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
129 | engine_list.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
130 | engine_list.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
131 | engine_list.o: ../../include/openssl/objects.h | ||
132 | engine_list.o: ../../include/openssl/opensslconf.h | ||
133 | engine_list.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
134 | engine_list.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
135 | engine_list.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
136 | engine_list.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
137 | engine_list.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
138 | engine_list.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
139 | engine_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
140 | engine_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
141 | engine_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
142 | engine_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
143 | engine_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
144 | engine_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | ||
145 | engine_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
146 | engine_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
147 | engine_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
148 | engine_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
149 | engine_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
150 | engine_openssl.o: ../../include/openssl/obj_mac.h | ||
151 | engine_openssl.o: ../../include/openssl/objects.h | ||
152 | engine_openssl.o: ../../include/openssl/opensslconf.h | ||
153 | engine_openssl.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
154 | engine_openssl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
155 | engine_openssl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
156 | engine_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
157 | engine_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
158 | engine_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
159 | hw_atalla.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
160 | hw_atalla.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
161 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
162 | hw_atalla.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
163 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
164 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | ||
165 | hw_atalla.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
166 | hw_atalla.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
167 | hw_atalla.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
168 | hw_atalla.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
169 | hw_atalla.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
170 | hw_atalla.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
171 | hw_atalla.o: ../../include/openssl/opensslconf.h | ||
172 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
173 | hw_atalla.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
174 | hw_atalla.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
175 | hw_atalla.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
176 | hw_atalla.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
177 | hw_atalla.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
178 | hw_atalla.o: vendor_defns/atalla.h | ||
179 | hw_cswift.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
180 | hw_cswift.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
181 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
182 | hw_cswift.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
183 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
184 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | ||
185 | hw_cswift.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
186 | hw_cswift.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
187 | hw_cswift.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
188 | hw_cswift.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
189 | hw_cswift.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
190 | hw_cswift.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
191 | hw_cswift.o: ../../include/openssl/opensslconf.h | ||
192 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
193 | hw_cswift.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
194 | hw_cswift.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
195 | hw_cswift.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
196 | hw_cswift.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
197 | hw_cswift.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
198 | hw_cswift.o: vendor_defns/cswift.h | ||
199 | hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
200 | hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
201 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
202 | hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
203 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
204 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | ||
205 | hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
206 | hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
207 | hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
208 | hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
209 | hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
210 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
211 | hw_ncipher.o: ../../include/openssl/opensslconf.h | ||
212 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h | ||
213 | hw_ncipher.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
214 | hw_ncipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
215 | hw_ncipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
216 | hw_ncipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
217 | hw_ncipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
218 | hw_ncipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
219 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
220 | hw_ncipher.o: ../cryptlib.h engine_int.h vendor_defns/hwcryptohook.h | ||