summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des/Makefile.ssl
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/des/Makefile.ssl')
-rw-r--r--src/lib/libcrypto/des/Makefile.ssl267
1 files changed, 190 insertions, 77 deletions
diff --git a/src/lib/libcrypto/des/Makefile.ssl b/src/lib/libcrypto/des/Makefile.ssl
index cc5379feb2..04a73a9326 100644
--- a/src/lib/libcrypto/des/Makefile.ssl
+++ b/src/lib/libcrypto/des/Makefile.ssl
@@ -6,13 +6,14 @@ DIR= des
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8CPP= $(CC) -E 8CPP= $(CC) -E
9INCLUDES=-I../../include 9INCLUDES=-I$(TOP) -I../../include
10CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX= 11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl 12OPENSSLDIR= /usr/local/ssl
13INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
14MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
15MAKEDEPEND= $(TOP)/util/domd $(TOP) 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
17AR= ar r 18AR= ar r
18RANLIB= ranlib 19RANLIB= ranlib
@@ -30,22 +31,23 @@ LIB=$(TOP)/libcrypto.a
30LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ 31LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \
31 ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ 32 ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \
32 fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ 33 fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \
33 qud_cksm.c rand_key.c read_pwd.c rpc_enc.c set_key.c \ 34 qud_cksm.c rand_key.c rpc_enc.c set_key.c \
34 des_enc.c fcrypt_b.c read2pwd.c \ 35 des_enc.c fcrypt_b.c \
35 xcbc_enc.c \ 36 xcbc_enc.c \
36 str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c 37 str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \
38 read2pwd.c
37 39
38LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ 40LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \
39 ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ 41 ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \
40 enc_read.o enc_writ.o ofb64enc.o \ 42 enc_read.o enc_writ.o ofb64enc.o \
41 ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ 43 ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \
42 ${DES_ENC} read2pwd.o \ 44 ${DES_ENC} \
43 fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o cbc_cksm.o \ 45 fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \
44 ede_cbcm_enc.o 46 ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o
45 47
46SRC= $(LIBSRC) 48SRC= $(LIBSRC)
47 49
48EXHEADER= des.h 50EXHEADER= des.h des_old.h
49HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER) 51HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER)
50 52
51ALL= $(GENERAL) $(SRC) $(HEADER) 53ALL= $(GENERAL) $(SRC) $(HEADER)
@@ -57,8 +59,7 @@ all: lib
57 59
58lib: $(LIBOBJ) 60lib: $(LIBOBJ)
59 $(AR) $(LIB) $(LIBOBJ) 61 $(AR) $(LIB) $(LIBOBJ)
60 @echo You may get an error following this line. Please ignore. 62 $(RANLIB) $(LIB) || echo Never mind.
61 - $(RANLIB) $(LIB)
62 @touch lib 63 @touch lib
63 64
64des: des.o cbc3_enc.o lib 65des: des.o cbc3_enc.o lib
@@ -141,72 +142,184 @@ clean:
141 142
142# DO NOT DELETE THIS LINE -- make depend depends on it. 143# DO NOT DELETE THIS LINE -- make depend depends on it.
143 144
144cbc_cksm.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 145cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
145cbc_cksm.o: ../../include/openssl/opensslconf.h des_locl.h 146cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
146cbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 147cbc_cksm.o: ../../include/openssl/opensslconf.h
147cbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h ncbc_enc.c 148cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
148cfb64ede.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 149cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
149cfb64ede.o: ../../include/openssl/opensslconf.h des_locl.h 150cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
150cfb64enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 151cbc_cksm.o: cbc_cksm.c des_locl.h
151cfb64enc.o: ../../include/openssl/opensslconf.h des_locl.h 152cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
152cfb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 153cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
153cfb_enc.o: ../../include/openssl/opensslconf.h des_locl.h 154cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
154des_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 155cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
155des_enc.o: ../../include/openssl/opensslconf.h des_locl.h des_locl.h ncbc_enc.c 156cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
156ecb3_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 157cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c
157ecb3_enc.o: ../../include/openssl/opensslconf.h des_locl.h 158cfb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
158ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 159cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
160cfb64ede.o: ../../include/openssl/opensslconf.h
161cfb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
162cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
163cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
164cfb64ede.o: cfb64ede.c des_locl.h
165cfb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
166cfb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
167cfb64enc.o: ../../include/openssl/opensslconf.h
168cfb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
169cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
170cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
171cfb64enc.o: cfb64enc.c des_locl.h
172cfb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
173cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
174cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
175cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
176cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
177cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h
178des_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
179des_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
180des_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
181des_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
182des_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
183des_enc.o: ../../include/openssl/ui_compat.h des_enc.c des_locl.h ncbc_enc.c
184des_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
185des_old.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
186des_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
187des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
188des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
189des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
190des_old.o: ../../include/openssl/ui_compat.h des_old.c
191des_old2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
192des_old2.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
193des_old2.o: ../../include/openssl/opensslconf.h
194des_old2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
195des_old2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
196des_old2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
197des_old2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
198des_old2.o: des_old2.c
199ecb3_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
200ecb3_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
201ecb3_enc.o: ../../include/openssl/opensslconf.h
202ecb3_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
203ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
204ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
205ecb3_enc.o: des_locl.h ecb3_enc.c
206ecb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
207ecb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
159ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 208ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
160ecb_enc.o: des_locl.h spr.h 209ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
161ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 210ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
162ede_cbcm_enc.o: ../../include/openssl/opensslconf.h des_locl.h 211ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ecb_enc.c spr.h
163enc_read.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 212ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
164enc_read.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 213ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
165enc_read.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 214ede_cbcm_enc.o: ../../include/openssl/opensslconf.h
166enc_read.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 215ede_cbcm_enc.o: ../../include/openssl/opensslv.h
167enc_read.o: ../../include/openssl/opensslconf.h 216ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
217ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
218ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c
219enc_read.o: ../../e_os.h ../../include/openssl/bio.h
220enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
221enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
222enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
223enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
168enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h 224enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
169enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h 225enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
170enc_read.o: ../cryptlib.h des_locl.h 226enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
171enc_writ.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 227enc_read.o: ../cryptlib.h des_locl.h enc_read.c
172enc_writ.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 228enc_writ.o: ../../e_os.h ../../include/openssl/bio.h
173enc_writ.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 229enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
174enc_writ.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 230enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
175enc_writ.o: ../../include/openssl/opensslconf.h 231enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
176enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h 232enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
177enc_writ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 233enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
178enc_writ.o: ../../include/openssl/symhacks.h ../cryptlib.h des_locl.h 234enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
179fcrypt.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 235enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
180fcrypt.o: ../../include/openssl/opensslconf.h des_locl.h 236enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
181fcrypt_b.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 237enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c
182fcrypt_b.o: ../../include/openssl/opensslconf.h des_locl.h 238fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
183ofb64ede.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 239fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
184ofb64ede.o: ../../include/openssl/opensslconf.h des_locl.h 240fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
185ofb64enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 241fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
186ofb64enc.o: ../../include/openssl/opensslconf.h des_locl.h 242fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
187ofb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 243fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c
188ofb_enc.o: ../../include/openssl/opensslconf.h des_locl.h 244fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
189pcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 245fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
190pcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h 246fcrypt_b.o: ../../include/openssl/opensslconf.h
191qud_cksm.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 247fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
192qud_cksm.o: ../../include/openssl/opensslconf.h des_locl.h 248fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
193rand_key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 249fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
194rand_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/rand.h 250fcrypt_b.o: des_locl.h fcrypt_b.c
195read2pwd.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 251ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
196read2pwd.o: ../../include/openssl/opensslconf.h des_locl.h 252ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
197read_pwd.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 253ofb64ede.o: ../../include/openssl/opensslconf.h
198read_pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 254ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
199read_pwd.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 255ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
200read_pwd.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 256ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
201read_pwd.o: ../../include/openssl/opensslconf.h 257ofb64ede.o: des_locl.h ofb64ede.c
202read_pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h 258ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
203read_pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h 259ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
204read_pwd.o: ../cryptlib.h des_locl.h 260ofb64enc.o: ../../include/openssl/opensslconf.h
205rpc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 261ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
206rpc_enc.o: ../../include/openssl/opensslconf.h des_locl.h des_ver.h rpc_des.h 262ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
207set_key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 263ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
208set_key.o: ../../include/openssl/opensslconf.h des_locl.h 264ofb64enc.o: des_locl.h ofb64enc.c
209str2key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 265ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
210str2key.o: ../../include/openssl/opensslconf.h des_locl.h 266ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
211xcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h 267ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
212xcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h 268ofb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
269ofb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
270ofb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ofb_enc.c
271pcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
272pcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
273pcbc_enc.o: ../../include/openssl/opensslconf.h
274pcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
275pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
276pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
277pcbc_enc.o: des_locl.h pcbc_enc.c
278qud_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
279qud_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
280qud_cksm.o: ../../include/openssl/opensslconf.h
281qud_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
282qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
283qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
284qud_cksm.o: des_locl.h qud_cksm.c
285rand_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
286rand_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
287rand_key.o: ../../include/openssl/opensslconf.h
288rand_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
289rand_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
290rand_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
291rand_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
292rand_key.o: rand_key.c
293read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
294read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
295read2pwd.o: ../../include/openssl/opensslconf.h
296read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
297read2pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
298read2pwd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
299read2pwd.o: read2pwd.c
300rpc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
301rpc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
302rpc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
303rpc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
304rpc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
305rpc_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h rpc_des.h
306rpc_enc.o: rpc_enc.c
307set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
308set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
309set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
310set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
311set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
312set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c
313str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
314str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
315str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
316str2key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
317str2key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
318str2key.o: ../../include/openssl/ui_compat.h des_locl.h str2key.c
319xcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
320xcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
321xcbc_enc.o: ../../include/openssl/opensslconf.h
322xcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
323xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
324xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
325xcbc_enc.o: des_locl.h xcbc_enc.c