summaryrefslogtreecommitdiff
path: root/src/lib/libc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/Makefile.ssl181
-rw-r--r--src/lib/libcrypto/asn1/Makefile.ssl862
-rw-r--r--src/lib/libcrypto/asn1/f.c4
-rw-r--r--src/lib/libcrypto/asn1/x_cinf.c72
-rw-r--r--src/lib/libcrypto/bf/Makefile.ssl57
-rw-r--r--src/lib/libcrypto/bio/Makefile.ssl178
-rw-r--r--src/lib/libcrypto/bn/Makefile.ssl290
-rw-r--r--src/lib/libcrypto/buffer/Makefile.ssl54
-rw-r--r--src/lib/libcrypto/cast/Makefile.ssl54
-rw-r--r--src/lib/libcrypto/comp/Makefile.ssl39
-rw-r--r--src/lib/libcrypto/conf/Makefile.ssl124
-rw-r--r--src/lib/libcrypto/des/Makefile.ssl259
-rw-r--r--src/lib/libcrypto/dh/Makefile.ssl96
-rw-r--r--src/lib/libcrypto/dsa/Makefile.ssl129
-rw-r--r--src/lib/libcrypto/dso/Makefile.ssl70
-rw-r--r--src/lib/libcrypto/engine/Makefile.ssl505
-rw-r--r--src/lib/libcrypto/err/Makefile.ssl64
-rw-r--r--src/lib/libcrypto/evp/Makefile.ssl647
-rw-r--r--src/lib/libcrypto/hmac/Makefile.ssl39
-rw-r--r--src/lib/libcrypto/idea/Makefile.ssl41
-rw-r--r--src/lib/libcrypto/lhash/Makefile.ssl43
-rw-r--r--src/lib/libcrypto/md2/Makefile.ssl44
-rw-r--r--src/lib/libcrypto/md4/Makefile.ssl14
-rw-r--r--src/lib/libcrypto/md5/Makefile.ssl71
-rw-r--r--src/lib/libcrypto/mdc2/Makefile.ssl48
-rw-r--r--src/lib/libcrypto/objects/Makefile.ssl88
-rw-r--r--src/lib/libcrypto/pem/Makefile.ssl226
-rw-r--r--src/lib/libcrypto/pkcs12/Makefile.ssl453
-rw-r--r--src/lib/libcrypto/pkcs7/Makefile.ssl155
-rw-r--r--src/lib/libcrypto/rand/Makefile.ssl111
-rw-r--r--src/lib/libcrypto/rc2/Makefile.ssl41
-rw-r--r--src/lib/libcrypto/rc4/Makefile.ssl45
-rw-r--r--src/lib/libcrypto/rc5/Makefile.ssl46
-rw-r--r--src/lib/libcrypto/rc5/asm/rc5-586.pl2
-rw-r--r--src/lib/libcrypto/ripemd/Makefile.ssl46
-rw-r--r--src/lib/libcrypto/rsa/Makefile.ssl183
-rw-r--r--src/lib/libcrypto/sha/Makefile.ssl50
-rw-r--r--src/lib/libcrypto/stack/Makefile.ssl40
-rw-r--r--src/lib/libcrypto/txt_db/Makefile.ssl38
-rw-r--r--src/lib/libcrypto/util/pl/Mingw32f.pl4
-rw-r--r--src/lib/libcrypto/x509/Makefile.ssl374
-rw-r--r--src/lib/libcrypto/x509v3/Makefile.ssl562
42 files changed, 4894 insertions, 1555 deletions
diff --git a/src/lib/libcrypto/Makefile.ssl b/src/lib/libcrypto/Makefile.ssl
index efdbba38ac..dd755f49fb 100644
--- a/src/lib/libcrypto/Makefile.ssl
+++ b/src/lib/libcrypto/Makefile.ssl
@@ -5,157 +5,210 @@
5DIR= crypto 5DIR= crypto
6TOP= .. 6TOP= ..
7CC= cc 7CC= cc
8INCLUDE= -I. -I../include 8INCLUDE= -I. -I$(TOP) -I../include
9INCLUDES= -I.. -I../../include 9INCLUDES= -I.. -I../.. -I../../include
10CFLAG= -g 10CFLAG= -g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
11INSTALLTOP= /usr/local/ssl 13INSTALLTOP= /usr/local/ssl
12MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
13MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
15RM= /bin/rm -f 18RM= rm -f
16AR= ar r 19AR= ar r
17 20
18MAKE= make -f Makefile.ssl
19MAKEDEPEND= makedepend -f Makefile.ssl
20MAKEFILE= Makefile.ssl
21
22PEX_LIBS= 21PEX_LIBS=
23EX_LIBS= 22EX_LIBS=
24 23
25CFLAGS= $(INCLUDE) $(CFLAG) -DCFLAGS=" \"$(CC) $(CFLAG)\" " 24CFLAGS= $(INCLUDE) $(CFLAG)
26 25
27ERR=crypto
28ERRC=cpt_err
29 26
30LIBS= 27LIBS=
31 28
32SDIRS= md2 md5 sha mdc2 hmac ripemd \ 29SDIRS= md2 md5 sha mdc2 hmac ripemd \
33 des rc2 rc4 rc5 idea bf cast \ 30 des rc2 rc4 rc5 idea bf cast \
34 bn rsa dsa dh \ 31 bn ec rsa dsa dh dso engine aes \
35 buffer bio stack lhash rand err objects \ 32 buffer bio stack lhash rand err objects \
36 evp pem x509 \ 33 evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5
37 asn1 conf txt_db pkcs7
38 34
39GENERAL=Makefile README 35GENERAL=Makefile README crypto-lib.com install.com
40 36
41LIB= $(TOP)/libcrypto.a 37LIB= $(TOP)/libcrypto.a
42LIBSRC= cryptlib.c mem.c cversion.c ex_data.c $(ERRC).c 38SHARED_LIB= libcrypto$(SHLIB_EXT)
43LIBOBJ= cryptlib.o mem.o cversion.o ex_data.o $(ERRC).o 39LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c
40LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o
44 41
45SRC= $(LIBSRC) 42SRC= $(LIBSRC)
46 43
47EXHEADER= crypto.h cryptall.h 44EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
48HEADER= cryptlib.h date.h $(EXHEADER) 45 ossl_typ.h
46HEADER= cryptlib.h buildinf.h md32_common.h o_time.h $(EXHEADER)
49 47
50ALL= $(GENERAL) $(SRC) $(HEADER) 48ALL= $(GENERAL) $(SRC) $(HEADER)
51 49
52top: 50top:
53 @(cd ..; $(MAKE) DIRS=$(DIR) all) 51 @(cd ..; $(MAKE) DIRS=$(DIR) all)
54 52
55all: date.h lib subdirs 53all: buildinf.h lib subdirs shared
54
55buildinf.h: ../Makefile.ssl
56 ( echo "#ifndef MK1MF_BUILD"; \
57 echo ' /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */'; \
58 echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \
59 echo ' #define PLATFORM "$(PLATFORM)"'; \
60 echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
61 echo '#endif' ) >buildinf.h
56 62
57date.h: ../Makefile.ssl ../VERSION 63testapps:
58 echo "#define DATE \"`date`\"" >date.h 64 if echo ${SDIRS} | fgrep ' des '; \
65 then cd des && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' des; fi
66 cd pkcs7 && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' testapps
59 67
60subdirs: 68subdirs:
61 @for i in $(SDIRS) ;\ 69 @for i in $(SDIRS) ;\
62 do \ 70 do \
63 (cd $$i; echo "making all in $$i..."; \ 71 (cd $$i && echo "making all in crypto/$$i..." && \
64 $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_MULW='${BN_MULW}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' all ); \ 72 $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \
65 done; 73 done;
66 74
67files: 75files:
68 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 76 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
69 @for i in $(SDIRS) ;\ 77 @for i in $(SDIRS) ;\
70 do \ 78 do \
71 (cd $$i; echo "making 'files' in $$i..."; \ 79 (cd $$i && echo "making 'files' in crypto/$$i..." && \
72 $(MAKE) files ); \ 80 $(MAKE) PERL='${PERL}' files ); \
73 done; 81 done;
74 82
75links: 83links:
76 /bin/rm -f Makefile 84 @$(TOP)/util/point.sh Makefile.ssl Makefile
77 $(TOP)/util/point.sh Makefile.ssl Makefile ; 85 @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
78 $(TOP)/util/mklink.sh ../include $(HEADER) ; 86 @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
79 $(TOP)/util/mklink.sh ../test $(TEST) ; 87 @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
80 $(TOP)/util/mklink.sh ../apps $(APPS) ; 88 @$(TOP)/util/point.sh Makefile.ssl Makefile
81 $(TOP)/util/point.sh Makefile.ssl Makefile; 89 @for i in $(SDIRS); do \
82 @for i in $(SDIRS) ;\ 90 (cd $$i && echo "making links in crypto/$$i..." && \
83 do \ 91 $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \
84 (cd $$i; echo "making links in $$i..."; \
85 $(MAKE) links ); \
86 done; 92 done;
87 93
88lib: $(LIBOBJ) 94lib: $(LIBOBJ)
89 $(AR) $(LIB) $(LIBOBJ) 95 $(AR) $(LIB) $(LIBOBJ)
90 sh $(TOP)/util/ranlib.sh $(LIB) 96 $(RANLIB) $(LIB) || echo Never mind.
91 @touch lib 97 @touch lib
92 98
99shared:
100 if [ -n "$(SHARED_LIBS)" ]; then \
101 (cd ..; make $(SHARED_LIB)); \
102 fi
103
93libs: 104libs:
94 @for i in $(SDIRS) ;\ 105 @for i in $(SDIRS) ;\
95 do \ 106 do \
96 (cd $$i; echo "making libs in $$i..."; \ 107 (cd $$i && echo "making libs in crypto/$$i..." && \
97 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \ 108 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \
98 done; 109 done;
99 110
100tests: 111tests:
101 @for i in $(SDIRS) ;\ 112 @for i in $(SDIRS) ;\
102 do \ 113 do \
103 (cd $$i; echo "making tests in $$i..."; \ 114 (cd $$i && echo "making tests in crypto/$$i..." && \
104 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \ 115 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \
105 done; 116 done;
106 117
107install: 118install:
108 @for i in $(EXHEADER) ;\ 119 @for i in $(EXHEADER) ;\
109 do \ 120 do \
110 (cp $$i $(INSTALLTOP)/include/$$i; \ 121 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
111 chmod 644 $(INSTALLTOP)/include/$$i ); \ 122 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
112 done; 123 done;
113 @for i in $(SDIRS) ;\ 124 @for i in $(SDIRS) ;\
114 do \ 125 do \
115 (cd $$i; echo "making install in $$i..."; \ 126 (cd $$i && echo "making install in crypto/$$i..." && \
116 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \ 127 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \
117 done; 128 done;
118 129
119lint: 130lint:
120 @for i in $(SDIRS) ;\ 131 @for i in $(SDIRS) ;\
121 do \ 132 do \
122 (cd $$i; echo "making lint in $$i..."; \ 133 (cd $$i && echo "making lint in crypto/$$i..." && \
123 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \ 134 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \
124 done; 135 done;
125 136
126depend: 137depend:
127 $(MAKEDEPEND) $(INCLUDE) $(PROGS) $(LIBSRC) 138 if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist
139 $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC)
140 if [ ! -s buildinf.h ]; then rm buildinf.h; fi
128 @for i in $(SDIRS) ;\ 141 @for i in $(SDIRS) ;\
129 do \ 142 do \
130 (cd $$i; echo "making depend in $$i..."; \ 143 (cd $$i && echo "making depend in crypto/$$i..." && \
131 $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' MAKEDEPEND='${MAKEDEPEND}' depend ); \ 144 $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \
132 done; 145 done;
133 146
134clean: 147clean:
135 /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 148 rm -f buildinf.h *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
136 @for i in $(SDIRS) ;\ 149 @for i in $(SDIRS) ;\
137 do \ 150 do \
138 (cd $$i; echo "making clean in $$i..."; \ 151 (cd $$i && echo "making clean in crypto/$$i..." && \
139 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \ 152 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \
140 done; 153 done;
141 154
142dclean: 155dclean:
143 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 156 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
144 mv -f Makefile.new $(MAKEFILE) 157 mv -f Makefile.new $(MAKEFILE)
145 @for i in $(SDIRS) ;\ 158 @for i in $(SDIRS) ;\
146 do \ 159 do \
147 (cd $$i; echo "making dclean in $$i..."; \ 160 (cd $$i && echo "making dclean in crypto/$$i..." && \
148 $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \ 161 $(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \
149 done;
150
151errors:
152 perl ./err/err_code.pl -conf err/ssleay.ec *.c */*.c ../ssl/*.c ../rsaref/*.c
153 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
154 perl err/err_genc.pl -s $(ERR).h $(ERRC).c
155 @for i in $(SDIRS) ;\
156 do \
157 (cd $$i; echo "making errors in $$i..."; \
158 $(MAKE) errors ); \
159 done; 162 done;
160 163
161# DO NOT DELETE THIS LINE -- make depend depends on it. 164# DO NOT DELETE THIS LINE -- make depend depends on it.
165
166cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
167cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
168cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
169cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
170cpt_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cpt_err.c
171cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
172cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
173cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h
174cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
175cryptlib.o: ../include/openssl/safestack.h ../include/openssl/stack.h
176cryptlib.o: ../include/openssl/symhacks.h cryptlib.c cryptlib.h
177cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
178cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
179cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h
180cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
181cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h
182cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c
183ebcdic.o: ../include/openssl/opensslconf.h ebcdic.c
184ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
185ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
186ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
187ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
188ex_data.o: ../include/openssl/safestack.h ../include/openssl/stack.h
189ex_data.o: ../include/openssl/symhacks.h cryptlib.h ex_data.c
190mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
191mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
192mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
193mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
194mem.o: ../include/openssl/safestack.h ../include/openssl/stack.h
195mem.o: ../include/openssl/symhacks.h cryptlib.h mem.c
196mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
197mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
198mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
199mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
200mem_dbg.o: ../include/openssl/safestack.h ../include/openssl/stack.h
201mem_dbg.o: ../include/openssl/symhacks.h cryptlib.h mem_dbg.c
202o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
203o_time.o: o_time.h
204tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
205tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
206tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h
207tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
208tmdiff.o: ../include/openssl/safestack.h ../include/openssl/stack.h
209tmdiff.o: ../include/openssl/symhacks.h ../include/openssl/tmdiff.h cryptlib.h
210tmdiff.o: tmdiff.c
211uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
212uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
213uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h
214uid.o: ../include/openssl/symhacks.h uid.c
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl
index 30751bd156..09d4cb4896 100644
--- a/src/lib/libcrypto/asn1/Makefile.ssl
+++ b/src/lib/libcrypto/asn1/Makefile.ssl
@@ -5,57 +5,52 @@
5DIR= asn1 5DIR= asn1
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=asn1
19ERRC=asn1_err
20GENERAL=Makefile README 21GENERAL=Makefile README
21TEST= 22TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= a_object.c a_bitstr.c a_utctm.c a_int.c a_octet.c a_print.c \ 26LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \
26 a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ 27 a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \
27 a_sign.c a_digest.c a_verify.c \ 28 a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \
28 x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c \ 29 x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \
29 x_name.c x_cinf.c x_x509.c x_crl.c x_info.c x_spki.c \ 30 x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \
30 d2i_r_pr.c i2d_r_pr.c d2i_r_pu.c i2d_r_pu.c \
31 d2i_s_pr.c i2d_s_pr.c d2i_s_pu.c i2d_s_pu.c \
32 d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ 31 d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\
33 t_req.c t_x509.c t_pkey.c \ 32 t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \
34 p7_i_s.c p7_signi.c p7_signd.c p7_recip.c p7_enc_c.c p7_evp.c \ 33 tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \
35 p7_dgst.c p7_s_e.c p7_enc.c p7_lib.c \ 34 f_int.c f_string.c n_pkey.c \
36 f_int.c f_string.c i2d_dhp.c i2d_dsap.c d2i_dhp.c d2i_dsap.c n_pkey.c \ 35 f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \
37 a_hdr.c x_pkey.c a_bool.c x_exten.c \ 36 asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \
38 asn1_par.c asn1_lib.c $(ERRC).c a_meth.c a_bytes.c \ 37 evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c
39 evp_asn1.c 38LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \
40LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_int.o a_octet.o a_print.o \ 39 a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \
41 a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ 40 a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \
42 a_sign.o a_digest.o a_verify.o \ 41 x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \
43 x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o \ 42 x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \
44 x_name.o x_cinf.o x_x509.o x_crl.o x_info.o x_spki.o \
45 d2i_r_pr.o i2d_r_pr.o d2i_r_pu.o i2d_r_pu.o \
46 d2i_s_pr.o i2d_s_pr.o d2i_s_pu.o i2d_s_pu.o \
47 d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ 43 d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \
48 t_req.o t_x509.o t_pkey.o \ 44 t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \
49 p7_i_s.o p7_signi.o p7_signd.o p7_recip.o p7_enc_c.o p7_evp.o \ 45 tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \
50 p7_dgst.o p7_s_e.o p7_enc.o p7_lib.o \ 46 f_int.o f_string.o n_pkey.o \
51 f_int.o f_string.o i2d_dhp.o i2d_dsap.o d2i_dhp.o d2i_dsap.o n_pkey.o \ 47 f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \
52 a_hdr.o x_pkey.o a_bool.o x_exten.o \ 48 asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \
53 asn1_par.o asn1_lib.o $(ERRC).o a_meth.o a_bytes.o \ 49 evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o
54 evp_asn1.o
55 50
56SRC= $(LIBSRC) 51SRC= $(LIBSRC)
57 52
58EXHEADER= asn1.h asn1_mac.h 53EXHEADER= asn1.h asn1_mac.h asn1t.h
59HEADER= $(EXHEADER) 54HEADER= $(EXHEADER)
60 55
61ALL= $(GENERAL) $(SRC) $(HEADER) 56ALL= $(GENERAL) $(SRC) $(HEADER)
@@ -75,24 +70,23 @@ all: lib
75 70
76lib: $(LIBOBJ) 71lib: $(LIBOBJ)
77 $(AR) $(LIB) $(LIBOBJ) 72 $(AR) $(LIB) $(LIBOBJ)
78 sh $(TOP)/util/ranlib.sh $(LIB) 73 $(RANLIB) $(LIB) || echo Never mind.
79 @touch lib 74 @touch lib
80 75
81files: 76files:
82 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 77 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
83 78
84links: 79links:
85 /bin/rm -f Makefile 80 @$(TOP)/util/point.sh Makefile.ssl Makefile
86 $(TOP)/util/point.sh Makefile.ssl Makefile ; 81 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
87 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 82 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
88 $(TOP)/util/mklink.sh ../../test $(TEST) 83 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
89 $(TOP)/util/mklink.sh ../../apps $(APPS)
90 84
91install: 85install:
92 @for i in $(EXHEADER) ; \ 86 @for i in $(EXHEADER) ; \
93 do \ 87 do \
94 (cp $$i $(INSTALLTOP)/include/$$i; \ 88 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
95 chmod 644 $(INSTALLTOP)/include/$$i ); \ 89 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
96 done; 90 done;
97 91
98tags: 92tags:
@@ -104,17 +98,789 @@ lint:
104 lint -DLINT $(INCLUDES) $(SRC)>fluff 98 lint -DLINT $(INCLUDES) $(SRC)>fluff
105 99
106depend: 100depend:
107 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 101 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
108 102
109dclean: 103dclean:
110 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 104 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
111 mv -f Makefile.new $(MAKEFILE) 105 mv -f Makefile.new $(MAKEFILE)
112 106
113clean: 107clean:
114 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 108 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
115 109
116errors:
117 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
118 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
119 110
120# DO NOT DELETE THIS LINE -- make depend depends on it. 111# DO NOT DELETE THIS LINE -- make depend depends on it.
112
113a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h
114a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
115a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
116a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
117a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
118a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
119a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
120a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c
121a_bool.o: ../../e_os.h ../../include/openssl/asn1.h
122a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
123a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
124a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
125a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
126a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
127a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
128a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
129a_bool.o: ../cryptlib.h a_bool.c
130a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h
131a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
132a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
133a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
134a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
135a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
136a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
137a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c
138a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h
139a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
140a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
141a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
142a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
143a_d2i_fp.o: ../../include/openssl/opensslconf.h
144a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
145a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
146a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c
147a_digest.o: ../../e_os.h ../../include/openssl/asn1.h
148a_digest.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
149a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
150a_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
151a_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
152a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
153a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
154a_digest.o: ../../include/openssl/opensslconf.h
155a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
156a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
157a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
158a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
159a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
160a_digest.o: ../cryptlib.h a_digest.c
161a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
162a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
163a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
164a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
165a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
166a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
167a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
168a_dup.o: ../cryptlib.h a_dup.c
169a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
170a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
171a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
172a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
173a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
174a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
175a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
176a_enum.o: ../cryptlib.h a_enum.c
177a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h
178a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
179a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
180a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
181a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
182a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
183a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
184a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c
185a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h
186a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
187a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
188a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
189a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
190a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
191a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
192a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
193a_hdr.o: ../cryptlib.h a_hdr.c
194a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h
195a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
196a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
197a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
198a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
199a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
200a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
201a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c
202a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
203a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
204a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
205a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
206a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
207a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
208a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
209a_int.o: ../cryptlib.h a_int.c
210a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h
211a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
212a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
213a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
214a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
215a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
216a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
217a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c
218a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
219a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
220a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
221a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
222a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
223a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
224a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
225a_meth.o: ../cryptlib.h a_meth.c
226a_object.o: ../../e_os.h ../../include/openssl/asn1.h
227a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
228a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
229a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
230a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
231a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
232a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
233a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
234a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c
235a_octet.o: ../../e_os.h ../../include/openssl/asn1.h
236a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
237a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
238a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
239a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
240a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
241a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
242a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c
243a_print.o: ../../e_os.h ../../include/openssl/asn1.h
244a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
245a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
246a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
247a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
248a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
249a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
250a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c
251a_set.o: ../../e_os.h ../../include/openssl/asn1.h
252a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
253a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
254a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
255a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
256a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
257a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
258a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
259a_set.o: ../cryptlib.h a_set.c
260a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
261a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
262a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
263a_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
264a_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
265a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
266a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
267a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
268a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
269a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
270a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
271a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
272a_sign.o: ../cryptlib.h a_sign.c
273a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
274a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
275a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
276a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
277a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
278a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
279a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
280a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
281a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
282a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
283a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
284a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h
285a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h
286a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
287a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
288a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
289a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
290a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
291a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
292a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
293a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c
294a_time.o: ../../e_os.h ../../include/openssl/asn1.h
295a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
296a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
297a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
298a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
299a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
300a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
301a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
302a_time.o: ../cryptlib.h ../o_time.h a_time.c
303a_type.o: ../../e_os.h ../../include/openssl/asn1.h
304a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
305a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
306a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
307a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
308a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
309a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
310a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
311a_type.o: ../cryptlib.h a_type.c
312a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h
313a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
314a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
315a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
316a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
317a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
318a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
319a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c
320a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
321a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
322a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
323a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
324a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
325a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
326a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
327a_utf8.o: ../cryptlib.h a_utf8.c
328a_verify.o: ../../e_os.h ../../include/openssl/asn1.h
329a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
330a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
331a_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
332a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
333a_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
334a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
335a_verify.o: ../../include/openssl/opensslconf.h
336a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
337a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
338a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
339a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
340a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
341a_verify.o: ../cryptlib.h a_verify.c
342asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
343asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
344asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
345asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
346asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
347asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
348asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c
349asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h
350asn1_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
351asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
352asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
353asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
354asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
355asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
356asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c
357asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h
358asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
359asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
360asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
361asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
362asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
363asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
364asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
365asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c
366asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h
367asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
368asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
369asn_moid.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
370asn_moid.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
371asn_moid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
372asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
373asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
374asn_moid.o: ../../include/openssl/opensslconf.h
375asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
376asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
377asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
378asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
379asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
380asn_moid.o: ../cryptlib.h asn_moid.c
381asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h
382asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
383asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
384asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
385asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
386asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
387asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
388asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c
389d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
390d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
391d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
392d2i_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
393d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
394d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
395d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
396d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
397d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
398d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
399d2i_pr.o: ../cryptlib.h d2i_pr.c
400d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
401d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
402d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
403d2i_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
404d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
405d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
406d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
407d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
408d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
409d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
410d2i_pu.o: ../cryptlib.h d2i_pu.c
411evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
412evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
413evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
414evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
415evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
416evp_asn1.o: ../../include/openssl/opensslconf.h
417evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
418evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
419evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c
420f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
421f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
422f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
423f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
424f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
425f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
426f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
427f_enum.o: ../cryptlib.h f_enum.c
428f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
429f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
430f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
431f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
432f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
433f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
434f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
435f_int.o: ../cryptlib.h f_int.c
436f_string.o: ../../e_os.h ../../include/openssl/asn1.h
437f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
438f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
439f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
440f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
441f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
442f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
443f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c
444i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
445i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
446i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
447i2d_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
448i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
449i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
450i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
451i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
452i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
453i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
454i2d_pr.o: ../cryptlib.h i2d_pr.c
455i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
456i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
457i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
458i2d_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
459i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
460i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
461i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
462i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
463i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
464i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
465i2d_pu.o: ../cryptlib.h i2d_pu.c
466n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
467n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h
468n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
469n_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
470n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
471n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
472n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
473n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
474n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
475n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
476n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
477n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
478n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
479n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c
480nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
481nsseq.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
482nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
483nsseq.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
484nsseq.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
485nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
486nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
487nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
488nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
489nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
490nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
491nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c
492p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h
493p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
494p5_pbe.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
495p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
496p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
497p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h
498p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
499p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
500p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
501p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
502p5_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
503p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
504p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
505p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c
506p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h
507p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
508p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
509p5_pbev2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
510p5_pbev2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
511p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
512p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
513p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
514p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
515p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
516p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
517p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
518p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
519p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c
520p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
521p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
522p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
523p8_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
524p8_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
525p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
526p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
527p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
528p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
529p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
530p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
531p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
532p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
533p8_pkey.o: ../cryptlib.h p8_pkey.c
534t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h
535t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
536t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
537t_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
538t_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
539t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h
540t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
541t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
542t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
543t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
544t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
545t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
546t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
547t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c
548t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
549t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
550t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
551t_crl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
552t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
553t_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
554t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
555t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
556t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
557t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
558t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
559t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
560t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
561t_crl.o: ../cryptlib.h t_crl.c
562t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
563t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
564t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
565t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
566t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
567t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
568t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h
569t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
570t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c
571t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
572t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
573t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
574t_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
575t_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
576t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
577t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
578t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
579t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
580t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
581t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
582t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
583t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
584t_req.o: ../cryptlib.h t_req.c
585t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
586t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
587t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
588t_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
589t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
590t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
591t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
592t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
593t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
594t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
595t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
596t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
597t_spki.o: ../cryptlib.h t_spki.c
598t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
599t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
600t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
601t_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
602t_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
603t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
604t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
605t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
606t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
607t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
608t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
609t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
610t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
611t_x509.o: ../cryptlib.h t_x509.c
612t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
613t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
614t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
615t_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
616t_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
617t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
618t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
619t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
620t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
621t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
622t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
623t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
624t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c
625tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
626tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
627tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
628tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
629tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
630tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
631tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
632tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
633tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c
634tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
635tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
636tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
637tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
638tasn_enc.o: ../../include/openssl/opensslconf.h
639tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
640tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
641tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c
642tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
643tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
644tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
645tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
646tasn_fre.o: ../../include/openssl/opensslconf.h
647tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
648tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
649tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c
650tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
651tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
652tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
653tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
654tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
655tasn_new.o: ../../include/openssl/opensslconf.h
656tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
657tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
658tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c
659tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
660tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
661tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
662tasn_typ.o: ../../include/openssl/opensslconf.h
663tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
664tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
665tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c
666tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
667tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
668tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
669tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
670tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
671tasn_utl.o: ../../include/openssl/opensslconf.h
672tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
673tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
674tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c
675x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
676x_algor.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
677x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
678x_algor.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
679x_algor.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
680x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
681x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
682x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
683x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
684x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
685x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
686x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
687x_algor.o: x_algor.c
688x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h
689x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
690x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
691x_attrib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
692x_attrib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
693x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
694x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
695x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
696x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
697x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
698x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
699x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
700x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
701x_attrib.o: ../cryptlib.h x_attrib.c
702x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h
703x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
704x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
705x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
706x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
707x_bignum.o: ../../include/openssl/opensslconf.h
708x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
709x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
710x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c
711x_crl.o: ../../e_os.h ../../include/openssl/asn1.h
712x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
713x_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
714x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
715x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
716x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
717x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
718x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
719x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
720x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
721x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
722x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
723x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
724x_crl.o: ../cryptlib.h x_crl.c
725x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
726x_exten.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
727x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
728x_exten.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
729x_exten.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
730x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
731x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
732x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
733x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
734x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
735x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
736x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
737x_exten.o: x_exten.c
738x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
739x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
740x_info.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
741x_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
742x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h
743x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
744x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
745x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
746x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
747x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
748x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
749x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
750x_info.o: ../cryptlib.h x_info.c
751x_long.o: ../../e_os.h ../../include/openssl/asn1.h
752x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
753x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
754x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
755x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
756x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
757x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
758x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
759x_long.o: ../cryptlib.h x_long.c
760x_name.o: ../../e_os.h ../../include/openssl/asn1.h
761x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
762x_name.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
763x_name.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
764x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
765x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h
766x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
767x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
768x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
769x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
770x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
771x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
772x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
773x_name.o: ../cryptlib.h x_name.c
774x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
775x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
776x_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
777x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
778x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
779x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
780x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
781x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
782x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
783x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
784x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
785x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
786x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
787x_pkey.o: ../cryptlib.h x_pkey.c
788x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h
789x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
790x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
791x_pubkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
792x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
793x_pubkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
794x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
795x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
796x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
797x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
798x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
799x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
800x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
801x_pubkey.o: ../cryptlib.h x_pubkey.c
802x_req.o: ../../e_os.h ../../include/openssl/asn1.h
803x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
804x_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
805x_req.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
806x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
807x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h
808x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
809x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
810x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
811x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
812x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
813x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
814x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
815x_req.o: ../cryptlib.h x_req.c
816x_sig.o: ../../e_os.h ../../include/openssl/asn1.h
817x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
818x_sig.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
819x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
820x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
821x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h
822x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
823x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
824x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
825x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
826x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
827x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
828x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
829x_sig.o: ../cryptlib.h x_sig.c
830x_spki.o: ../../e_os.h ../../include/openssl/asn1.h
831x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
832x_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
833x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
834x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
835x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
836x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
837x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
838x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
839x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
840x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
841x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
842x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
843x_spki.o: ../cryptlib.h x_spki.c
844x_val.o: ../../e_os.h ../../include/openssl/asn1.h
845x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
846x_val.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
847x_val.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
848x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
849x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h
850x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
851x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
852x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
853x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
854x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
855x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
856x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
857x_val.o: ../cryptlib.h x_val.c
858x_x509.o: ../../e_os.h ../../include/openssl/asn1.h
859x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
860x_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
861x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
862x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
863x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
864x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
865x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
866x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
867x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
868x_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
869x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
870x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
871x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
872x_x509.o: ../cryptlib.h x_x509.c
873x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
874x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
875x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
876x_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
877x_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
878x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h
879x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
880x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
881x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
882x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
883x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
884x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
885x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
886x_x509a.o: ../cryptlib.h x_x509a.c
diff --git a/src/lib/libcrypto/asn1/f.c b/src/lib/libcrypto/asn1/f.c
index 2ab3a262ac..82bccdfd51 100644
--- a/src/lib/libcrypto/asn1/f.c
+++ b/src/lib/libcrypto/asn1/f.c
@@ -56,8 +56,8 @@
56 * [including the GNU Public Licence.] 56 * [including the GNU Public Licence.]
57 */ 57 */
58#include <stdio.h> 58#include <stdio.h>
59#include "asn1.h" 59#include <openssl/asn1.h>
60#include "err.h" 60#include <openssl/err.h>
61 61
62main() 62main()
63 { 63 {
diff --git a/src/lib/libcrypto/asn1/x_cinf.c b/src/lib/libcrypto/asn1/x_cinf.c
index 4fc2cc9f6e..339a110eef 100644
--- a/src/lib/libcrypto/asn1/x_cinf.c
+++ b/src/lib/libcrypto/asn1/x_cinf.c
@@ -58,16 +58,10 @@
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include "cryptlib.h" 60#include "cryptlib.h"
61#include "asn1_mac.h" 61#include <openssl/asn1_mac.h>
62#include <openssl/x509.h>
62 63
63/* 64int i2d_X509_CINF(X509_CINF *a, unsigned char **pp)
64 * ASN1err(ASN1_F_D2I_X509_CINF,ASN1_R_LENGTH_MISMATCH);
65 * ASN1err(ASN1_F_X509_CINF_NEW,ASN1_R_LENGTH_MISMATCH);
66 */
67
68int i2d_X509_CINF(a,pp)
69X509_CINF *a;
70unsigned char **pp;
71 { 65 {
72 int v1=0,v2=0; 66 int v1=0,v2=0;
73 M_ASN1_I2D_vars(a); 67 M_ASN1_I2D_vars(a);
@@ -81,7 +75,9 @@ unsigned char **pp;
81 M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); 75 M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY);
82 M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); 76 M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING);
83 M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); 77 M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING);
84 M_ASN1_I2D_len_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); 78 M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions,
79 i2d_X509_EXTENSION,3,
80 V_ASN1_SEQUENCE,v2);
85 81
86 M_ASN1_I2D_seq_total(); 82 M_ASN1_I2D_seq_total();
87 83
@@ -94,15 +90,14 @@ unsigned char **pp;
94 M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); 90 M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY);
95 M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); 91 M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1);
96 M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); 92 M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2);
97 M_ASN1_I2D_put_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); 93 M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions,
94 i2d_X509_EXTENSION,3,
95 V_ASN1_SEQUENCE,v2);
98 96
99 M_ASN1_I2D_finish(); 97 M_ASN1_I2D_finish();
100 } 98 }
101 99
102X509_CINF *d2i_X509_CINF(a,pp,length) 100X509_CINF *d2i_X509_CINF(X509_CINF **a, unsigned char **pp, long length)
103X509_CINF **a;
104unsigned char **pp;
105long length;
106 { 101 {
107 int ver=0; 102 int ver=0;
108 M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); 103 M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new);
@@ -120,7 +115,7 @@ long length;
120 { 115 {
121 if (ret->version != NULL) 116 if (ret->version != NULL)
122 { 117 {
123 ASN1_INTEGER_free(ret->version); 118 M_ASN1_INTEGER_free(ret->version);
124 ret->version=NULL; 119 ret->version=NULL;
125 } 120 }
126 } 121 }
@@ -134,38 +129,48 @@ long length;
134 { 129 {
135 if (ret->issuerUID != NULL) 130 if (ret->issuerUID != NULL)
136 { 131 {
137 ASN1_BIT_STRING_free(ret->issuerUID); 132 M_ASN1_BIT_STRING_free(ret->issuerUID);
138 ret->issuerUID=NULL; 133 ret->issuerUID=NULL;
139 } 134 }
140 if (ret->subjectUID != NULL) 135 if (ret->subjectUID != NULL)
141 { 136 {
142 ASN1_BIT_STRING_free(ret->subjectUID); 137 M_ASN1_BIT_STRING_free(ret->subjectUID);
143 ret->issuerUID=NULL; 138 ret->subjectUID=NULL;
144 } 139 }
145 M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, 140 M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1,
146 V_ASN1_BIT_STRING); 141 V_ASN1_BIT_STRING);
147 M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, 142 M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2,
148 V_ASN1_BIT_STRING); 143 V_ASN1_BIT_STRING);
149 } 144 }
145/* Note: some broken certificates include extensions but don't set
146 * the version number properly. By bypassing this check they can
147 * be parsed.
148 */
149
150#ifdef VERSION_EXT_CHECK
150 if (ver >= 2) /* version 3 extensions */ 151 if (ver >= 2) /* version 3 extensions */
152#endif
151 { 153 {
152 if (ret->extensions != NULL) 154 if (ret->extensions != NULL)
153 while (sk_num(ret->extensions)) 155 while (sk_X509_EXTENSION_num(ret->extensions))
154 X509_EXTENSION_free((X509_EXTENSION *) 156 X509_EXTENSION_free(
155 sk_pop(ret->extensions)); 157 sk_X509_EXTENSION_pop(ret->extensions));
156 M_ASN1_D2I_get_EXP_set_opt(ret->extensions,d2i_X509_EXTENSION,3, 158 M_ASN1_D2I_get_EXP_set_opt_type(X509_EXTENSION,ret->extensions,
157 V_ASN1_SEQUENCE); 159 d2i_X509_EXTENSION,
160 X509_EXTENSION_free,3,
161 V_ASN1_SEQUENCE);
158 } 162 }
159 M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); 163 M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF);
160 } 164 }
161 165
162X509_CINF *X509_CINF_new() 166X509_CINF *X509_CINF_new(void)
163 { 167 {
164 X509_CINF *ret=NULL; 168 X509_CINF *ret=NULL;
169 ASN1_CTX c;
165 170
166 M_ASN1_New_Malloc(ret,X509_CINF); 171 M_ASN1_New_Malloc(ret,X509_CINF);
167 ret->version=NULL; 172 ret->version=NULL;
168 M_ASN1_New(ret->serialNumber,ASN1_INTEGER_new); 173 M_ASN1_New(ret->serialNumber,M_ASN1_INTEGER_new);
169 M_ASN1_New(ret->signature,X509_ALGOR_new); 174 M_ASN1_New(ret->signature,X509_ALGOR_new);
170 M_ASN1_New(ret->issuer,X509_NAME_new); 175 M_ASN1_New(ret->issuer,X509_NAME_new);
171 M_ASN1_New(ret->validity,X509_VAL_new); 176 M_ASN1_New(ret->validity,X509_VAL_new);
@@ -178,20 +183,19 @@ X509_CINF *X509_CINF_new()
178 M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); 183 M_ASN1_New_Error(ASN1_F_X509_CINF_NEW);
179 } 184 }
180 185
181void X509_CINF_free(a) 186void X509_CINF_free(X509_CINF *a)
182X509_CINF *a;
183 { 187 {
184 if (a == NULL) return; 188 if (a == NULL) return;
185 ASN1_INTEGER_free(a->version); 189 M_ASN1_INTEGER_free(a->version);
186 ASN1_INTEGER_free(a->serialNumber); 190 M_ASN1_INTEGER_free(a->serialNumber);
187 X509_ALGOR_free(a->signature); 191 X509_ALGOR_free(a->signature);
188 X509_NAME_free(a->issuer); 192 X509_NAME_free(a->issuer);
189 X509_VAL_free(a->validity); 193 X509_VAL_free(a->validity);
190 X509_NAME_free(a->subject); 194 X509_NAME_free(a->subject);
191 X509_PUBKEY_free(a->key); 195 X509_PUBKEY_free(a->key);
192 ASN1_BIT_STRING_free(a->issuerUID); 196 M_ASN1_BIT_STRING_free(a->issuerUID);
193 ASN1_BIT_STRING_free(a->subjectUID); 197 M_ASN1_BIT_STRING_free(a->subjectUID);
194 sk_pop_free(a->extensions,X509_EXTENSION_free); 198 sk_X509_EXTENSION_pop_free(a->extensions,X509_EXTENSION_free);
195 Free((char *)a); 199 OPENSSL_free(a);
196 } 200 }
197 201
diff --git a/src/lib/libcrypto/bf/Makefile.ssl b/src/lib/libcrypto/bf/Makefile.ssl
index 236671f238..1b1cb8842f 100644
--- a/src/lib/libcrypto/bf/Makefile.ssl
+++ b/src/lib/libcrypto/bf/Makefile.ssl
@@ -8,9 +8,12 @@ CC= cc
8CPP= $(CC) -E 8CPP= $(CC) -E
9INCLUDES= 9INCLUDES=
10CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
11INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
12MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
13MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
15AR= ar r 18AR= ar r
16 19
@@ -42,12 +45,12 @@ all: lib
42 45
43lib: $(LIBOBJ) 46lib: $(LIBOBJ)
44 $(AR) $(LIB) $(LIBOBJ) 47 $(AR) $(LIB) $(LIBOBJ)
45 sh $(TOP)/util/ranlib.sh $(LIB) 48 $(RANLIB) $(LIB) || echo Never mind.
46 @touch lib 49 @touch lib
47 50
48# elf 51# elf
49asm/bx86-elf.o: asm/bx86unix.cpp 52asm/bx86-elf.o: asm/bx86unix.cpp
50 $(CPP) -DELF asm/bx86unix.cpp | as -o asm/bx86-elf.o 53 $(CPP) -DELF -x c asm/bx86unix.cpp | as -o asm/bx86-elf.o
51 54
52# solaris 55# solaris
53asm/bx86-sol.o: asm/bx86unix.cpp 56asm/bx86-sol.o: asm/bx86unix.cpp
@@ -61,27 +64,27 @@ asm/bx86-out.o: asm/bx86unix.cpp
61 64
62# bsdi 65# bsdi
63asm/bx86bsdi.o: asm/bx86unix.cpp 66asm/bx86bsdi.o: asm/bx86unix.cpp
64 $(CPP) -DBSDI asm/bx86unix.cpp | as -o asm/bx86bsdi.o 67 $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o
65 68
66asm/bx86unix.cpp: 69asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
67 (cd asm; perl bf-586.pl cpp >bx86unix.cpp) 70 (cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp)
68 71
69files: 72files:
70 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 73 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
71 74
72links: 75links:
73 /bin/rm -f Makefile 76 @$(TOP)/util/point.sh Makefile.ssl Makefile
74 $(TOP)/util/point.sh Makefile.ssl Makefile ; 77 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
75 $(TOP)/util/point.sh ../../doc/blowfish.doc blowfish.doc ; 78 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
76 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 79 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
77 $(TOP)/util/mklink.sh ../../test $(TEST) 80
78 $(TOP)/util/mklink.sh ../../apps $(APPS) 81install: installs
79 82
80install: 83installs:
81 @for i in $(EXHEADER) ; \ 84 @for i in $(EXHEADER) ; \
82 do \ 85 do \
83 (cp $$i $(INSTALLTOP)/include/$$i; \ 86 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
84 chmod 644 $(INSTALLTOP)/include/$$i ); \ 87 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
85 done; 88 done;
86 89
87tags: 90tags:
@@ -93,15 +96,25 @@ lint:
93 lint -DLINT $(INCLUDES) $(SRC)>fluff 96 lint -DLINT $(INCLUDES) $(SRC)>fluff
94 97
95depend: 98depend:
96 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 99 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
97 100
98dclean: 101dclean:
99 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 102 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
100 mv -f Makefile.new $(MAKEFILE) 103 mv -f Makefile.new $(MAKEFILE)
101 104
102clean: 105clean:
103 /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 106 rm -f asm/bx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
104
105errors:
106 107
107# DO NOT DELETE THIS LINE -- make depend depends on it. 108# DO NOT DELETE THIS LINE -- make depend depends on it.
109
110bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
111bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h
112bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
113bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
114bf_ecb.o: bf_ecb.c bf_locl.h
115bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
116bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h
117bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
118bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c
119bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
120bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c
diff --git a/src/lib/libcrypto/bio/Makefile.ssl b/src/lib/libcrypto/bio/Makefile.ssl
index 42e11e1c94..103a051c03 100644
--- a/src/lib/libcrypto/bio/Makefile.ssl
+++ b/src/lib/libcrypto/bio/Makefile.ssl
@@ -5,38 +5,41 @@
5DIR= bio 5DIR= bio
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=bio
19ERRC=bio_err
20GENERAL=Makefile 21GENERAL=Makefile
21TEST= 22TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= bio_lib.c bio_cb.c $(ERRC).c \ 26LIBSRC= bio_lib.c bio_cb.c bio_err.c \
26 bss_mem.c bss_null.c bss_fd.c \ 27 bss_mem.c bss_null.c bss_fd.c \
27 bss_file.c bss_sock.c bss_conn.c \ 28 bss_file.c bss_sock.c bss_conn.c \
28 bf_null.c bf_buff.c b_print.c b_dump.c \ 29 bf_null.c bf_buff.c b_print.c b_dump.c \
29 b_sock.c bss_acpt.c bf_nbio.c 30 b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c
30LIBOBJ= bio_lib.o bio_cb.o $(ERRC).o \ 31# bf_lbuf.c
32LIBOBJ= bio_lib.o bio_cb.o bio_err.o \
31 bss_mem.o bss_null.o bss_fd.o \ 33 bss_mem.o bss_null.o bss_fd.o \
32 bss_file.o bss_sock.o bss_conn.o \ 34 bss_file.o bss_sock.o bss_conn.o \
33 bf_null.o bf_buff.o b_print.o b_dump.o \ 35 bf_null.o bf_buff.o b_print.o b_dump.o \
34 b_sock.o bss_acpt.o bf_nbio.o 36 b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o
37# bf_lbuf.o
35 38
36SRC= $(LIBSRC) 39SRC= $(LIBSRC)
37 40
38EXHEADER= bio.h bss_file.c 41EXHEADER= bio.h
39HEADER= $(EXHEADER) 42HEADER= bss_file.c $(EXHEADER)
40 43
41ALL= $(GENERAL) $(SRC) $(HEADER) 44ALL= $(GENERAL) $(SRC) $(HEADER)
42 45
@@ -47,24 +50,23 @@ all: lib
47 50
48lib: $(LIBOBJ) 51lib: $(LIBOBJ)
49 $(AR) $(LIB) $(LIBOBJ) 52 $(AR) $(LIB) $(LIBOBJ)
50 sh $(TOP)/util/ranlib.sh $(LIB) 53 $(RANLIB) $(LIB) || echo Never mind.
51 @touch lib 54 @touch lib
52 55
53files: 56files:
54 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 57 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
55 58
56links: 59links:
57 /bin/rm -f Makefile 60 @$(TOP)/util/point.sh Makefile.ssl Makefile
58 $(TOP)/util/point.sh Makefile.ssl Makefile; 61 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
59 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 62 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
60 $(TOP)/util/mklink.sh ../../test $(TEST) 63 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
61 $(TOP)/util/mklink.sh ../../apps $(APPS)
62 64
63install: 65install:
64 @for i in $(EXHEADER) bss_file.c ; \ 66 @for i in $(EXHEADER); \
65 do \ 67 do \
66 (cp $$i $(INSTALLTOP)/include/$$i; \ 68 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
67 chmod 644 $(INSTALLTOP)/include/$$i ); \ 69 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
68 done; 70 done;
69 71
70tags: 72tags:
@@ -76,17 +78,139 @@ lint:
76 lint -DLINT $(INCLUDES) $(SRC)>fluff 78 lint -DLINT $(INCLUDES) $(SRC)>fluff
77 79
78depend: 80depend:
79 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 81 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
80 82
81dclean: 83dclean:
82 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 84 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
83 mv -f Makefile.new $(MAKEFILE) 85 mv -f Makefile.new $(MAKEFILE)
84 86
85clean: 87clean:
86 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 88 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
87
88errors:
89 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
90 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
91 89
92# DO NOT DELETE THIS LINE -- make depend depends on it. 90# DO NOT DELETE THIS LINE -- make depend depends on it.
91
92b_dump.o: ../../e_os.h ../../include/openssl/bio.h
93b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
94b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
95b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
96b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
97b_dump.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
98b_dump.o: ../cryptlib.h b_dump.c
99b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
100b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
101b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
102b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
103b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
104b_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
105b_print.o: ../cryptlib.h b_print.c
106b_sock.o: ../../e_os.h ../../include/openssl/bio.h
107b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
108b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
109b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
110b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
111b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
112b_sock.o: ../cryptlib.h b_sock.c
113bf_buff.o: ../../e_os.h ../../include/openssl/bio.h
114bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
115bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
116bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
117bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
118bf_buff.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
119bf_buff.o: ../cryptlib.h bf_buff.c
120bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h
121bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
122bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
123bf_nbio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
124bf_nbio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
125bf_nbio.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
126bf_nbio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
127bf_nbio.o: ../cryptlib.h bf_nbio.c
128bf_null.o: ../../e_os.h ../../include/openssl/bio.h
129bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
130bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
131bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
132bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
133bf_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
134bf_null.o: ../cryptlib.h bf_null.c
135bio_cb.o: ../../e_os.h ../../include/openssl/bio.h
136bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
137bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
138bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
139bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
140bio_cb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
141bio_cb.o: ../cryptlib.h bio_cb.c
142bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
143bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
144bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
145bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
146bio_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
147bio_err.o: bio_err.c
148bio_lib.o: ../../e_os.h ../../include/openssl/bio.h
149bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
150bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
151bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
152bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
153bio_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
154bio_lib.o: ../cryptlib.h bio_lib.c
155bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h
156bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
157bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
158bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
159bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
160bss_acpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
161bss_acpt.o: ../cryptlib.h bss_acpt.c
162bss_bio.o: ../../e_os.h ../../include/openssl/bio.h
163bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
164bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
165bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
166bss_bio.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
167bss_bio.o: ../../include/openssl/symhacks.h bss_bio.c
168bss_conn.o: ../../e_os.h ../../include/openssl/bio.h
169bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
170bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
171bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
172bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
173bss_conn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
174bss_conn.o: ../cryptlib.h bss_conn.c
175bss_fd.o: ../../e_os.h ../../include/openssl/bio.h
176bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
177bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
178bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
179bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
180bss_fd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
181bss_fd.o: ../cryptlib.h bss_fd.c
182bss_file.o: ../../e_os.h ../../include/openssl/bio.h
183bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
184bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
185bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
186bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
187bss_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
188bss_file.o: ../cryptlib.h bss_file.c
189bss_log.o: ../../e_os.h ../../include/openssl/bio.h
190bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
191bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
192bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
193bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
194bss_log.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
195bss_log.o: ../cryptlib.h bss_log.c
196bss_mem.o: ../../e_os.h ../../include/openssl/bio.h
197bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
198bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
199bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
200bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
201bss_mem.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
202bss_mem.o: ../cryptlib.h bss_mem.c
203bss_null.o: ../../e_os.h ../../include/openssl/bio.h
204bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
205bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
206bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
207bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
208bss_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
209bss_null.o: ../cryptlib.h bss_null.c
210bss_sock.o: ../../e_os.h ../../include/openssl/bio.h
211bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
212bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
213bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
214bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
215bss_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
216bss_sock.o: ../cryptlib.h bss_sock.c
diff --git a/src/lib/libcrypto/bn/Makefile.ssl b/src/lib/libcrypto/bn/Makefile.ssl
index 9809d26cbc..605cb17577 100644
--- a/src/lib/libcrypto/bn/Makefile.ssl
+++ b/src/lib/libcrypto/bn/Makefile.ssl
@@ -5,37 +5,46 @@
5DIR= bn 5DIR= bn
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8CPP= $(CC) -E
9INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
14AR= ar r 18AR= ar r
15 19
16BN_MULW= bn_mulw.o 20BN_ASM= bn_asm.o
17# or use 21# or use
18#BN_MULW= bn86-elf.o 22#BN_ASM= bn86-elf.o
19 23
20CFLAGS= $(INCLUDES) $(CFLAG) 24CFLAGS= $(INCLUDES) $(CFLAG)
21 25
22ERR=bn 26# We let the C compiler driver to take care of .s files. This is done in
23ERRC=bn_err 27# order to be excused from maintaining a separate set of architecture
28# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
29# gcc, then the driver will automatically translate it to -xarch=v8plus
30# and pass it down to assembler.
31AS=$(CC) -c
32ASFLAGS=$(CFLAGS)
33
24GENERAL=Makefile 34GENERAL=Makefile
25TEST=bntest.c exptest.c 35TEST=bntest.c exptest.c
26APPS= 36APPS=
27 37
28LIB=$(TOP)/libcrypto.a 38LIB=$(TOP)/libcrypto.a
29LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mod.c bn_mul.c \ 39LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
30 bn_print.c bn_rand.c bn_shift.c bn_sub.c bn_word.c bn_blind.c \ 40 bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
31 bn_gcd.c bn_prime.c $(ERRC).c bn_sqr.c bn_mulw.c bn_recp.c bn_mont.c \ 41 bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
32 bn_mpi.c 42 bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c
33
34LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_mod.o bn_mul.o \
35 bn_print.o bn_rand.o bn_shift.o bn_sub.o bn_word.o bn_blind.o \
36 bn_gcd.o bn_prime.o $(ERRC).o bn_sqr.o $(BN_MULW) bn_recp.o bn_mont.o \
37 bn_mpi.o
38 43
44LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
45 bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
46 bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
47 bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o
39 48
40SRC= $(LIBSRC) 49SRC= $(LIBSRC)
41 50
@@ -49,21 +58,26 @@ top:
49 58
50all: lib 59all: lib
51 60
52knuth: bn_knuth.c 61bn_prime.h: bn_prime.pl
53 cc -pg -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a 62 $(PERL) bn_prime.pl >bn_prime.h
54 63
55knuth.fast: bn_knuth.c 64divtest: divtest.c ../../libcrypto.a
56 cc -pg -fast -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a 65 cc -I../../include divtest.c -o divtest ../../libcrypto.a
57 66
67bnbug: bnbug.c ../../libcrypto.a top
68 cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
58 69
59lib: $(LIBOBJ) 70lib: $(LIBOBJ)
60 $(AR) $(LIB) $(LIBOBJ) 71 $(AR) $(LIB) $(LIBOBJ)
61 sh $(TOP)/util/ranlib.sh $(LIB) 72 $(RANLIB) $(LIB) || echo Never mind.
62 @touch lib 73 @touch lib
63 74
64# elf 75# elf
65asm/bn86-elf.o: asm/bn86unix.cpp 76asm/bn86-elf.o: asm/bn86unix.cpp
66 $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o 77 $(CPP) -DELF -x c asm/bn86unix.cpp | as -o asm/bn86-elf.o
78
79asm/co86-elf.o: asm/co86unix.cpp
80 $(CPP) -DELF -x c asm/co86unix.cpp | as -o asm/co86-elf.o
67 81
68# solaris 82# solaris
69asm/bn86-sol.o: asm/bn86unix.cpp 83asm/bn86-sol.o: asm/bn86unix.cpp
@@ -71,40 +85,79 @@ asm/bn86-sol.o: asm/bn86unix.cpp
71 as -o asm/bn86-sol.o asm/bn86-sol.s 85 as -o asm/bn86-sol.o asm/bn86-sol.s
72 rm -f asm/bn86-sol.s 86 rm -f asm/bn86-sol.s
73 87
88asm/co86-sol.o: asm/co86unix.cpp
89 $(CC) -E -DSOL asm/co86unix.cpp | sed 's/^#.*//' > asm/co86-sol.s
90 as -o asm/co86-sol.o asm/co86-sol.s
91 rm -f asm/co86-sol.s
92
74# a.out 93# a.out
75asm/bn86-out.o: asm/bn86unix.cpp 94asm/bn86-out.o: asm/bn86unix.cpp
76 $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o 95 $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o
77 96
97asm/co86-out.o: asm/co86unix.cpp
98 $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o
99
78# bsdi 100# bsdi
79asm/bn86bsdi.o: asm/bn86unix.cpp 101asm/bn86bsdi.o: asm/bn86unix.cpp
80 $(CPP) -DBSDI asm/bn86unix.cpp | as -o asm/bn86bsdi.o 102 $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o
103
104asm/co86bsdi.o: asm/co86unix.cpp
105 $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o
106
107asm/bn86unix.cpp: asm/bn-586.pl ../perlasm/x86asm.pl
108 (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp )
109
110asm/co86unix.cpp: asm/co-586.pl ../perlasm/x86asm.pl
111 (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp )
81 112
82asm/bn86unix.cpp: 113asm/sparcv8.o: asm/sparcv8.S
83 (cd asm; perl bn-586.pl cpp >bn86unix.cpp ) 114
115asm/sparcv8plus.o: asm/sparcv8plus.S
116
117# Old GNU assembler doesn't understand V9 instructions, so we
118# hire /usr/ccs/bin/as to do the job. Note that option is called
119# *-gcc27, but even gcc 2>=8 users may experience similar problem
120# if they didn't bother to upgrade GNU assembler. Such users should
121# not choose this option, but be adviced to *remove* GNU assembler
122# or upgrade it.
123asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S
124 $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \
125 /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o
126
127
128asm/ia64.o: asm/ia64.S
129
130# Some compiler drivers (most notably HP-UX and Intel C++) don't
131# understand .S extension:-( I wish I could pipe output from cc -E,
132# but it's too compiler driver/ABI dependent to cover with a single
133# rule... <appro@fy.chalmers.se>
134asm/ia64-cpp.o: asm/ia64.S
135 $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \
136 $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \
137 rm -f /tmp/ia64.$$$$.s
84 138
85files: 139files:
86 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 140 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
87 141
88links: 142links:
89 /bin/rm -f Makefile 143 @$(TOP)/util/point.sh Makefile.ssl Makefile
90 $(TOP)/util/point.sh Makefile.ssl Makefile ; 144 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
91 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 145 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
92 $(TOP)/util/mklink.sh ../../test $(TEST) 146 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
93 $(TOP)/util/mklink.sh ../../apps $(APPS)
94 147
95install: 148install:
96 @for i in $(EXHEADER) ; \ 149 @for i in $(EXHEADER) ; \
97 do \ 150 do \
98 (cp $$i $(INSTALLTOP)/include/$$i; \ 151 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
99 chmod 644 $(INSTALLTOP)/include/$$i ); \ 152 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
100 done; 153 done;
101 154
102exptest: 155exptest:
103 /bin/rm -f exptest 156 rm -f exptest
104 gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a 157 gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
105 158
106div: 159div:
107 /bin/rm -f a.out 160 rm -f a.out
108 gcc -I.. -g div.c ../../libcrypto.a 161 gcc -I.. -g div.c ../../libcrypto.a
109 162
110tags: 163tags:
@@ -116,18 +169,171 @@ lint:
116 lint -DLINT $(INCLUDES) $(SRC)>fluff 169 lint -DLINT $(INCLUDES) $(SRC)>fluff
117 170
118depend: 171depend:
119 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 172 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
120 173
121dclean: 174dclean:
122 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 175 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
123 mv -f Makefile.new $(MAKEFILE) 176 mv -f Makefile.new $(MAKEFILE)
124 177
125clean: 178clean:
126 /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_mulw.s 179 rm -f asm/co86unix.cpp asm/bn86unix.cpp *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s
127
128errors:
129 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # special case .org
130 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
131 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
132 180
133# DO NOT DELETE THIS LINE -- make depend depends on it. 181# DO NOT DELETE THIS LINE -- make depend depends on it.
182
183bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
184bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
185bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
186bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
187bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
188bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
189bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h
190bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
191bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
192bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
193bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
194bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
195bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
196bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h
197bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
198bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
199bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
200bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
201bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
202bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
203bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h
204bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
205bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
206bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
207bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
208bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
209bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
210bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h
211bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
212bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
213bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
214bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
215bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
216bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
217bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h
218bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
219bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
220bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
221bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
222bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
223bn_err.o: ../../include/openssl/symhacks.h bn_err.c
224bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
225bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
226bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
227bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
228bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
229bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
230bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h
231bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
232bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
233bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
234bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
235bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
236bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
237bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h
238bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
239bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
240bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
241bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
242bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
243bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
244bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h
245bn_kron.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h
246bn_kron.o: ../../include/openssl/opensslconf.h bn_kron.c bn_lcl.h
247bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
248bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
249bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
250bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
251bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
252bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
253bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c
254bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
255bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
256bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
257bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
258bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
259bn_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
260bn_mod.o: ../cryptlib.h bn_lcl.h bn_mod.c
261bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
262bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
263bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
264bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
265bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
266bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
267bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c
268bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
269bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
270bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
271bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
272bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
273bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
274bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c
275bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
276bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
277bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
278bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
279bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
280bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
281bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c
282bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
283bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
284bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
285bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
286bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
287bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
288bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
289bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
290bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
291bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
292bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
293bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
294bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
295bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
296bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c
297bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
298bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
299bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
300bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
301bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
302bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
303bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
304bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
305bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
306bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
307bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
308bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
309bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
310bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
311bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c
312bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
313bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
314bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
315bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
316bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
317bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
318bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c
319bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
320bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
321bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
322bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
323bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
324bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
325bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c
326bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
327bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
328bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
329bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
330bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
331bn_sqrt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
332bn_sqrt.o: ../cryptlib.h bn_lcl.h bn_sqrt.c
333bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
334bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
335bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
336bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
337bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
338bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
339bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c
diff --git a/src/lib/libcrypto/buffer/Makefile.ssl b/src/lib/libcrypto/buffer/Makefile.ssl
index a5f150e523..1ee63940d0 100644
--- a/src/lib/libcrypto/buffer/Makefile.ssl
+++ b/src/lib/libcrypto/buffer/Makefile.ssl
@@ -5,25 +5,26 @@
5DIR= buffer 5DIR= buffer
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=buffer
19ERRC=buf_err
20GENERAL=Makefile 21GENERAL=Makefile
21TEST= 22TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= buffer.c $(ERRC).c 26LIBSRC= buffer.c buf_err.c
26LIBOBJ= buffer.o $(ERRC).o 27LIBOBJ= buffer.o buf_err.o
27 28
28SRC= $(LIBSRC) 29SRC= $(LIBSRC)
29 30
@@ -39,24 +40,23 @@ all: lib
39 40
40lib: $(LIBOBJ) 41lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
42 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
43 @touch lib 44 @touch lib
44 45
45files: 46files:
46 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
47 48
48links: 49links:
49 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
50 $(TOP)/util/point.sh Makefile.ssl Makefile; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
51 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
52 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
53 $(TOP)/util/mklink.sh ../../apps $(APPS)
54 54
55install: 55install:
56 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
57 do \ 57 do \
58 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
59 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
60 done; 60 done;
61 61
62tags: 62tags:
@@ -68,17 +68,27 @@ lint:
68 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
69 69
70depend: 70depend:
71 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
72 72
73dclean: 73dclean:
74 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
75 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
76 76
77clean: 77clean:
78 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
79
80errors:
81 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
82 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
83 79
84# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
83buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
84buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
85buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
86buf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
87buf_err.o: ../../include/openssl/symhacks.h buf_err.c
88buffer.o: ../../e_os.h ../../include/openssl/bio.h
89buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
90buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
91buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
92buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
93buffer.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
94buffer.o: ../cryptlib.h buffer.c
diff --git a/src/lib/libcrypto/cast/Makefile.ssl b/src/lib/libcrypto/cast/Makefile.ssl
index 0143827ae5..75d97b0fbe 100644
--- a/src/lib/libcrypto/cast/Makefile.ssl
+++ b/src/lib/libcrypto/cast/Makefile.ssl
@@ -8,9 +8,12 @@ CC= cc
8CPP= $(CC) -E 8CPP= $(CC) -E
9INCLUDES= 9INCLUDES=
10CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
11INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
12MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
13MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
15AR= ar r 18AR= ar r
16 19
@@ -45,12 +48,12 @@ all: lib
45 48
46lib: $(LIBOBJ) 49lib: $(LIBOBJ)
47 $(AR) $(LIB) $(LIBOBJ) 50 $(AR) $(LIB) $(LIBOBJ)
48 sh $(TOP)/util/ranlib.sh $(LIB) 51 $(RANLIB) $(LIB) || echo Never mind.
49 @touch lib 52 @touch lib
50 53
51# elf 54# elf
52asm/cx86-elf.o: asm/cx86unix.cpp 55asm/cx86-elf.o: asm/cx86unix.cpp
53 $(CPP) -DELF asm/cx86unix.cpp | as -o asm/cx86-elf.o 56 $(CPP) -DELF -x c asm/cx86unix.cpp | as -o asm/cx86-elf.o
54 57
55# solaris 58# solaris
56asm/cx86-sol.o: asm/cx86unix.cpp 59asm/cx86-sol.o: asm/cx86unix.cpp
@@ -64,26 +67,25 @@ asm/cx86-out.o: asm/cx86unix.cpp
64 67
65# bsdi 68# bsdi
66asm/cx86bsdi.o: asm/cx86unix.cpp 69asm/cx86bsdi.o: asm/cx86unix.cpp
67 $(CPP) -DBSDI asm/cx86unix.cpp | as -o asm/cx86bsdi.o 70 $(CPP) -DBSDI asm/cx86unix.cpp | sed 's/ :/:/' | as -o asm/cx86bsdi.o
68 71
69asm/cx86unix.cpp: 72asm/cx86unix.cpp: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
70 (cd asm; perl cast-586.pl cpp >cx86unix.cpp) 73 (cd asm; $(PERL) cast-586.pl cpp $(PROCESSOR) >cx86unix.cpp)
71 74
72files: 75files:
73 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 76 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
74 77
75links: 78links:
76 /bin/rm -f Makefile 79 @$(TOP)/util/point.sh Makefile.ssl Makefile
77 $(TOP)/util/point.sh Makefile.ssl Makefile ; 80 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
78 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 81 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
79 $(TOP)/util/mklink.sh ../../test $(TEST) 82 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
80 $(TOP)/util/mklink.sh ../../apps $(APPS)
81 83
82install: 84install:
83 @for i in $(EXHEADER) ; \ 85 @for i in $(EXHEADER) ; \
84 do \ 86 do \
85 (cp $$i $(INSTALLTOP)/include/$$i; \ 87 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
86 chmod 644 $(INSTALLTOP)/include/$$i ); \ 88 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
87 done; 89 done;
88 90
89tags: 91tags:
@@ -95,15 +97,29 @@ lint:
95 lint -DLINT $(INCLUDES) $(SRC)>fluff 97 lint -DLINT $(INCLUDES) $(SRC)>fluff
96 98
97depend: 99depend:
98 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 100 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
99 101
100dclean: 102dclean:
101 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 103 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
102 mv -f Makefile.new $(MAKEFILE) 104 mv -f Makefile.new $(MAKEFILE)
103 105
104clean: 106clean:
105 /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 107 rm -f asm/cx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
106
107errors:
108 108
109# DO NOT DELETE THIS LINE -- make depend depends on it. 109# DO NOT DELETE THIS LINE -- make depend depends on it.
110
111c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h
112c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
113c_cfb64.o: c_cfb64.c cast_lcl.h
114c_ecb.o: ../../e_os.h ../../include/openssl/cast.h
115c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
116c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h
117c_enc.o: ../../e_os.h ../../include/openssl/cast.h
118c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
119c_enc.o: c_enc.c cast_lcl.h
120c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h
121c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
122c_ofb64.o: c_ofb64.c cast_lcl.h
123c_skey.o: ../../e_os.h ../../include/openssl/cast.h
124c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
125c_skey.o: c_skey.c cast_lcl.h cast_s.h
diff --git a/src/lib/libcrypto/comp/Makefile.ssl b/src/lib/libcrypto/comp/Makefile.ssl
index d946bcbafa..11d728eca9 100644
--- a/src/lib/libcrypto/comp/Makefile.ssl
+++ b/src/lib/libcrypto/comp/Makefile.ssl
@@ -5,13 +5,14 @@
5DIR= comp 5DIR= comp
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX= 10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl 11OPENSSLDIR= /usr/local/ssl
12INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
14MAKEDEPEND= $(TOP)/util/domd $(TOP) 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
16AR= ar r 17AR= ar r
17 18
@@ -22,10 +23,10 @@ TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= comp_lib.c \ 26LIBSRC= comp_lib.c comp_err.c \
26 c_rle.c c_zlib.c 27 c_rle.c c_zlib.c
27 28
28LIBOBJ= comp_lib.o \ 29LIBOBJ= comp_lib.o comp_err.o \
29 c_rle.o c_zlib.o 30 c_rle.o c_zlib.o
30 31
31SRC= $(LIBSRC) 32SRC= $(LIBSRC)
@@ -42,7 +43,7 @@ all: lib
42 43
43lib: $(LIBOBJ) 44lib: $(LIBOBJ)
44 $(AR) $(LIB) $(LIBOBJ) 45 $(AR) $(LIB) $(LIBOBJ)
45 $(RANLIB) $(LIB) 46 $(RANLIB) $(LIB) || echo Never mind.
46 @touch lib 47 @touch lib
47 48
48files: 49files:
@@ -83,17 +84,31 @@ clean:
83 84
84c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 85c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
85c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h 86c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
86c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h 87c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
88c_rle.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
87c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 89c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
88c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 90c_rle.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
91c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h c_rle.c
89c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 92c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
90c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h 93c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
91c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h 94c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
95c_zlib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
92c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 96c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
93c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 97c_zlib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
98c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
99c_zlib.o: c_zlib.c
100comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h
101comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
102comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
103comp_err.o: ../../include/openssl/opensslconf.h
104comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
105comp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
106comp_err.o: comp_err.c
94comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 107comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
95comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h 108comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
96comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h 109comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
110comp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
97comp_lib.o: ../../include/openssl/opensslconf.h 111comp_lib.o: ../../include/openssl/opensslconf.h
98comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h 112comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
99comp_lib.o: ../../include/openssl/stack.h 113comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
114comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c
diff --git a/src/lib/libcrypto/conf/Makefile.ssl b/src/lib/libcrypto/conf/Makefile.ssl
index 00e917aa44..4a85c07b55 100644
--- a/src/lib/libcrypto/conf/Makefile.ssl
+++ b/src/lib/libcrypto/conf/Makefile.ssl
@@ -5,31 +5,34 @@
5DIR= conf 5DIR= conf
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=conf
19ERRC=conf_err
20GENERAL=Makefile 21GENERAL=Makefile
21TEST= 22TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= conf.c $(ERRC).c 26LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c \
27 conf_mall.c conf_sap.c
26 28
27LIBOBJ= conf.o $(ERRC).o 29LIBOBJ= conf_err.o conf_lib.o conf_api.o conf_def.o conf_mod.o \
30 conf_mall.o conf_sap.o
28 31
29SRC= $(LIBSRC) 32SRC= $(LIBSRC)
30 33
31EXHEADER= conf.h 34EXHEADER= conf.h conf_api.h
32HEADER= conf_lcl.h $(EXHEADER) 35HEADER= conf_def.h $(EXHEADER)
33 36
34ALL= $(GENERAL) $(SRC) $(HEADER) 37ALL= $(GENERAL) $(SRC) $(HEADER)
35 38
@@ -40,24 +43,23 @@ all: lib
40 43
41lib: $(LIBOBJ) 44lib: $(LIBOBJ)
42 $(AR) $(LIB) $(LIBOBJ) 45 $(AR) $(LIB) $(LIBOBJ)
43 sh $(TOP)/util/ranlib.sh $(LIB) 46 $(RANLIB) $(LIB) || echo Never mind.
44 @touch lib 47 @touch lib
45 48
46files: 49files:
47 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 50 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
48 51
49links: 52links:
50 /bin/rm -f Makefile 53 @$(TOP)/util/point.sh Makefile.ssl Makefile
51 $(TOP)/util/point.sh Makefile.ssl Makefile ; 54 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
52 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 55 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
53 $(TOP)/util/mklink.sh ../../test $(TEST) 56 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
54 $(TOP)/util/mklink.sh ../../apps $(APPS)
55 57
56install: 58install:
57 @for i in $(EXHEADER) ; \ 59 @for i in $(EXHEADER) ; \
58 do \ 60 do \
59 (cp $$i $(INSTALLTOP)/include/$$i; \ 61 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
60 chmod 644 $(INSTALLTOP)/include/$$i ); \ 62 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
61 done; 63 done;
62 64
63tags: 65tags:
@@ -69,17 +71,91 @@ lint:
69 lint -DLINT $(INCLUDES) $(SRC)>fluff 71 lint -DLINT $(INCLUDES) $(SRC)>fluff
70 72
71depend: 73depend:
72 $(MAKEDEPEND) $(INCLUDES) $(LIBSRC) 74 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC)
73 75
74dclean: 76dclean:
75 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 77 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
76 mv -f Makefile.new $(MAKEFILE) 78 mv -f Makefile.new $(MAKEFILE)
77 79
78clean: 80clean:
79 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 81 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
80
81errors:
82 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
83 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
84 82
85# DO NOT DELETE THIS LINE -- make depend depends on it. 83# DO NOT DELETE THIS LINE -- make depend depends on it.
84
85conf_api.o: ../../e_os.h ../../include/openssl/bio.h
86conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h
87conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
88conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
89conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
90conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
91conf_api.o: conf_api.c
92conf_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
93conf_def.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h
94conf_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
95conf_def.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
96conf_def.o: ../../include/openssl/opensslconf.h
97conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
98conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
99conf_def.o: conf_def.c conf_def.h
100conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
101conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
102conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
103conf_err.o: ../../include/openssl/opensslconf.h
104conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
105conf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
106conf_err.o: conf_err.c
107conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
108conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h
109conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
110conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
111conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
112conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
113conf_lib.o: conf_lib.c
114conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h
115conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
116conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
117conf_mall.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
118conf_mall.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
119conf_mall.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
120conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h
121conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
122conf_mall.o: ../../include/openssl/objects.h
123conf_mall.o: ../../include/openssl/opensslconf.h
124conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
125conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
126conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
127conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
128conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
129conf_mall.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
130conf_mall.o: ../cryptlib.h conf_mall.c
131conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h
132conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
133conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
134conf_mod.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
135conf_mod.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
136conf_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
137conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
138conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
139conf_mod.o: ../../include/openssl/opensslconf.h
140conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
141conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
142conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
143conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
144conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
145conf_mod.o: ../cryptlib.h conf_mod.c
146conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h
147conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
148conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
149conf_sap.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
150conf_sap.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
151conf_sap.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
152conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h
153conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
154conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
155conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
156conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
157conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
158conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
159conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
160conf_sap.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
161conf_sap.o: ../cryptlib.h conf_sap.c
diff --git a/src/lib/libcrypto/des/Makefile.ssl b/src/lib/libcrypto/des/Makefile.ssl
index 78b5189ee3..c1080b000f 100644
--- a/src/lib/libcrypto/des/Makefile.ssl
+++ b/src/lib/libcrypto/des/Makefile.ssl
@@ -6,20 +6,24 @@ DIR= des
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8CPP= $(CC) -E 8CPP= $(CC) -E
9INCLUDES= 9INCLUDES=-I$(TOP) -I../../include
10CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
11INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
12MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
13MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
15AR= ar r 18AR= ar r
19RANLIB= ranlib
16DES_ENC= des_enc.o fcrypt_b.o 20DES_ENC= des_enc.o fcrypt_b.o
17# or use 21# or use
18#DES_ENC= dx86-elf.o yx86-elf.o 22#DES_ENC= dx86-elf.o yx86-elf.o
19 23
20CFLAGS= $(INCLUDES) $(CFLAG) 24CFLAGS= $(INCLUDES) $(CFLAG)
21 25
22GENERAL=Makefile des.org des_locl.org 26GENERAL=Makefile
23TEST=destest.c 27TEST=destest.c
24APPS= 28APPS=
25 29
@@ -27,22 +31,24 @@ LIB=$(TOP)/libcrypto.a
27LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ 31LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \
28 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 \
29 fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ 33 fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \
30 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 \
31 des_enc.c fcrypt_b.c read2pwd.c \ 35 des_enc.c fcrypt_b.c \
32 fcrypt.c xcbc_enc.c \ 36 xcbc_enc.c \
33 str2key.c cfb64ede.c ofb64ede.c supp.c 37 str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \
38 read2pwd.c
34 39
35LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ 40LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \
36 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 \
37 enc_read.o enc_writ.o ofb64enc.o \ 42 enc_read.o enc_writ.o ofb64enc.o \
38 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 \
39 ${DES_ENC} read2pwd.o \ 44 ${DES_ENC} \
40 fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o cbc_cksm.o supp.o 45 fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \
46 ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o
41 47
42SRC= $(LIBSRC) 48SRC= $(LIBSRC)
43 49
44EXHEADER= des.h 50EXHEADER= des.h des_old.h
45HEADER= des_locl.h rpc_des.h podd.h sk.h spr.h des_ver.h $(EXHEADER) 51HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER)
46 52
47ALL= $(GENERAL) $(SRC) $(HEADER) 53ALL= $(GENERAL) $(SRC) $(HEADER)
48 54
@@ -53,15 +59,18 @@ all: lib
53 59
54lib: $(LIBOBJ) 60lib: $(LIBOBJ)
55 $(AR) $(LIB) $(LIBOBJ) 61 $(AR) $(LIB) $(LIBOBJ)
56 sh $(TOP)/util/ranlib.sh $(LIB) 62 $(RANLIB) $(LIB) || echo Never mind.
57 @touch lib 63 @touch lib
58 64
65des: des.o cbc3_enc.o lib
66 $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB)
67
59# elf 68# elf
60asm/dx86-elf.o: asm/dx86unix.cpp 69asm/dx86-elf.o: asm/dx86unix.cpp
61 $(CPP) -DELF asm/dx86unix.cpp | as -o asm/dx86-elf.o 70 $(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.o
62 71
63asm/yx86-elf.o: asm/yx86unix.cpp 72asm/yx86-elf.o: asm/yx86unix.cpp
64 $(CPP) -DELF asm/yx86unix.cpp | as -o asm/yx86-elf.o 73 $(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o
65 74
66# solaris 75# solaris
67asm/dx86-sol.o: asm/dx86unix.cpp 76asm/dx86-sol.o: asm/dx86unix.cpp
@@ -83,38 +92,34 @@ asm/yx86-out.o: asm/yx86unix.cpp
83 92
84# bsdi 93# bsdi
85asm/dx86bsdi.o: asm/dx86unix.cpp 94asm/dx86bsdi.o: asm/dx86unix.cpp
86 $(CPP) -DBSDI asm/dx86unix.cpp | as -o asm/dx86bsdi.o 95 $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o
87 96
88asm/yx86bsdi.o: asm/yx86unix.cpp 97asm/yx86bsdi.o: asm/yx86unix.cpp
89 $(CPP) -DBSDI asm/yx86unix.cpp | as -o asm/yx86bsdi.o 98 $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o
90 99
91asm/dx86unix.cpp: 100asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
92 (cd asm; perl des-586.pl cpp >dx86unix.cpp) 101 (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp)
93 102
94asm/yx86unix.cpp: 103asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl
95 (cd asm; perl crypt586.pl cpp >yx86unix.cpp) 104 (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp)
96 105
97files: 106files:
98 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 107 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
99 108
100links: 109links:
101 /bin/rm -f Makefile 110 @$(TOP)/util/point.sh Makefile.ssl Makefile
102 $(TOP)/util/point.sh Makefile.ssl Makefile 111 @$(TOP)/util/point.sh ../../perlasm asm/perlasm
103 /bin/rm -f des.doc 112 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
104 /bin/rm -fr asm/perlasm 113 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
105 $(TOP)/util/point.sh ../../perlasm asm/perlasm 114 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
106 $(TOP)/util/point.sh ../../doc/des.doc des.doc
107 $(TOP)/util/mklink.sh ../../include $(EXHEADER)
108 $(TOP)/util/mklink.sh ../../test $(TEST)
109 $(TOP)/util/mklink.sh ../../apps $(APPS)
110 115
111install: installs 116install: installs
112 117
113installs: 118installs:
114 @for i in $(EXHEADER) ; \ 119 @for i in $(EXHEADER) ; \
115 do \ 120 do \
116 (cp $$i $(INSTALLTOP)/include/$$i; \ 121 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
117 chmod 644 $(INSTALLTOP)/include/$$i ); \ 122 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
118 done; 123 done;
119 124
120tags: 125tags:
@@ -126,15 +131,195 @@ lint:
126 lint -DLINT $(INCLUDES) $(SRC)>fluff 131 lint -DLINT $(INCLUDES) $(SRC)>fluff
127 132
128depend: 133depend:
129 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 134 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
130 135
131dclean: 136dclean:
132 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 137 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
133 mv -f Makefile.new $(MAKEFILE) 138 mv -f Makefile.new $(MAKEFILE)
134 139
135clean: 140clean:
136 /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 141 rm -f asm/dx86unix.cpp asm/yx86unix.cpp *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
137
138errors:
139 142
140# DO NOT DELETE THIS LINE -- make depend depends on it. 143# DO NOT DELETE THIS LINE -- make depend depends on it.
144
145cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
146cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
147cbc_cksm.o: ../../include/openssl/opensslconf.h
148cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
149cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
150cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
151cbc_cksm.o: cbc_cksm.c des_locl.h
152cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
153cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
154cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
155cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
156cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
157cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c
158cfb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.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
208ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
209ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
210ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
211ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ecb_enc.c spr.h
212ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
213ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
214ede_cbcm_enc.o: ../../include/openssl/opensslconf.h
215ede_cbcm_enc.o: ../../include/openssl/opensslv.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
224enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
225enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
226enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
227enc_read.o: ../cryptlib.h des_locl.h enc_read.c
228enc_writ.o: ../../e_os.h ../../include/openssl/bio.h
229enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
230enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
231enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
232enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
233enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
234enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
235enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
236enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
237enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c
238fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
239fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
240fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
241fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
242fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
243fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c
244fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
245fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
246fcrypt_b.o: ../../include/openssl/opensslconf.h
247fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
248fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
249fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
250fcrypt_b.o: des_locl.h fcrypt_b.c
251ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
252ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
253ofb64ede.o: ../../include/openssl/opensslconf.h
254ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
255ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
256ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
257ofb64ede.o: des_locl.h ofb64ede.c
258ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
259ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
260ofb64enc.o: ../../include/openssl/opensslconf.h
261ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
262ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
263ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
264ofb64enc.o: des_locl.h ofb64enc.c
265ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
266ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
267ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.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
diff --git a/src/lib/libcrypto/dh/Makefile.ssl b/src/lib/libcrypto/dh/Makefile.ssl
index dfa7e4525d..9dddf8dd61 100644
--- a/src/lib/libcrypto/dh/Makefile.ssl
+++ b/src/lib/libcrypto/dh/Makefile.ssl
@@ -5,25 +5,26 @@
5DIR= dh 5DIR= dh
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=dh
19ERRC=dh_err
20GENERAL=Makefile 21GENERAL=Makefile
21TEST= dhtest.c 22TEST= dhtest.c
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= dh_gen.c dh_key.c dh_lib.c dh_check.c $(ERRC).c 26LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c
26LIBOBJ= dh_gen.o dh_key.o dh_lib.o dh_check.o $(ERRC).o 27LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o
27 28
28SRC= $(LIBSRC) 29SRC= $(LIBSRC)
29 30
@@ -39,24 +40,23 @@ all: lib
39 40
40lib: $(LIBOBJ) 41lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
42 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
43 @touch lib 44 @touch lib
44 45
45files: 46files:
46 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
47 48
48links: 49links:
49 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
50 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
51 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
52 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
53 $(TOP)/util/mklink.sh ../../apps $(APPS)
54 54
55install: 55install:
56 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
57 do \ 57 do \
58 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
59 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
60 done; 60 done;
61 61
62tags: 62tags:
@@ -68,17 +68,69 @@ lint:
68 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
69 69
70depend: 70depend:
71 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
72 72
73dclean: 73dclean:
74 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
75 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
76 76
77clean: 77clean:
78 /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
79
80errors:
81 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
82 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
83 79
84# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
83dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
84dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
85dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
86dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
87dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
88dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
89dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
90dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
91dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c
92dh_check.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
93dh_check.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
94dh_check.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
95dh_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
96dh_check.o: ../../include/openssl/opensslconf.h
97dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
98dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
99dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c
100dh_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
101dh_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
102dh_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
103dh_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
104dh_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
105dh_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
106dh_err.o: ../../include/openssl/symhacks.h dh_err.c
107dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
108dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
109dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
110dh_gen.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
111dh_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
112dh_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
113dh_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
114dh_gen.o: ../cryptlib.h dh_gen.c
115dh_key.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
116dh_key.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
117dh_key.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
118dh_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
119dh_key.o: ../../include/openssl/engine.h ../../include/openssl/err.h
120dh_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
121dh_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
122dh_key.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
123dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
124dh_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
125dh_key.o: ../cryptlib.h dh_key.c
126dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
127dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
128dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
129dh_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
130dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
131dh_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
132dh_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
133dh_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
134dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
135dh_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
136dh_lib.o: ../cryptlib.h dh_lib.c
diff --git a/src/lib/libcrypto/dsa/Makefile.ssl b/src/lib/libcrypto/dsa/Makefile.ssl
index 2cc4ddb39e..e780ee429b 100644
--- a/src/lib/libcrypto/dsa/Makefile.ssl
+++ b/src/lib/libcrypto/dsa/Makefile.ssl
@@ -5,25 +5,28 @@
5DIR= dsa 5DIR= dsa
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=dsa
19ERRC=dsa_err
20GENERAL=Makefile 21GENERAL=Makefile
21TEST=dsatest.c 22TEST=dsatest.c
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_vrf.c dsa_sign.c $(ERRC).c 26LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \
26LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_vrf.o dsa_sign.o $(ERRC).o 27 dsa_err.c dsa_ossl.c
28LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \
29 dsa_err.o dsa_ossl.o
27 30
28SRC= $(LIBSRC) 31SRC= $(LIBSRC)
29 32
@@ -39,24 +42,23 @@ all: lib
39 42
40lib: $(LIBOBJ) 43lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ) 44 $(AR) $(LIB) $(LIBOBJ)
42 sh $(TOP)/util/ranlib.sh $(LIB) 45 $(RANLIB) $(LIB) || echo Never mind.
43 @touch lib 46 @touch lib
44 47
45files: 48files:
46 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 49 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
47 50
48links: 51links:
49 /bin/rm -f Makefile 52 @$(TOP)/util/point.sh Makefile.ssl Makefile
50 $(TOP)/util/point.sh Makefile.ssl Makefile ; 53 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
51 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 54 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
52 $(TOP)/util/mklink.sh ../../test $(TEST) 55 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
53 $(TOP)/util/mklink.sh ../../apps $(APPS)
54 56
55install: 57install:
56 @for i in $(EXHEADER) ; \ 58 @for i in $(EXHEADER) ; \
57 do \ 59 do \
58 (cp $$i $(INSTALLTOP)/include/$$i; \ 60 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
59 chmod 644 $(INSTALLTOP)/include/$$i ); \ 61 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
60 done; 62 done;
61 63
62tags: 64tags:
@@ -68,17 +70,100 @@ lint:
68 lint -DLINT $(INCLUDES) $(SRC)>fluff 70 lint -DLINT $(INCLUDES) $(SRC)>fluff
69 71
70depend: 72depend:
71 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 73 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
72 74
73dclean: 75dclean:
74 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 76 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
75 mv -f Makefile.new $(MAKEFILE) 77 mv -f Makefile.new $(MAKEFILE)
76 78
77clean: 79clean:
78 /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 80 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
79
80errors:
81 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
82 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
83 81
84# DO NOT DELETE THIS LINE -- make depend depends on it. 82# DO NOT DELETE THIS LINE -- make depend depends on it.
83
84dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
85dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
86dsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
87dsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
88dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
89dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
90dsa_asn1.o: ../../include/openssl/opensslconf.h
91dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
92dsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
93dsa_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_asn1.c
94dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
95dsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
96dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
97dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
98dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
99dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
100dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
101dsa_err.o: dsa_err.c
102dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h
103dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
104dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
105dsa_gen.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
106dsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
107dsa_gen.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
108dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
109dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
110dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
111dsa_gen.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
112dsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
113dsa_gen.o: ../cryptlib.h dsa_gen.c
114dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
115dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
116dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
117dsa_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
118dsa_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
119dsa_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
120dsa_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
121dsa_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
122dsa_key.o: ../cryptlib.h dsa_key.c
123dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h
124dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
125dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
126dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
127dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
128dsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
129dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
130dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
131dsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
132dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
133dsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h dsa_lib.c
134dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h
135dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
136dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
137dsa_ossl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
138dsa_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
139dsa_ossl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
140dsa_ossl.o: ../../include/openssl/opensslconf.h
141dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
142dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
143dsa_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
144dsa_ossl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
145dsa_ossl.o: ../cryptlib.h dsa_ossl.c
146dsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h
147dsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
148dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
149dsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
150dsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
151dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
152dsa_sign.o: ../../include/openssl/opensslconf.h
153dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
154dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
155dsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
156dsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
157dsa_sign.o: ../cryptlib.h dsa_sign.c
158dsa_vrf.o: ../../e_os.h ../../include/openssl/asn1.h
159dsa_vrf.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
160dsa_vrf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
161dsa_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
162dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
163dsa_vrf.o: ../../include/openssl/engine.h ../../include/openssl/err.h
164dsa_vrf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
165dsa_vrf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
166dsa_vrf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
167dsa_vrf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
168dsa_vrf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
169dsa_vrf.o: ../cryptlib.h dsa_vrf.c
diff --git a/src/lib/libcrypto/dso/Makefile.ssl b/src/lib/libcrypto/dso/Makefile.ssl
index effc46d2dc..c47ca2d78c 100644
--- a/src/lib/libcrypto/dso/Makefile.ssl
+++ b/src/lib/libcrypto/dso/Makefile.ssl
@@ -5,13 +5,14 @@
5DIR= dso 5DIR= dso
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX= 10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl 11OPENSSLDIR= /usr/local/ssl
12INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
14MAKEDEPEND= $(TOP)/util/domd $(TOP) 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
16AR= ar r 17AR= ar r
17 18
@@ -41,7 +42,7 @@ all: lib
41 42
42lib: $(LIBOBJ) 43lib: $(LIBOBJ)
43 $(AR) $(LIB) $(LIBOBJ) 44 $(AR) $(LIB) $(LIBOBJ)
44 $(RANLIB) $(LIB) 45 $(RANLIB) $(LIB) || echo Never mind.
45 @touch lib 46 @touch lib
46 47
47files: 48files:
@@ -80,61 +81,62 @@ clean:
80 81
81# DO NOT DELETE THIS LINE -- make depend depends on it. 82# DO NOT DELETE THIS LINE -- make depend depends on it.
82 83
83dso_dl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 84dso_dl.o: ../../e_os.h ../../include/openssl/bio.h
84dso_dl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h 85dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
85dso_dl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 86dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
86dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 87dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
87dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 88dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
88dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 89dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
89dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h 90dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dl.c
90dso_dlfcn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 91dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h
91dso_dlfcn.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h 92dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
92dso_dlfcn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 93dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
93dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 94dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
94dso_dlfcn.o: ../../include/openssl/opensslconf.h 95dso_dlfcn.o: ../../include/openssl/opensslconf.h
95dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h 96dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
96dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h 97dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
97dso_dlfcn.o: ../cryptlib.h 98dso_dlfcn.o: ../cryptlib.h dso_dlfcn.c
98dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h 99dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
99dso_err.o: ../../include/openssl/dso.h ../../include/openssl/err.h 100dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
100dso_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslv.h 101dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
102dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
101dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 103dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
102dso_err.o: ../../include/openssl/symhacks.h 104dso_err.o: ../../include/openssl/symhacks.h dso_err.c
103dso_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 105dso_lib.o: ../../e_os.h ../../include/openssl/bio.h
104dso_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h 106dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
105dso_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 107dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
106dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 108dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
107dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 109dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
108dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 110dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
109dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h 111dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_lib.c
110dso_null.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 112dso_null.o: ../../e_os.h ../../include/openssl/bio.h
111dso_null.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h 113dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
112dso_null.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 114dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
113dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 115dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
114dso_null.o: ../../include/openssl/opensslconf.h 116dso_null.o: ../../include/openssl/opensslconf.h
115dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h 117dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
116dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h 118dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
117dso_null.o: ../cryptlib.h 119dso_null.o: ../cryptlib.h dso_null.c
118dso_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 120dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h
119dso_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h 121dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
120dso_openssl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 122dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
121dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 123dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
122dso_openssl.o: ../../include/openssl/opensslconf.h 124dso_openssl.o: ../../include/openssl/opensslconf.h
123dso_openssl.o: ../../include/openssl/opensslv.h 125dso_openssl.o: ../../include/openssl/opensslv.h
124dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 126dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
125dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h 127dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c
126dso_vms.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 128dso_vms.o: ../../e_os.h ../../include/openssl/bio.h
127dso_vms.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h 129dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
128dso_vms.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 130dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
129dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 131dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
130dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 132dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
131dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 133dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
132dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h 134dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_vms.c
133dso_win32.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h 135dso_win32.o: ../../e_os.h ../../include/openssl/bio.h
134dso_win32.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h 136dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
135dso_win32.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 137dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
136dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h 138dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
137dso_win32.o: ../../include/openssl/opensslconf.h 139dso_win32.o: ../../include/openssl/opensslconf.h
138dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h 140dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
139dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h 141dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
140dso_win32.o: ../cryptlib.h 142dso_win32.o: ../cryptlib.h dso_win32.c
diff --git a/src/lib/libcrypto/engine/Makefile.ssl b/src/lib/libcrypto/engine/Makefile.ssl
index 7a0ffe755d..eeea47fbf5 100644
--- a/src/lib/libcrypto/engine/Makefile.ssl
+++ b/src/lib/libcrypto/engine/Makefile.ssl
@@ -5,13 +5,14 @@
5DIR= engine 5DIR= engine
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX= 10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl 11OPENSSLDIR= /usr/local/ssl
12INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
14MAKEDEPEND= $(TOP)/util/domd $(TOP) 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
16AR= ar r 17AR= ar r
17 18
@@ -22,10 +23,18 @@ TEST= enginetest.c
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= engine_err.c engine_lib.c engine_list.c engine_openssl.c \ 26LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \
26 hw_atalla.c hw_cswift.c hw_ncipher.c 27 eng_table.c eng_pkey.c eng_fat.c eng_all.c \
27LIBOBJ= engine_err.o engine_lib.o engine_list.o engine_openssl.o \ 28 tb_rsa.c tb_dsa.c tb_dh.c tb_rand.c tb_cipher.c tb_digest.c \
28 hw_atalla.o hw_cswift.o hw_ncipher.o 29 eng_openssl.c eng_dyn.c eng_cnf.c \
30 hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c \
31 hw_openbsd_dev_crypto.c hw_aep.c hw_sureware.c hw_4758_cca.c
32LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \
33 eng_table.o eng_pkey.o eng_fat.o eng_all.o \
34 tb_rsa.o tb_dsa.o tb_dh.o tb_rand.o tb_cipher.o tb_digest.o \
35 eng_openssl.o eng_dyn.o eng_cnf.o \
36 hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o \
37 hw_openbsd_dev_crypto.o hw_aep.o hw_sureware.o hw_4758_cca.o
29 38
30SRC= $(LIBSRC) 39SRC= $(LIBSRC)
31 40
@@ -63,6 +72,10 @@ install:
63tags: 72tags:
64 ctags $(SRC) 73 ctags $(SRC)
65 74
75errors:
76 $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \
77 -nostatic -staticloader -write hw_*.c; \
78
66tests: 79tests:
67 80
68lint: 81lint:
@@ -80,141 +93,361 @@ clean:
80 93
81# DO NOT DELETE THIS LINE -- make depend depends on it. 94# DO NOT DELETE THIS LINE -- make depend depends on it.
82 95
83engine_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 96eng_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
84engine_err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 97eng_all.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
85engine_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h 98eng_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
86engine_err.o: ../../include/openssl/des.h ../../include/openssl/dh.h 99eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
87engine_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h 100eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
88engine_err.o: ../../include/openssl/engine.h ../../include/openssl/err.h 101eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
89engine_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 102eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
90engine_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 103eng_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
91engine_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h 104eng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
92engine_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h 105eng_all.o: ../../include/openssl/ui.h eng_all.c eng_int.h
93engine_err.o: ../../include/openssl/objects.h 106eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h
94engine_err.o: ../../include/openssl/opensslconf.h 107eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
95engine_err.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h 108eng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
96engine_err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 109eng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
97engine_err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 110eng_cnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
98engine_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 111eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h
99engine_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 112eng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
100engine_err.o: ../../include/openssl/symhacks.h 113eng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
101engine_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 114eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
102engine_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 115eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
103engine_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 116eng_cnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
104engine_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 117eng_cnf.o: ../cryptlib.h eng_cnf.c
105engine_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 118eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h
106engine_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 119eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
107engine_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h 120eng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
108engine_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 121eng_ctrl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
109engine_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 122eng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
110engine_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h 123eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
111engine_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h 124eng_ctrl.o: ../../include/openssl/opensslconf.h
112engine_lib.o: ../../include/openssl/objects.h 125eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
113engine_lib.o: ../../include/openssl/opensslconf.h 126eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
114engine_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h 127eng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
115engine_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 128eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
116engine_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 129eng_ctrl.o: ../cryptlib.h eng_ctrl.c eng_int.h
117engine_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 130eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h
118engine_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 131eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
119engine_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h 132eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
120engine_list.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 133eng_dyn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
121engine_list.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 134eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
122engine_list.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 135eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h
123engine_list.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 136eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
124engine_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 137eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
125engine_list.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 138eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
126engine_list.o: ../../include/openssl/engine.h ../../include/openssl/err.h 139eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
127engine_list.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 140eng_dyn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
128engine_list.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 141eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h
129engine_list.o: ../../include/openssl/md4.h ../../include/openssl/md5.h 142eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
130engine_list.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h 143eng_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
131engine_list.o: ../../include/openssl/objects.h 144eng_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
132engine_list.o: ../../include/openssl/opensslconf.h 145eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
133engine_list.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h 146eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
134engine_list.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 147eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
135engine_list.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 148eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
136engine_list.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 149eng_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
137engine_list.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 150eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
138engine_list.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h 151eng_err.o: ../../include/openssl/ui.h eng_err.c
139engine_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 152eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h
140engine_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 153eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
141engine_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 154eng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
142engine_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 155eng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
143engine_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 156eng_fat.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
144engine_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h 157eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h
145engine_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h 158eng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
146engine_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h 159eng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
147engine_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 160eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
148engine_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h 161eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
149engine_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 162eng_fat.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
150engine_openssl.o: ../../include/openssl/obj_mac.h 163eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h
151engine_openssl.o: ../../include/openssl/objects.h 164eng_init.o: ../../e_os.h ../../include/openssl/asn1.h
152engine_openssl.o: ../../include/openssl/opensslconf.h 165eng_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
153engine_openssl.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h 166eng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
154engine_openssl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 167eng_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
155engine_openssl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 168eng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
156engine_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 169eng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
157engine_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 170eng_init.o: ../../include/openssl/opensslconf.h
158engine_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h 171eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
159hw_atalla.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 172eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
160hw_atalla.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 173eng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
161hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 174eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
162hw_atalla.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 175eng_init.o: ../cryptlib.h eng_init.c eng_int.h
176eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h
177eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
178eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
179eng_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
180eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
181eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
182eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
183eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
184eng_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
185eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
186eng_lib.o: ../../include/openssl/ui.h ../cryptlib.h eng_int.h eng_lib.c
187eng_list.o: ../../e_os.h ../../include/openssl/asn1.h
188eng_list.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
189eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
190eng_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
191eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
192eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
193eng_list.o: ../../include/openssl/opensslconf.h
194eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
195eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
196eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
197eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
198eng_list.o: ../cryptlib.h eng_int.h eng_list.c
199eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h
200eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
201eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
202eng_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
203eng_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
204eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h
205eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
206eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
207eng_openssl.o: ../../include/openssl/opensslconf.h
208eng_openssl.o: ../../include/openssl/opensslv.h
209eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
210eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
211eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h
212eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
213eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
214eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
215eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
216eng_openssl.o: ../cryptlib.h eng_openssl.c
217eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
218eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
219eng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
220eng_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
221eng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
222eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
223eng_pkey.o: ../../include/openssl/opensslconf.h
224eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
225eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
226eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
227eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
228eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c
229eng_table.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
230eng_table.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
231eng_table.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
232eng_table.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
233eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h
234eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
235eng_table.o: ../../include/openssl/objects.h
236eng_table.o: ../../include/openssl/opensslconf.h
237eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
238eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
239eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
240eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
241eng_table.o: eng_int.h eng_table.c
242hw_4758_cca.o: ../../e_os.h ../../include/openssl/asn1.h
243hw_4758_cca.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
244hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
245hw_4758_cca.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
246hw_4758_cca.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
247hw_4758_cca.o: ../../include/openssl/engine.h ../../include/openssl/err.h
248hw_4758_cca.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
249hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
250hw_4758_cca.o: ../../include/openssl/opensslconf.h
251hw_4758_cca.o: ../../include/openssl/opensslv.h
252hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
253hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
254hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
255hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
256hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
257hw_4758_cca.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_4758_cca.c
258hw_4758_cca.o: hw_4758_cca_err.c hw_4758_cca_err.h vendor_defns/hw_4758_cca.h
259hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
260hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
261hw_aep.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
262hw_aep.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
263hw_aep.o: ../../include/openssl/engine.h ../../include/openssl/err.h
264hw_aep.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
265hw_aep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
266hw_aep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
267hw_aep.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
268hw_aep.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h hw_aep.c
269hw_aep.o: hw_aep_err.c hw_aep_err.h vendor_defns/aep.h
270hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h
271hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
272hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
163hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 273hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
164hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h 274hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
165hw_atalla.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h 275hw_atalla.o: ../../include/openssl/engine.h ../../include/openssl/err.h
166hw_atalla.o: ../../include/openssl/err.h ../../include/openssl/evp.h 276hw_atalla.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
167hw_atalla.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 277hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
168hw_atalla.o: ../../include/openssl/md2.h ../../include/openssl/md4.h 278hw_atalla.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
169hw_atalla.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 279hw_atalla.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
170hw_atalla.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h 280hw_atalla.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
171hw_atalla.o: ../../include/openssl/opensslconf.h 281hw_atalla.o: ../cryptlib.h hw_atalla.c hw_atalla_err.c hw_atalla_err.h
172hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
173hw_atalla.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
174hw_atalla.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
175hw_atalla.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
176hw_atalla.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
177hw_atalla.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h
178hw_atalla.o: vendor_defns/atalla.h 282hw_atalla.o: vendor_defns/atalla.h
179hw_cswift.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 283hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h
180hw_cswift.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 284hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
181hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 285hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
182hw_cswift.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
183hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 286hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
184hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h 287hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
185hw_cswift.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h 288hw_cswift.o: ../../include/openssl/engine.h ../../include/openssl/err.h
186hw_cswift.o: ../../include/openssl/err.h ../../include/openssl/evp.h 289hw_cswift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
187hw_cswift.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 290hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
188hw_cswift.o: ../../include/openssl/md2.h ../../include/openssl/md4.h 291hw_cswift.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
189hw_cswift.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 292hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
190hw_cswift.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h 293hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
191hw_cswift.o: ../../include/openssl/opensslconf.h 294hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h
192hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
193hw_cswift.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
194hw_cswift.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
195hw_cswift.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
196hw_cswift.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
197hw_cswift.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h
198hw_cswift.o: vendor_defns/cswift.h 295hw_cswift.o: vendor_defns/cswift.h
199hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 296hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h
200hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 297hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
201hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 298hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
202hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
203hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 299hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
204hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h 300hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
205hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h 301hw_ncipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h
206hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h 302hw_ncipher.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
207hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
208hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
209hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
210hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h 303hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
211hw_ncipher.o: ../../include/openssl/opensslconf.h 304hw_ncipher.o: ../../include/openssl/opensslconf.h
212hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h 305hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
213hw_ncipher.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h 306hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
214hw_ncipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h 307hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
215hw_ncipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 308hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
216hw_ncipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 309hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
217hw_ncipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 310hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
218hw_ncipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
219hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 311hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
220hw_ncipher.o: ../cryptlib.h engine_int.h vendor_defns/hwcryptohook.h 312hw_ncipher.o: ../cryptlib.h hw_ncipher.c hw_ncipher_err.c hw_ncipher_err.h
313hw_ncipher.o: vendor_defns/hwcryptohook.h
314hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h
315hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
316hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
317hw_nuron.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
318hw_nuron.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
319hw_nuron.o: ../../include/openssl/engine.h ../../include/openssl/err.h
320hw_nuron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
321hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
322hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
323hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
324hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
325hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h
326hw_openbsd_dev_crypto.o: ../../include/openssl/asn1.h
327hw_openbsd_dev_crypto.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
328hw_openbsd_dev_crypto.o: ../../include/openssl/conf.h
329hw_openbsd_dev_crypto.o: ../../include/openssl/crypto.h
330hw_openbsd_dev_crypto.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
331hw_openbsd_dev_crypto.o: ../../include/openssl/e_os2.h
332hw_openbsd_dev_crypto.o: ../../include/openssl/engine.h
333hw_openbsd_dev_crypto.o: ../../include/openssl/err.h
334hw_openbsd_dev_crypto.o: ../../include/openssl/evp.h
335hw_openbsd_dev_crypto.o: ../../include/openssl/lhash.h
336hw_openbsd_dev_crypto.o: ../../include/openssl/obj_mac.h
337hw_openbsd_dev_crypto.o: ../../include/openssl/objects.h
338hw_openbsd_dev_crypto.o: ../../include/openssl/opensslconf.h
339hw_openbsd_dev_crypto.o: ../../include/openssl/opensslv.h
340hw_openbsd_dev_crypto.o: ../../include/openssl/ossl_typ.h
341hw_openbsd_dev_crypto.o: ../../include/openssl/rand.h
342hw_openbsd_dev_crypto.o: ../../include/openssl/rsa.h
343hw_openbsd_dev_crypto.o: ../../include/openssl/safestack.h
344hw_openbsd_dev_crypto.o: ../../include/openssl/stack.h
345hw_openbsd_dev_crypto.o: ../../include/openssl/symhacks.h
346hw_openbsd_dev_crypto.o: ../../include/openssl/ui.h ../evp/evp_locl.h eng_int.h
347hw_openbsd_dev_crypto.o: hw_openbsd_dev_crypto.c
348hw_sureware.o: ../../e_os.h ../../include/openssl/asn1.h
349hw_sureware.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
350hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
351hw_sureware.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
352hw_sureware.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
353hw_sureware.o: ../../include/openssl/engine.h ../../include/openssl/err.h
354hw_sureware.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
355hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
356hw_sureware.o: ../../include/openssl/opensslconf.h
357hw_sureware.o: ../../include/openssl/opensslv.h
358hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
359hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
360hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
361hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
362hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
363hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
364hw_sureware.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
365hw_sureware.o: engine.h hw_sureware.c hw_sureware_err.c hw_sureware_err.h
366hw_sureware.o: vendor_defns/sureware.h
367hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h
368hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
369hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
370hw_ubsec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
371hw_ubsec.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
372hw_ubsec.o: ../../include/openssl/engine.h ../../include/openssl/err.h
373hw_ubsec.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
374hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
375hw_ubsec.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
376hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
377hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
378hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h
379hw_ubsec.o: vendor_defns/hw_ubsec.h
380tb_cipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
381tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
382tb_cipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
383tb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
384tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h
385tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
386tb_cipher.o: ../../include/openssl/objects.h
387tb_cipher.o: ../../include/openssl/opensslconf.h
388tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
389tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
390tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
391tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
392tb_cipher.o: eng_int.h tb_cipher.c
393tb_dh.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
394tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
395tb_dh.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
396tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
397tb_dh.o: ../../include/openssl/err.h ../../include/openssl/evp.h
398tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
399tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
400tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
401tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
402tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
403tb_dh.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h
404tb_dh.o: tb_dh.c
405tb_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
406tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
407tb_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
408tb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
409tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h
410tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
411tb_digest.o: ../../include/openssl/objects.h
412tb_digest.o: ../../include/openssl/opensslconf.h
413tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
414tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
415tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
416tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
417tb_digest.o: eng_int.h tb_digest.c
418tb_dsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
419tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
420tb_dsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
421tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
422tb_dsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h
423tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
424tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
425tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
426tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
427tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
428tb_dsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h
429tb_dsa.o: tb_dsa.c
430tb_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
431tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
432tb_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
433tb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
434tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h
435tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
436tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
437tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
438tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
439tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
440tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
441tb_rand.o: eng_int.h tb_rand.c
442tb_rsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
443tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
444tb_rsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
445tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
446tb_rsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h
447tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
448tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
449tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
450tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
451tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
452tb_rsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h
453tb_rsa.o: tb_rsa.c
diff --git a/src/lib/libcrypto/err/Makefile.ssl b/src/lib/libcrypto/err/Makefile.ssl
index 57c87eb041..2946c00ead 100644
--- a/src/lib/libcrypto/err/Makefile.ssl
+++ b/src/lib/libcrypto/err/Makefile.ssl
@@ -5,11 +5,14 @@
5DIR= err 5DIR= err
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,45 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82err.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/buffer.h
83err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
84err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
85err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
86err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
87err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c
88err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
89err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
90err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
91err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
92err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
93err_all.o: ../../include/openssl/ec.h ../../include/openssl/engine.h
94err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
95err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
96err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
97err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
98err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h
99err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
100err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
101err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
102err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
103err_all.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
104err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
105err_all.o: err_all.c
106err_prn.o: ../../e_os.h ../../include/openssl/bio.h
107err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
108err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
109err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
110err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
111err_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
112err_prn.o: ../cryptlib.h err_prn.c
diff --git a/src/lib/libcrypto/evp/Makefile.ssl b/src/lib/libcrypto/evp/Makefile.ssl
index 8bf2516458..3902ca0a18 100644
--- a/src/lib/libcrypto/evp/Makefile.ssl
+++ b/src/lib/libcrypto/evp/Makefile.ssl
@@ -5,52 +5,46 @@
5DIR= evp 5DIR= evp
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=evp
19ERRC=evp_err
20GENERAL=Makefile 21GENERAL=Makefile
21TEST= 22TEST=evp_test.c
23TESTDATA=evptests.txt
22APPS= 24APPS=
23 25
24LIB=$(TOP)/libcrypto.a 26LIB=$(TOP)/libcrypto.a
25LIBSRC= encode.c digest.c evp_enc.c evp_key.c \ 27LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c \
26 e_ecb_d.c e_cbc_d.c e_cfb_d.c e_ofb_d.c \ 28 e_des.c e_bf.c e_idea.c e_des3.c \
27 e_ecb_i.c e_cbc_i.c e_cfb_i.c e_ofb_i.c \ 29 e_rc4.c e_aes.c names.c \
28 e_ecb_3d.c e_cbc_3d.c e_rc4.c names.c \ 30 e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \
29 e_cfb_3d.c e_ofb_3d.c e_xcbc_d.c \ 31 m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c \
30 e_ecb_r2.c e_cbc_r2.c e_cfb_r2.c e_ofb_r2.c \ 32 m_dss.c m_dss1.c m_mdc2.c m_ripemd.c \
31 e_ecb_bf.c e_cbc_bf.c e_cfb_bf.c e_ofb_bf.c \
32 e_ecb_c.c e_cbc_c.c e_cfb_c.c e_ofb_c.c \
33 e_ecb_r5.c e_cbc_r5.c e_cfb_r5.c e_ofb_r5.c \
34 m_null.c m_md2.c m_md5.c m_sha.c m_sha1.c m_dss.c m_dss1.c m_mdc2.c \
35 m_ripemd.c \
36 p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ 33 p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \
37 bio_md.c bio_b64.c bio_enc.c $(ERRC).c e_null.c \ 34 bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \
38 c_all.c evp_lib.c 35 c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \
39 36 evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c
40LIBOBJ= encode.o digest.o evp_enc.o evp_key.o \ 37
41 e_ecb_d.o e_cbc_d.o e_cfb_d.o e_ofb_d.o \ 38LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o \
42 e_ecb_i.o e_cbc_i.o e_cfb_i.o e_ofb_i.o \ 39 e_des.o e_bf.o e_idea.o e_des3.o \
43 e_ecb_3d.o e_cbc_3d.o e_rc4.o names.o \ 40 e_rc4.o e_aes.o names.o \
44 e_cfb_3d.o e_ofb_3d.o e_xcbc_d.o \ 41 e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \
45 e_ecb_r2.o e_cbc_r2.o e_cfb_r2.o e_ofb_r2.o \ 42 m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o \
46 e_ecb_bf.o e_cbc_bf.o e_cfb_bf.o e_ofb_bf.o \ 43 m_dss.o m_dss1.o m_mdc2.o m_ripemd.o \
47 e_ecb_c.o e_cbc_c.o e_cfb_c.o e_ofb_c.o \
48 e_ecb_r5.o e_cbc_r5.o e_cfb_r5.o e_ofb_r5.o \
49 m_null.o m_md2.o m_md5.o m_sha.o m_sha1.o m_dss.o m_dss1.o m_mdc2.o \
50 m_ripemd.o \
51 p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ 44 p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \
52 bio_md.o bio_b64.o bio_enc.o $(ERRC).o e_null.o \ 45 bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \
53 c_all.o evp_lib.o 46 c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \
47 evp_pkey.o evp_pbe.o p5_crpt.o p5_crpt2.o
54 48
55SRC= $(LIBSRC) 49SRC= $(LIBSRC)
56 50
@@ -66,24 +60,24 @@ all: lib
66 60
67lib: $(LIBOBJ) 61lib: $(LIBOBJ)
68 $(AR) $(LIB) $(LIBOBJ) 62 $(AR) $(LIB) $(LIBOBJ)
69 sh $(TOP)/util/ranlib.sh $(LIB) 63 $(RANLIB) $(LIB) || echo Never mind.
70 @touch lib 64 @touch lib
71 65
72files: 66files:
73 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 67 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
74 68
75links: 69links:
76 /bin/rm -f Makefile 70 @$(TOP)/util/point.sh Makefile.ssl Makefile
77 $(TOP)/util/point.sh Makefile.ssl Makefile ; 71 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
78 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 72 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
79 $(TOP)/util/mklink.sh ../../test $(TEST) 73 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TESTDATA)
80 $(TOP)/util/mklink.sh ../../apps $(APPS) 74 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
81 75
82install: 76install:
83 @for i in $(EXHEADER) ; \ 77 @for i in $(EXHEADER) ; \
84 do \ 78 do \
85 (cp $$i $(INSTALLTOP)/include/$$i; \ 79 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
86 chmod 644 $(INSTALLTOP)/include/$$i ); \ 80 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
87 done; 81 done;
88 82
89tags: 83tags:
@@ -95,17 +89,574 @@ lint:
95 lint -DLINT $(INCLUDES) $(SRC)>fluff 89 lint -DLINT $(INCLUDES) $(SRC)>fluff
96 90
97depend: 91depend:
98 $(MAKEDEPEND) $(INCLUDES) $(LIBSRC) 92 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC)
99 93
100dclean: 94dclean:
101 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 95 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
102 mv -f Makefile.new $(MAKEFILE) 96 mv -f Makefile.new $(MAKEFILE)
103 97
104clean: 98clean:
105 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 99 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
106
107errors:
108 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
109 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
110 100
111# DO NOT DELETE THIS LINE -- make depend depends on it. 101# DO NOT DELETE THIS LINE -- make depend depends on it.
102
103bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h
104bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
105bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
106bio_b64.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
107bio_b64.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
108bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
109bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
110bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
111bio_b64.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
112bio_b64.o: ../cryptlib.h bio_b64.c
113bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h
114bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
115bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
116bio_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
117bio_enc.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
118bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
119bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
120bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
121bio_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
122bio_enc.o: ../cryptlib.h bio_enc.c
123bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
124bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
125bio_md.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
126bio_md.o: ../../include/openssl/err.h ../../include/openssl/evp.h
127bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
128bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
129bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
130bio_md.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
131bio_md.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_md.c
132bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
133bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
134bio_ok.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
135bio_ok.o: ../../include/openssl/err.h ../../include/openssl/evp.h
136bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
137bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
138bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
139bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
140bio_ok.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
141bio_ok.o: ../cryptlib.h bio_ok.c
142c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
143c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
144c_all.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
145c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
146c_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
147c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
148c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
149c_all.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
150c_all.o: ../../include/openssl/symhacks.h ../cryptlib.h c_all.c
151c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
152c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
153c_allc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
154c_allc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
155c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
156c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
157c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
158c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
159c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
160c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
161c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
162c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
163c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c
164c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
165c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
166c_alld.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
167c_alld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
168c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h
169c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
170c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
171c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
172c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
173c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
174c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
175c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
176c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c
177digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
178digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
179digest.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
180digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
181digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h
182digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
183digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
184digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
185digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
186digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
187digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
188digest.o: ../../include/openssl/ui.h ../cryptlib.h digest.c
189e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
190e_aes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
191e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
192e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h
193e_aes.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
194e_aes.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
195e_aes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
196e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
197e_aes.o: ../../include/openssl/symhacks.h e_aes.c evp_locl.h
198e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
199e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
200e_bf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
201e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
202e_bf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
203e_bf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
204e_bf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
205e_bf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
206e_bf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
207e_bf.o: ../cryptlib.h e_bf.c evp_locl.h
208e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
209e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
210e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
211e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
212e_cast.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
213e_cast.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
214e_cast.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
215e_cast.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
216e_cast.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
217e_cast.o: ../cryptlib.h e_cast.c evp_locl.h
218e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
219e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
220e_des.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
221e_des.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
222e_des.o: ../../include/openssl/err.h ../../include/openssl/evp.h
223e_des.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
224e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
225e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
226e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
227e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
228e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h
229e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
230e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
231e_des3.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
232e_des3.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
233e_des3.o: ../../include/openssl/err.h ../../include/openssl/evp.h
234e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
235e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
236e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
237e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
238e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
239e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h
240e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
241e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
242e_idea.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
243e_idea.o: ../../include/openssl/err.h ../../include/openssl/evp.h
244e_idea.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
245e_idea.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
246e_idea.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
247e_idea.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
248e_idea.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
249e_idea.o: ../cryptlib.h e_idea.c evp_locl.h
250e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
251e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
252e_null.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
253e_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h
254e_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
255e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
256e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
257e_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
258e_null.o: ../../include/openssl/symhacks.h ../cryptlib.h e_null.c
259e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
260e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
261e_rc2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
262e_rc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
263e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
264e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
265e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
266e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h
267e_rc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
268e_rc2.o: ../cryptlib.h e_rc2.c evp_locl.h
269e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
270e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
271e_rc4.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
272e_rc4.o: ../../include/openssl/err.h ../../include/openssl/evp.h
273e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
274e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
275e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
276e_rc4.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h
277e_rc4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
278e_rc4.o: ../cryptlib.h e_rc4.c
279e_rc5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
280e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
281e_rc5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
282e_rc5.o: ../../include/openssl/err.h ../../include/openssl/evp.h
283e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
284e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
285e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
286e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/safestack.h
287e_rc5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
288e_rc5.o: ../cryptlib.h e_rc5.c evp_locl.h
289e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h
290e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
291e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
292e_xcbc_d.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
293e_xcbc_d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
294e_xcbc_d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
295e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
296e_xcbc_d.o: ../../include/openssl/opensslconf.h
297e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
298e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
299e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
300e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c
301encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
302encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
303encode.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
304encode.o: ../../include/openssl/err.h ../../include/openssl/evp.h
305encode.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
306encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
307encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
308encode.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
309encode.o: ../../include/openssl/symhacks.h ../cryptlib.h encode.c
310evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h
311evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
312evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
313evp_acnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
314evp_acnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
315evp_acnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h
316evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
317evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
318evp_acnf.o: ../../include/openssl/opensslconf.h
319evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
320evp_acnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
321evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
322evp_acnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
323evp_acnf.o: ../cryptlib.h evp_acnf.c
324evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h
325evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
326evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
327evp_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
328evp_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
329evp_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
330evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
331evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
332evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
333evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
334evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
335evp_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
336evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h
337evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
338evp_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
339evp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
340evp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
341evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
342evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
343evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
344evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
345evp_err.o: evp_err.c
346evp_key.o: ../../e_os.h ../../include/openssl/asn1.h
347evp_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
348evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
349evp_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
350evp_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
351evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
352evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
353evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
354evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
355evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
356evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
357evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
358evp_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
359evp_key.o: ../cryptlib.h evp_key.c
360evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
361evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
362evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
363evp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
364evp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
365evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
366evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
367evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
368evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
369evp_lib.o: ../cryptlib.h evp_lib.c
370evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h
371evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
372evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
373evp_pbe.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
374evp_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
375evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
376evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
377evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
378evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
379evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
380evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
381evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
382evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c
383evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
384evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
385evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
386evp_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
387evp_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
388evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
389evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
390evp_pkey.o: ../../include/openssl/opensslconf.h
391evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
392evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
393evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
394evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
395evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
396evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c
397m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
398m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
399m_dss.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
400m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
401m_dss.o: ../../include/openssl/err.h ../../include/openssl/evp.h
402m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
403m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
404m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
405m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
406m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
407m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
408m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
409m_dss.o: ../cryptlib.h m_dss.c
410m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
411m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
412m_dss1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
413m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
414m_dss1.o: ../../include/openssl/err.h ../../include/openssl/evp.h
415m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
416m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
417m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
418m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
419m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
420m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
421m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
422m_dss1.o: ../cryptlib.h m_dss1.c
423m_md2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
424m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
425m_md2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
426m_md2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
427m_md2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
428m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
429m_md2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
430m_md2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
431m_md2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
432m_md2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
433m_md2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
434m_md2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
435m_md2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md2.c
436m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
437m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
438m_md4.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
439m_md4.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
440m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h
441m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h
442m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
443m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
444m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
445m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
446m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
447m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
448m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md4.c
449m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
450m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
451m_md5.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
452m_md5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
453m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h
454m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h
455m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
456m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
457m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
458m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
459m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
460m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
461m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md5.c
462m_mdc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
463m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
464m_mdc2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
465m_mdc2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h
466m_mdc2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
467m_mdc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
468m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h
469m_mdc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
470m_mdc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
471m_mdc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
472m_mdc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
473m_mdc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
474m_mdc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
475m_mdc2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
476m_mdc2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_mdc2.c
477m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
478m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
479m_null.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
480m_null.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
481m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h
482m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
483m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
484m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
485m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
486m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
487m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
488m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
489m_null.o: ../cryptlib.h m_null.c
490m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h
491m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
492m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
493m_ripemd.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
494m_ripemd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
495m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
496m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
497m_ripemd.o: ../../include/openssl/opensslconf.h
498m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
499m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h
500m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
501m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
502m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
503m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_ripemd.c
504m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
505m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
506m_sha.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
507m_sha.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
508m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h
509m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
510m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
511m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
512m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
513m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
514m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
515m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
516m_sha.o: ../cryptlib.h m_sha.c
517m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
518m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
519m_sha1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
520m_sha1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
521m_sha1.o: ../../include/openssl/err.h ../../include/openssl/evp.h
522m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
523m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
524m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
525m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
526m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
527m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
528m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
529m_sha1.o: ../cryptlib.h m_sha1.c
530names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
531names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
532names.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
533names.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
534names.o: ../../include/openssl/err.h ../../include/openssl/evp.h
535names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
536names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
537names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
538names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
539names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
540names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
541names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
542names.o: ../cryptlib.h names.c
543p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
544p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
545p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
546p5_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
547p5_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
548p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
549p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
550p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
551p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
552p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
553p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
554p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
555p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c
556p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h
557p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
558p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
559p5_crpt2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
560p5_crpt2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
561p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
562p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
563p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
564p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
565p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
566p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
567p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
568p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
569p5_crpt2.o: ../cryptlib.h p5_crpt2.c
570p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
571p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
572p_dec.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
573p_dec.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
574p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h
575p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
576p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
577p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
578p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
579p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
580p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
581p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
582p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c
583p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
584p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
585p_enc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
586p_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
587p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
588p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
589p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
590p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
591p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
592p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
593p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
594p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
595p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c
596p_lib.o: ../../e_os.h ../../include/openssl/asn1.h
597p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
598p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
599p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
600p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
601p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
602p_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
603p_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
604p_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
605p_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
606p_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
607p_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
608p_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
609p_lib.o: ../cryptlib.h p_lib.c
610p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
611p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
612p_open.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
613p_open.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
614p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h
615p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
616p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
617p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
618p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
619p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
620p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
621p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
622p_open.o: ../cryptlib.h p_open.c
623p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
624p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
625p_seal.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
626p_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
627p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h
628p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
629p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
630p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
631p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
632p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
633p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
634p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
635p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c
636p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
637p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
638p_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
639p_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
640p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
641p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
642p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
643p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
644p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
645p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
646p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
647p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
648p_sign.o: ../cryptlib.h p_sign.c
649p_verify.o: ../../e_os.h ../../include/openssl/asn1.h
650p_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
651p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
652p_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
653p_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
654p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
655p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
656p_verify.o: ../../include/openssl/opensslconf.h
657p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
658p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
659p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
660p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
661p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
662p_verify.o: ../cryptlib.h p_verify.c
diff --git a/src/lib/libcrypto/hmac/Makefile.ssl b/src/lib/libcrypto/hmac/Makefile.ssl
index 7a042b7261..e6cf1a0879 100644
--- a/src/lib/libcrypto/hmac/Makefile.ssl
+++ b/src/lib/libcrypto/hmac/Makefile.ssl
@@ -7,9 +7,12 @@ TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,22 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82hmac.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
83hmac.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
84hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
85hmac.o: ../../include/openssl/hmac.h ../../include/openssl/obj_mac.h
86hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
87hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
88hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
89hmac.o: ../../include/openssl/symhacks.h hmac.c
diff --git a/src/lib/libcrypto/idea/Makefile.ssl b/src/lib/libcrypto/idea/Makefile.ssl
index 41b42ce03b..a3ac920371 100644
--- a/src/lib/libcrypto/idea/Makefile.ssl
+++ b/src/lib/libcrypto/idea/Makefile.ssl
@@ -7,9 +7,12 @@ TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,24 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
83i_cbc.o: i_cbc.c idea_lcl.h
84i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
85i_cfb64.o: i_cfb64.c idea_lcl.h
86i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
87i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h
88i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
89i_ofb64.o: i_ofb64.c idea_lcl.h
90i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
91i_skey.o: i_skey.c idea_lcl.h
diff --git a/src/lib/libcrypto/lhash/Makefile.ssl b/src/lib/libcrypto/lhash/Makefile.ssl
index cb08547b4f..a6851bcd36 100644
--- a/src/lib/libcrypto/lhash/Makefile.ssl
+++ b/src/lib/libcrypto/lhash/Makefile.ssl
@@ -7,9 +7,12 @@ TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,26 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82lh_stats.o: ../../e_os.h ../../include/openssl/bio.h
83lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
84lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
85lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
86lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
87lh_stats.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
88lh_stats.o: ../cryptlib.h lh_stats.c
89lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
90lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h
91lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
92lhash.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
93lhash.o: ../../include/openssl/symhacks.h lhash.c
diff --git a/src/lib/libcrypto/md2/Makefile.ssl b/src/lib/libcrypto/md2/Makefile.ssl
index d8e7200c83..cd4f42f2ed 100644
--- a/src/lib/libcrypto/md2/Makefile.ssl
+++ b/src/lib/libcrypto/md2/Makefile.ssl
@@ -2,14 +2,17 @@
2# SSLeay/crypto/md/Makefile 2# SSLeay/crypto/md/Makefile
3# 3#
4 4
5DIR= md 5DIR= md2
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -20,7 +23,7 @@ TEST=md2test.c
20APPS= 23APPS=
21 24
22LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
23LIBSRC=md2_dgst.c md5_one.c 26LIBSRC=md2_dgst.c md2_one.c
24LIBOBJ=md2_dgst.o md2_one.o 27LIBOBJ=md2_dgst.o md2_one.o
25 28
26SRC= $(LIBSRC) 29SRC= $(LIBSRC)
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,23 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h
83md2_dgst.o: ../../include/openssl/opensslv.h md2_dgst.c
84md2_one.o: ../../e_os.h ../../include/openssl/bio.h
85md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
86md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
87md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
88md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
89md2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
90md2_one.o: ../../include/openssl/symhacks.h ../cryptlib.h md2_one.c
diff --git a/src/lib/libcrypto/md4/Makefile.ssl b/src/lib/libcrypto/md4/Makefile.ssl
index 5341bf5b46..12eee13608 100644
--- a/src/lib/libcrypto/md4/Makefile.ssl
+++ b/src/lib/libcrypto/md4/Makefile.ssl
@@ -12,7 +12,8 @@ INSTALL_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
18 19
@@ -40,7 +41,7 @@ all: lib
40 41
41lib: $(LIBOBJ) 42lib: $(LIBOBJ)
42 $(AR) $(LIB) $(LIBOBJ) 43 $(AR) $(LIB) $(LIBOBJ)
43 $(RANLIB) $(LIB) 44 $(RANLIB) $(LIB) || echo Never mind.
44 @touch lib 45 @touch lib
45 46
46files: 47files:
@@ -79,6 +80,9 @@ clean:
79 80
80# DO NOT DELETE THIS LINE -- make depend depends on it. 81# DO NOT DELETE THIS LINE -- make depend depends on it.
81 82
82md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h 83md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h
83md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_locl.h 84md4_dgst.o: ../../include/openssl/opensslconf.h
84md4_one.o: ../../include/openssl/md4.h 85md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_dgst.c
86md4_dgst.o: md4_locl.h
87md4_one.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h
88md4_one.o: ../../include/openssl/opensslconf.h md4_one.c
diff --git a/src/lib/libcrypto/md5/Makefile.ssl b/src/lib/libcrypto/md5/Makefile.ssl
index 47e1ce05ca..fd0d63c339 100644
--- a/src/lib/libcrypto/md5/Makefile.ssl
+++ b/src/lib/libcrypto/md5/Makefile.ssl
@@ -8,9 +8,12 @@ CC= cc
8CPP= $(CC) -E 8CPP= $(CC) -E
9INCLUDES= 9INCLUDES=
10CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
11INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
12MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
13MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
15AR= ar r 18AR= ar r
16 19
@@ -18,9 +21,17 @@ MD5_ASM_OBJ=
18 21
19CFLAGS= $(INCLUDES) $(CFLAG) 22CFLAGS= $(INCLUDES) $(CFLAG)
20 23
24# We let the C compiler driver to take care of .s files. This is done in
25# order to be excused from maintaining a separate set of architecture
26# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
27# gcc, then the driver will automatically translate it to -xarch=v8plus
28# and pass it down to assembler.
29AS=$(CC) -c
30ASFLAGS=$(CFLAGS)
31
21GENERAL=Makefile 32GENERAL=Makefile
22TEST=md5test.c 33TEST=md5test.c
23APPS=md5.c 34APPS=
24 35
25LIB=$(TOP)/libcrypto.a 36LIB=$(TOP)/libcrypto.a
26LIBSRC=md5_dgst.c md5_one.c 37LIBSRC=md5_dgst.c md5_one.c
@@ -40,12 +51,12 @@ all: lib
40 51
41lib: $(LIBOBJ) 52lib: $(LIBOBJ)
42 $(AR) $(LIB) $(LIBOBJ) 53 $(AR) $(LIB) $(LIBOBJ)
43 sh $(TOP)/util/ranlib.sh $(LIB) 54 $(RANLIB) $(LIB) || echo Never mind.
44 @touch lib 55 @touch lib
45 56
46# elf 57# elf
47asm/mx86-elf.o: asm/mx86unix.cpp 58asm/mx86-elf.o: asm/mx86unix.cpp
48 $(CPP) -DELF asm/mx86unix.cpp | as -o asm/mx86-elf.o 59 $(CPP) -DELF -x c asm/mx86unix.cpp | as -o asm/mx86-elf.o
49 60
50# solaris 61# solaris
51asm/mx86-sol.o: asm/mx86unix.cpp 62asm/mx86-sol.o: asm/mx86unix.cpp
@@ -59,26 +70,43 @@ asm/mx86-out.o: asm/mx86unix.cpp
59 70
60# bsdi 71# bsdi
61asm/mx86bsdi.o: asm/mx86unix.cpp 72asm/mx86bsdi.o: asm/mx86unix.cpp
62 $(CPP) -DBSDI asm/mx86unix.cpp | as -o asm/mx86bsdi.o 73 $(CPP) -DBSDI asm/mx86unix.cpp | sed 's/ :/:/' | as -o asm/mx86bsdi.o
74
75asm/mx86unix.cpp: asm/md5-586.pl ../perlasm/x86asm.pl
76 (cd asm; $(PERL) md5-586.pl cpp >mx86unix.cpp)
77
78asm/md5-sparcv8plus.o: asm/md5-sparcv9.S
79 $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \
80 -o asm/md5-sparcv8plus.o asm/md5-sparcv9.S
63 81
64asm/mx86unix.cpp: 82# Old GNU assembler doesn't understand V9 instructions, so we
65 (cd asm; perl md5-586.pl cpp >mx86unix.cpp) 83# hire /usr/ccs/bin/as to do the job. Note that option is called
84# *-gcc27, but even gcc 2>=8 users may experience similar problem
85# if they didn't bother to upgrade GNU assembler. Such users should
86# not choose this option, but be adviced to *remove* GNU assembler
87# or upgrade it.
88asm/md5-sparcv8plus-gcc27.o: asm/md5-sparcv9.S
89 $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -E asm/md5-sparcv9.S | \
90 /usr/ccs/bin/as -xarch=v8plus - -o asm/md5-sparcv8plus-gcc27.o
91
92asm/md5-sparcv9.o: asm/md5-sparcv9.S
93 $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \
94 -o asm/md5-sparcv9.o asm/md5-sparcv9.S
66 95
67files: 96files:
68 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 97 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
69 98
70links: 99links:
71 /bin/rm -f Makefile 100 @$(TOP)/util/point.sh Makefile.ssl Makefile
72 $(TOP)/util/point.sh Makefile.ssl Makefile ; 101 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
73 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 102 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
74 $(TOP)/util/mklink.sh ../../test $(TEST) 103 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
75 $(TOP)/util/mklink.sh ../../apps $(APPS)
76 104
77install: 105install:
78 @for i in $(EXHEADER) ; \ 106 @for i in $(EXHEADER) ; \
79 do \ 107 do \
80 (cp $$i $(INSTALLTOP)/include/$$i; \ 108 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
81 chmod 644 $(INSTALLTOP)/include/$$i ); \ 109 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
82 done; 110 done;
83 111
84tags: 112tags:
@@ -90,15 +118,18 @@ lint:
90 lint -DLINT $(INCLUDES) $(SRC)>fluff 118 lint -DLINT $(INCLUDES) $(SRC)>fluff
91 119
92depend: 120depend:
93 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 121 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
94 122
95dclean: 123dclean:
96 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 124 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
97 mv -f Makefile.new $(MAKEFILE) 125 mv -f Makefile.new $(MAKEFILE)
98 126
99clean: 127clean:
100 /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 128 rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
101
102errors:
103 129
104# DO NOT DELETE THIS LINE -- make depend depends on it. 130# DO NOT DELETE THIS LINE -- make depend depends on it.
131
132md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
133md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c
134md5_dgst.o: md5_locl.h
135md5_one.o: ../../include/openssl/md5.h md5_one.c
diff --git a/src/lib/libcrypto/mdc2/Makefile.ssl b/src/lib/libcrypto/mdc2/Makefile.ssl
index 495a2789a0..19cd3520eb 100644
--- a/src/lib/libcrypto/mdc2/Makefile.ssl
+++ b/src/lib/libcrypto/mdc2/Makefile.ssl
@@ -7,9 +7,12 @@ TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,31 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82mdc2_one.o: ../../e_os.h ../../include/openssl/bio.h
83mdc2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
84mdc2_one.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
85mdc2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
86mdc2_one.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h
87mdc2_one.o: ../../include/openssl/opensslconf.h
88mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
89mdc2_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
90mdc2_one.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
91mdc2_one.o: ../cryptlib.h mdc2_one.c
92mdc2dgst.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
93mdc2dgst.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
94mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h
95mdc2dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
96mdc2dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
97mdc2dgst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
98mdc2dgst.o: mdc2dgst.c
diff --git a/src/lib/libcrypto/objects/Makefile.ssl b/src/lib/libcrypto/objects/Makefile.ssl
index 320523cea1..efe71eeb35 100644
--- a/src/lib/libcrypto/objects/Makefile.ssl
+++ b/src/lib/libcrypto/objects/Makefile.ssl
@@ -5,29 +5,31 @@
5DIR= objects 5DIR= objects
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
18PERL= perl
15 19
16CFLAGS= $(INCLUDES) $(CFLAG) 20CFLAGS= $(INCLUDES) $(CFLAG)
17 21
18ERR=objects
19ERRC=obj_err
20GENERAL=Makefile README 22GENERAL=Makefile README
21TEST= 23TEST=
22APPS= 24APPS=
23 25
24LIB=$(TOP)/libcrypto.a 26LIB=$(TOP)/libcrypto.a
25LIBSRC= obj_dat.c obj_lib.c $(ERRC).c 27LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c
26LIBOBJ= obj_dat.o obj_lib.o $(ERRC).o 28LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o
27 29
28SRC= $(LIBSRC) 30SRC= $(LIBSRC)
29 31
30EXHEADER= objects.h 32EXHEADER= objects.h obj_mac.h
31HEADER= $(EXHEADER) obj_dat.h 33HEADER= $(EXHEADER) obj_dat.h
32 34
33ALL= $(GENERAL) $(SRC) $(HEADER) 35ALL= $(GENERAL) $(SRC) $(HEADER)
@@ -37,29 +39,32 @@ top:
37 39
38all: obj_dat.h lib 40all: obj_dat.h lib
39 41
40obj_dat.h: objects.h obj_dat.pl
41 perl ./obj_dat.pl < objects.h > obj_dat.h
42
43lib: $(LIBOBJ) 42lib: $(LIBOBJ)
44 $(AR) $(LIB) $(LIBOBJ) 43 $(AR) $(LIB) $(LIBOBJ)
45 sh $(TOP)/util/ranlib.sh $(LIB) 44 $(RANLIB) $(LIB) || echo Never mind.
46 @touch lib 45 @touch lib
47 46
47obj_dat.h: obj_dat.pl obj_mac.h
48 $(PERL) obj_dat.pl obj_mac.h obj_dat.h
49
50# objects.pl both reads and writes obj_mac.num
51obj_mac.h: objects.pl objects.txt obj_mac.num
52 $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h
53
48files: 54files:
49 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 55 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
50 56
51links: 57links:
52 /bin/rm -f Makefile 58 @$(TOP)/util/point.sh Makefile.ssl Makefile
53 $(TOP)/util/point.sh Makefile.ssl Makefile ; 59 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
54 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 60 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
55 $(TOP)/util/mklink.sh ../../test $(TEST) 61 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
56 $(TOP)/util/mklink.sh ../../apps $(APPS)
57 62
58install: 63install:
59 @for i in $(EXHEADER) ; \ 64 @for i in $(EXHEADER) ; \
60 do \ 65 do \
61 (cp $$i $(INSTALLTOP)/include/$$i; \ 66 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
62 chmod 644 $(INSTALLTOP)/include/$$i ); \ 67 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
63 done; 68 done;
64 69
65tags: 70tags:
@@ -71,17 +76,48 @@ lint:
71 lint -DLINT $(INCLUDES) $(SRC)>fluff 76 lint -DLINT $(INCLUDES) $(SRC)>fluff
72 77
73depend: 78depend:
74 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 79 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
75 80
76dclean: 81dclean:
77 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 82 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
78 mv -f Makefile.new $(MAKEFILE) 83 mv -f Makefile.new $(MAKEFILE)
79 84
80clean: 85clean:
81 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 86 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
82
83errors:
84 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
85 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
86 87
87# DO NOT DELETE THIS LINE -- make depend depends on it. 88# DO NOT DELETE THIS LINE -- make depend depends on it.
89
90o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
91o_names.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
92o_names.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h
93o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
94o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
95o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
96o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
97o_names.o: o_names.c
98obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h
99obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
100obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
101obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
102obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
103obj_dat.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
104obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
105obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
106obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h
107obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
108obj_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
109obj_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
110obj_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
111obj_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
112obj_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
113obj_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
114obj_err.o: ../../include/openssl/symhacks.h obj_err.c
115obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h
116obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
117obj_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
118obj_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
119obj_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
120obj_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
121obj_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
122obj_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
123obj_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_lib.c
diff --git a/src/lib/libcrypto/pem/Makefile.ssl b/src/lib/libcrypto/pem/Makefile.ssl
index fc04a88fd9..a051b6fecc 100644
--- a/src/lib/libcrypto/pem/Makefile.ssl
+++ b/src/lib/libcrypto/pem/Makefile.ssl
@@ -5,32 +5,33 @@
5DIR= pem 5DIR= pem
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=pem
19ERRC=pem_err
20GENERAL=Makefile 21GENERAL=Makefile
21TEST= 22TEST=
22APPS= 23APPS=
23 24
24CTX_SIZE= ctx_size
25
26LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
27LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c $(ERRC).c 26LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \
27 pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c
28 28
29LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o $(ERRC).o 29LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \
30 pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o
30 31
31SRC= $(LIBSRC) 32SRC= $(LIBSRC)
32 33
33EXHEADER= pem.h 34EXHEADER= pem.h pem2.h
34HEADER= $(EXHEADER) 35HEADER= $(EXHEADER)
35 36
36ALL= $(GENERAL) $(SRC) $(HEADER) 37ALL= $(GENERAL) $(SRC) $(HEADER)
@@ -38,36 +39,27 @@ ALL= $(GENERAL) $(SRC) $(HEADER)
38top: 39top:
39 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) 40 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40 41
41all: pem.h lib 42all: lib
42
43pem.h: $(CTX_SIZE)
44 ./$(CTX_SIZE) <pem.org >pem.new
45 if [ -f pem.h ]; then mv -f pem.h pem.old; fi
46 mv -f pem.new pem.h
47
48$(CTX_SIZE): $(CTX_SIZE).o
49 $(CC) $(CFLAGS) -o $(CTX_SIZE) $(CTX_SIZE).o
50 43
51lib: $(LIBOBJ) 44lib: $(LIBOBJ)
52 $(AR) $(LIB) $(LIBOBJ) 45 $(AR) $(LIB) $(LIBOBJ)
53 sh $(TOP)/util/ranlib.sh $(LIB) 46 $(RANLIB) $(LIB) || echo Never mind.
54 @touch lib 47 @touch lib
55 48
56files: 49files:
57 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 50 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
58 51
59links: 52links: $(EXHEADER)
60 /bin/rm -f Makefile 53 @$(TOP)/util/point.sh Makefile.ssl Makefile
61 $(TOP)/util/point.sh Makefile.ssl Makefile ; 54 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
62 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 55 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
63 $(TOP)/util/mklink.sh ../../test $(TEST) 56 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
64 $(TOP)/util/mklink.sh ../../apps $(APPS)
65 57
66install: 58install:
67 @for i in $(EXHEADER) ; \ 59 @for i in $(EXHEADER) ; \
68 do \ 60 do \
69 (cp $$i $(INSTALLTOP)/include/$$i; \ 61 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
70 chmod 644 $(INSTALLTOP)/include/$$i ); \ 62 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
71 done; 63 done;
72 64
73tags: 65tags:
@@ -79,18 +71,180 @@ lint:
79 lint -DLINT $(INCLUDES) $(SRC)>fluff 71 lint -DLINT $(INCLUDES) $(SRC)>fluff
80 72
81depend: 73depend:
82 $(MAKEDEPEND) $(INCLUDES) $(CTX_SIZE).c $(LIBSRC) 74 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC)
83 75
84dclean: 76dclean:
85 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 77 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
86 mv -f Makefile.new $(MAKEFILE) 78 mv -f Makefile.new $(MAKEFILE)
87 79
88clean: 80clean:
89 /bin/rm -f $(CTX_SIZE) *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 81 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
90
91errors:
92 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # SPECIAL CASE .org
93 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
94 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
95 82
96# DO NOT DELETE THIS LINE -- make depend depends on it. 83# DO NOT DELETE THIS LINE -- make depend depends on it.
84
85pem_all.o: ../../e_os.h ../../include/openssl/asn1.h
86pem_all.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
87pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
88pem_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
89pem_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
90pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
91pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
92pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
93pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
94pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
95pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
96pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
97pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
98pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c
99pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
100pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
101pem_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
102pem_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
103pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
104pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
105pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
106pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
107pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
108pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
109pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
110pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
111pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
112pem_err.o: pem_err.c
113pem_info.o: ../../e_os.h ../../include/openssl/asn1.h
114pem_info.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
115pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
116pem_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
117pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
118pem_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
119pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
120pem_info.o: ../../include/openssl/opensslconf.h
121pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
122pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
123pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
124pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
125pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
126pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
127pem_info.o: ../cryptlib.h pem_info.c
128pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h
129pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
130pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
131pem_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
132pem_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
133pem_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
134pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
135pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
136pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
137pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
138pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h
139pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
140pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
141pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
142pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
143pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
144pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c
145pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h
146pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
147pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
148pem_oth.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
149pem_oth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
150pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
151pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
152pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
153pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
154pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
155pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
156pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
157pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
158pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
159pem_oth.o: ../cryptlib.h pem_oth.c
160pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h
161pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
162pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
163pem_pk8.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
164pem_pk8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
165pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
166pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
167pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
168pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
169pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h
170pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
171pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
172pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
173pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
174pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c
175pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
176pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
177pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
178pem_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
179pem_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
180pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
181pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
182pem_pkey.o: ../../include/openssl/opensslconf.h
183pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
184pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
185pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
186pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
187pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
188pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
189pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
190pem_pkey.o: ../cryptlib.h pem_pkey.c
191pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h
192pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
193pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
194pem_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
195pem_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
196pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
197pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
198pem_seal.o: ../../include/openssl/opensslconf.h
199pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
200pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
201pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
202pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
203pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
204pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
205pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c
206pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h
207pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
208pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
209pem_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
210pem_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
211pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
212pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
213pem_sign.o: ../../include/openssl/opensslconf.h
214pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
215pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
216pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
217pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
218pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
219pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
220pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c
221pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h
222pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
223pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
224pem_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
225pem_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
226pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
227pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
228pem_x509.o: ../../include/openssl/opensslconf.h
229pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
230pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
231pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
232pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
233pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
234pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
235pem_x509.o: ../cryptlib.h pem_x509.c
236pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h
237pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
238pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
239pem_xaux.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
240pem_xaux.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
241pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
242pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
243pem_xaux.o: ../../include/openssl/opensslconf.h
244pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
245pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
246pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
247pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
248pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
249pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
250pem_xaux.o: ../cryptlib.h pem_xaux.c
diff --git a/src/lib/libcrypto/pkcs12/Makefile.ssl b/src/lib/libcrypto/pkcs12/Makefile.ssl
index ebffab657c..cb815db72f 100644
--- a/src/lib/libcrypto/pkcs12/Makefile.ssl
+++ b/src/lib/libcrypto/pkcs12/Makefile.ssl
@@ -1,17 +1,18 @@
1# 1#
2# SSLeay/crypto/asn1/Makefile 2# SSLeay/crypto/pkcs12/Makefile
3# 3#
4 4
5DIR= pkcs12 5DIR= pkcs12
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX= 10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl 11OPENSSLDIR= /usr/local/ssl
12INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
14MAKEDEPEND= $(TOP)/util/domd $(TOP) 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
16AR= ar r 17AR= ar r
17 18
@@ -22,12 +23,12 @@ TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= p12_add.c p12_attr.c p12_bags.c p12_crpt.c p12_crt.c p12_decr.c \ 26LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \
26 p12_init.c p12_key.c p12_kiss.c p12_lib.c p12_mac.c p12_mutl.c\ 27 p12_init.c p12_key.c p12_kiss.c p12_mutl.c\
27 p12_sbag.c p12_utl.c pk12err.c 28 p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c
28LIBOBJ= p12_add.o p12_attr.o p12_bags.o p12_crpt.o p12_crt.o p12_decr.o \ 29LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \
29 p12_init.o p12_key.o p12_kiss.o p12_lib.o p12_mac.o p12_mutl.o\ 30 p12_init.o p12_key.o p12_kiss.o p12_mutl.o\
30 p12_sbag.o p12_utl.o pk12err.o 31 p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o
31 32
32SRC= $(LIBSRC) 33SRC= $(LIBSRC)
33 34
@@ -45,7 +46,7 @@ all: lib
45 46
46lib: $(LIBOBJ) 47lib: $(LIBOBJ)
47 $(AR) $(LIB) $(LIBOBJ) 48 $(AR) $(LIB) $(LIBOBJ)
48 $(RANLIB) $(LIB) 49 $(RANLIB) $(LIB) || echo Never mind.
49 @touch lib 50 @touch lib
50 51
51files: 52files:
@@ -84,263 +85,213 @@ clean:
84 85
85# DO NOT DELETE THIS LINE -- make depend depends on it. 86# DO NOT DELETE THIS LINE -- make depend depends on it.
86 87
87p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 88p12_add.o: ../../e_os.h ../../include/openssl/asn1.h
88p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 89p12_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
89p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 90p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
90p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
91p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 91p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
92p12_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 92p12_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
93p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h 93p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
94p12_add.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 94p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
95p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 95p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
96p12_add.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 96p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
97p12_add.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 97p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
98p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
99p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
100p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
101p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 98p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
102p12_add.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 99p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
103p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 100p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
104p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 101p12_add.o: ../cryptlib.h p12_add.c
105p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 102p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h
106p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 103p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
107p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 104p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
105p12_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
106p12_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
107p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
108p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
109p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
110p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
111p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
112p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
113p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
114p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
115p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c
116p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h
117p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
118p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
108p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 119p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
109p12_attr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 120p12_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
110p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h 121p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
111p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 122p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
112p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 123p12_attr.o: ../../include/openssl/opensslconf.h
113p12_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 124p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
114p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 125p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
115p12_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 126p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
116p12_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 127p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
117p12_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 128p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
118p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 129p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c
119p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 130p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
120p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 131p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
121p12_bags.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 132p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
122p12_bags.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
123p12_bags.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
124p12_bags.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
125p12_bags.o: ../../include/openssl/des.h ../../include/openssl/dh.h
126p12_bags.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
127p12_bags.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
128p12_bags.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
129p12_bags.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
130p12_bags.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
131p12_bags.o: ../../include/openssl/opensslconf.h
132p12_bags.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
133p12_bags.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
134p12_bags.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
135p12_bags.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
136p12_bags.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
137p12_bags.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
138p12_bags.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
139p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
140p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
141p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
142p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
143p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 133p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
144p12_crpt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 134p12_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
145p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h 135p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
146p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 136p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
147p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 137p12_crpt.o: ../../include/openssl/opensslconf.h
148p12_crpt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 138p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
149p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 139p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
150p12_crpt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 140p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
151p12_crpt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 141p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
152p12_crpt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 142p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
153p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 143p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c
154p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 144p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h
155p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 145p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
156p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 146p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
157p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
158p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
159p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
160p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 147p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
161p12_crt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 148p12_crt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
162p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h 149p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
163p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 150p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
164p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 151p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
165p12_crt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 152p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
166p12_crt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 153p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
167p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
168p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
169p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
170p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 154p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
171p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 155p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
172p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 156p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
173p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 157p12_crt.o: ../cryptlib.h p12_crt.c
174p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 158p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h
175p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 159p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
176p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 160p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
177p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 161p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
178p12_decr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 162p12_decr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
179p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h 163p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
180p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 164p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
181p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 165p12_decr.o: ../../include/openssl/opensslconf.h
182p12_decr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 166p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
183p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 167p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
184p12_decr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 168p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
185p12_decr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 169p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
186p12_decr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 170p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
187p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 171p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c
188p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 172p12_init.o: ../../e_os.h ../../include/openssl/asn1.h
189p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 173p12_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
190p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 174p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
191p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
192p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
193p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
194p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 175p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
195p12_init.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 176p12_init.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
196p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h 177p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
197p12_init.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 178p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
198p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 179p12_init.o: ../../include/openssl/opensslconf.h
199p12_init.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 180p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
200p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 181p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
201p12_init.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 182p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
202p12_init.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 183p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
203p12_init.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 184p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
204p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 185p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c
205p12_init.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 186p12_key.o: ../../e_os.h ../../include/openssl/asn1.h
206p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 187p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
207p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 188p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
208p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
209p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
210p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
211p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 189p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
212p12_key.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 190p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
213p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h 191p12_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
214p12_key.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 192p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
215p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 193p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
216p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 194p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
217p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 195p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
218p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
219p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
220p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
221p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 196p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
222p12_key.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 197p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
223p12_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 198p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
224p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 199p12_key.o: ../cryptlib.h p12_key.c
225p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 200p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h
226p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 201p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
227p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 202p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
228p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 203p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
229p12_kiss.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 204p12_kiss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
230p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h 205p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
231p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 206p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
232p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 207p12_kiss.o: ../../include/openssl/opensslconf.h
233p12_kiss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 208p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
234p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 209p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
235p12_kiss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 210p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
236p12_kiss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 211p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
237p12_kiss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 212p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
238p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 213p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c
239p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 214p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h
240p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 215p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
241p12_lib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 216p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
242p12_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
243p12_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
244p12_lib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
245p12_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h
246p12_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
247p12_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
248p12_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
249p12_lib.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
250p12_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
251p12_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
252p12_lib.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
253p12_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
254p12_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
255p12_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
256p12_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
257p12_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
258p12_lib.o: ../cryptlib.h
259p12_mac.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
260p12_mac.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
261p12_mac.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
262p12_mac.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
263p12_mac.o: ../../include/openssl/des.h ../../include/openssl/dh.h
264p12_mac.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
265p12_mac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
266p12_mac.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
267p12_mac.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
268p12_mac.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
269p12_mac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
270p12_mac.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
271p12_mac.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
272p12_mac.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
273p12_mac.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
274p12_mac.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
275p12_mac.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
276p12_mac.o: ../cryptlib.h
277p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
278p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
279p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
280p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
281p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 217p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
282p12_mutl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 218p12_mutl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
283p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h 219p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
284p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h 220p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
285p12_mutl.o: ../../include/openssl/md2.h ../../include/openssl/md5.h 221p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
286p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h 222p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
287p12_mutl.o: ../../include/openssl/opensslconf.h 223p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
288p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 224p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
289p12_mutl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h 225p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
290p12_mutl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 226p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
291p12_mutl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
292p12_mutl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
293p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
294p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 227p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
295p12_mutl.o: ../cryptlib.h 228p12_mutl.o: ../cryptlib.h p12_mutl.c
296p12_sbag.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 229p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
297p12_sbag.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h 230p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
298p12_sbag.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 231p12_npas.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
299p12_sbag.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h 232p12_npas.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
300p12_sbag.o: ../../include/openssl/des.h ../../include/openssl/dh.h 233p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h
301p12_sbag.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h 234p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
302p12_sbag.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 235p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
303p12_sbag.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 236p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
304p12_sbag.o: ../../include/openssl/md2.h ../../include/openssl/md5.h 237p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
305p12_sbag.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h 238p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
306p12_sbag.o: ../../include/openssl/opensslconf.h 239p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
307p12_sbag.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 240p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
308p12_sbag.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 241p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
309p12_sbag.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 242p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c
310p12_sbag.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 243p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h
311p12_sbag.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 244p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
312p12_sbag.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 245p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
313p12_sbag.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 246p12_p8d.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
314p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 247p12_p8d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
315p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 248p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
316p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 249p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
317p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 250p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
251p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
252p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
253p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
254p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
255p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
256p12_p8d.o: ../cryptlib.h p12_p8d.c
257p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h
258p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
259p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
260p12_p8e.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
261p12_p8e.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
262p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
263p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
264p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
265p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
266p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
267p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
268p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
269p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
270p12_p8e.o: ../cryptlib.h p12_p8e.c
271p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h
272p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
273p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
318p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 274p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
319p12_utl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 275p12_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
320p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h 276p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
321p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 277p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
322p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 278p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
323p12_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 279p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
324p12_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 280p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
325p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
326p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
327p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
328p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 281p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
329p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 282p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
330p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h 283p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
284p12_utl.o: ../cryptlib.h p12_utl.c
331pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 285pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
332pk12err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 286pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
333pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h 287pk12err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
334pk12err.o: ../../include/openssl/des.h ../../include/openssl/dh.h
335pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h 288pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
336pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h 289pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
337pk12err.o: ../../include/openssl/idea.h ../../include/openssl/md2.h 290pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
338pk12err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
339pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 291pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
340pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h 292pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
341pk12err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 293pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
342pk12err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 294pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
343pk12err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 295pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
344pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 296pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
345pk12err.o: ../../include/openssl/stack.h ../../include/openssl/x509.h 297pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c
346pk12err.o: ../../include/openssl/x509_vfy.h
diff --git a/src/lib/libcrypto/pkcs7/Makefile.ssl b/src/lib/libcrypto/pkcs7/Makefile.ssl
index a88359b320..f606abe440 100644
--- a/src/lib/libcrypto/pkcs7/Makefile.ssl
+++ b/src/lib/libcrypto/pkcs7/Makefile.ssl
@@ -1,29 +1,35 @@
1# 1#
2# SSLeay/crypto/asn1/Makefile 2# SSLeay/crypto/pkcs7/Makefile
3# 3#
4 4
5DIR= pkcs7 5DIR= pkcs7
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
19PEX_LIBS=
20EX_LIBS=
21
16CFLAGS= $(INCLUDES) $(CFLAG) 22CFLAGS= $(INCLUDES) $(CFLAG)
17 23
18ERR=pkcs7
19ERRC=pkcs7err
20GENERAL=Makefile README 24GENERAL=Makefile README
21TEST= 25TEST=
22APPS= 26APPS=
23 27
24LIB=$(TOP)/libcrypto.a 28LIB=$(TOP)/libcrypto.a
25LIBSRC= pk7_lib.c pkcs7err.c pk7_doit.c 29LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \
26LIBOBJ= pk7_lib.o pkcs7err.o pk7_doit.o 30 pk7_mime.c
31LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \
32 pk7_mime.o
27 33
28SRC= $(LIBSRC) 34SRC= $(LIBSRC)
29 35
@@ -39,26 +45,39 @@ test:
39 45
40all: lib 46all: lib
41 47
48testapps: enc dec sign verify
49
50enc: enc.o lib
51 $(CC) $(CFLAGS) -o enc enc.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
52
53dec: dec.o lib
54 $(CC) $(CFLAGS) -o dec dec.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
55
56sign: sign.o lib
57 $(CC) $(CFLAGS) -o sign sign.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
58
59verify: verify.o example.o lib
60 $(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS)
61
42lib: $(LIBOBJ) 62lib: $(LIBOBJ)
43 $(AR) $(LIB) $(LIBOBJ) 63 $(AR) $(LIB) $(LIBOBJ)
44 sh $(TOP)/util/ranlib.sh $(LIB) 64 $(RANLIB) $(LIB) || echo Never mind.
45 @touch lib 65 @touch lib
46 66
47files: 67files:
48 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 68 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
49 69
50links: 70links:
51 /bin/rm -f Makefile 71 @$(TOP)/util/point.sh Makefile.ssl Makefile
52 $(TOP)/util/point.sh Makefile.ssl Makefile ; 72 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
53 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 73 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
54 $(TOP)/util/mklink.sh ../../test $(TEST) 74 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
55 $(TOP)/util/mklink.sh ../../apps $(APPS)
56 75
57install: 76install:
58 @for i in $(EXHEADER) ; \ 77 @for i in $(EXHEADER) ; \
59 do \ 78 do \
60 (cp $$i $(INSTALLTOP)/include/$$i; \ 79 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
61 chmod 644 $(INSTALLTOP)/include/$$i ); \ 80 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
62 done; 81 done;
63 82
64tags: 83tags:
@@ -70,17 +89,107 @@ lint:
70 lint -DLINT $(INCLUDES) $(SRC)>fluff 89 lint -DLINT $(INCLUDES) $(SRC)>fluff
71 90
72depend: 91depend:
73 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 92 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
74 93
75dclean: 94dclean:
76 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 95 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
77 mv -f Makefile.new $(MAKEFILE) 96 mv -f Makefile.new $(MAKEFILE)
78 97
79clean: 98clean:
80 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 99 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify
81
82errors:
83 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
84 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
85 100
86# DO NOT DELETE THIS LINE -- make depend depends on it. 101# DO NOT DELETE THIS LINE -- make depend depends on it.
102
103pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
104pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
105pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
106pk7_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
107pk7_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
108pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h
109pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
110pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
111pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
112pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
113pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
114pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
115pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
116pk7_asn1.o: ../cryptlib.h pk7_asn1.c
117pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
118pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
119pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
120pk7_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
121pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
122pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
123pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
124pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
125pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
126pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
127pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
128pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
129pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
130pk7_attr.o: pk7_attr.c
131pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h
132pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
133pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
134pk7_doit.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
135pk7_doit.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
136pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h
137pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
138pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
139pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
140pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
141pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
142pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
143pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
144pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
145pk7_doit.o: ../cryptlib.h pk7_doit.c
146pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h
147pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
148pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
149pk7_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
150pk7_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
151pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
152pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
153pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
154pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
155pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
156pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
157pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
158pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c
159pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h
160pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
161pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
162pk7_mime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
163pk7_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
164pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
165pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
166pk7_mime.o: ../../include/openssl/opensslconf.h
167pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
168pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
169pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
170pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
171pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
172pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c
173pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h
174pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
175pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
176pk7_smime.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
177pk7_smime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
178pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
179pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
180pk7_smime.o: ../../include/openssl/objects.h
181pk7_smime.o: ../../include/openssl/opensslconf.h
182pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
183pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
184pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
185pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
186pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
187pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c
188pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
189pkcs7err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
190pkcs7err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
191pkcs7err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
192pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
193pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
194pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
195pkcs7err.o: pkcs7err.c
diff --git a/src/lib/libcrypto/rand/Makefile.ssl b/src/lib/libcrypto/rand/Makefile.ssl
index d04f0a9b43..ccf65f0d78 100644
--- a/src/lib/libcrypto/rand/Makefile.ssl
+++ b/src/lib/libcrypto/rand/Makefile.ssl
@@ -7,9 +7,12 @@ TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -20,8 +23,10 @@ TEST= randtest.c
20APPS= 23APPS=
21 24
22LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
23LIBSRC=md_rand.c randfile.c 26LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \
24LIBOBJ=md_rand.o randfile.o 27 rand_win.c rand_unix.c rand_os2.c
28LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \
29 rand_win.o rand_unix.o rand_os2.o
25 30
26SRC= $(LIBSRC) 31SRC= $(LIBSRC)
27 32
@@ -37,24 +42,23 @@ all: lib
37 42
38lib: $(LIBOBJ) 43lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 44 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 45 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 46 @touch lib
42 47
43files: 48files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 49 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 50
46links: 51links:
47 /bin/rm -f Makefile 52 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 53 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 54 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 55 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 56
53install: 57install:
54 @for i in $(EXHEADER) ; \ 58 @for i in $(EXHEADER) ; \
55 do \ 59 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 60 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 61 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 62 done;
59 63
60tags: 64tags:
@@ -66,15 +70,88 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 70 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 71
68depend: 72depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 73 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 74
71dclean: 75dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 76 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 77 mv -f Makefile.new $(MAKEFILE)
74 78
75clean: 79clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 80 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 81
80# DO NOT DELETE THIS LINE -- make depend depends on it. 82# DO NOT DELETE THIS LINE -- make depend depends on it.
83
84md_rand.o: ../../e_os.h ../../include/openssl/asn1.h
85md_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
86md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
87md_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h
88md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
89md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
90md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
91md_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
92md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
93md_rand.o: ../../include/openssl/symhacks.h md_rand.c rand_lcl.h
94rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
95rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
96rand_egd.o: rand_egd.c
97rand_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
98rand_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
99rand_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
100rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
101rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
102rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
103rand_err.o: rand_err.c
104rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h
105rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
106rand_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
107rand_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
108rand_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
109rand_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
110rand_lib.o: ../../include/openssl/opensslconf.h
111rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
112rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
113rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
114rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
115rand_lib.o: ../cryptlib.h rand_lib.c
116rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h
117rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
118rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
119rand_os2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
120rand_os2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
121rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
122rand_os2.o: ../../include/openssl/opensslconf.h
123rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
124rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
125rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
126rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
127rand_os2.o: rand_os2.c
128rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h
129rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
130rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
131rand_unix.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
132rand_unix.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
133rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
134rand_unix.o: ../../include/openssl/opensslconf.h
135rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
136rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
137rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
138rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
139rand_unix.o: rand_unix.c
140rand_win.o: ../../e_os.h ../../include/openssl/asn1.h
141rand_win.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
142rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
143rand_win.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
144rand_win.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
145rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
146rand_win.o: ../../include/openssl/opensslconf.h
147rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
148rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
149rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
150rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
151rand_win.o: rand_win.c
152randfile.o: ../../e_os.h ../../include/openssl/crypto.h
153randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
154randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
155randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
156randfile.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
157randfile.o: randfile.c
diff --git a/src/lib/libcrypto/rc2/Makefile.ssl b/src/lib/libcrypto/rc2/Makefile.ssl
index c5138f13e2..c233b0fa0c 100644
--- a/src/lib/libcrypto/rc2/Makefile.ssl
+++ b/src/lib/libcrypto/rc2/Makefile.ssl
@@ -7,9 +7,12 @@ TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,24 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
83rc2_cbc.o: rc2_cbc.c rc2_locl.h
84rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
85rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h
86rc2_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
87rc2_skey.o: rc2_locl.h rc2_skey.c
88rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
89rc2cfb64.o: rc2_locl.h rc2cfb64.c
90rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
91rc2ofb64.o: rc2_locl.h rc2ofb64.c
diff --git a/src/lib/libcrypto/rc4/Makefile.ssl b/src/lib/libcrypto/rc4/Makefile.ssl
index 19c1e980f3..5214e512fc 100644
--- a/src/lib/libcrypto/rc4/Makefile.ssl
+++ b/src/lib/libcrypto/rc4/Makefile.ssl
@@ -5,11 +5,15 @@
5DIR= rc4 5DIR= rc4
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8CPP= $(CC) -E
8INCLUDES= 9INCLUDES=
9CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
14AR= ar r 18AR= ar r
15 19
@@ -44,12 +48,12 @@ all: lib
44 48
45lib: $(LIBOBJ) 49lib: $(LIBOBJ)
46 $(AR) $(LIB) $(LIBOBJ) 50 $(AR) $(LIB) $(LIBOBJ)
47 sh $(TOP)/util/ranlib.sh $(LIB) 51 $(RANLIB) $(LIB) || echo Never mind.
48 @touch lib 52 @touch lib
49 53
50# elf 54# elf
51asm/rx86-elf.o: asm/rx86unix.cpp 55asm/rx86-elf.o: asm/rx86unix.cpp
52 $(CPP) -DELF asm/rx86unix.cpp | as -o asm/rx86-elf.o 56 $(CPP) -DELF -x c asm/rx86unix.cpp | as -o asm/rx86-elf.o
53 57
54# solaris 58# solaris
55asm/rx86-sol.o: asm/rx86unix.cpp 59asm/rx86-sol.o: asm/rx86unix.cpp
@@ -63,26 +67,25 @@ asm/rx86-out.o: asm/rx86unix.cpp
63 67
64# bsdi 68# bsdi
65asm/rx86bsdi.o: asm/rx86unix.cpp 69asm/rx86bsdi.o: asm/rx86unix.cpp
66 $(CPP) -DBSDI asm/rx86unix.cpp | as -o asm/rx86bsdi.o 70 $(CPP) -DBSDI asm/rx86unix.cpp | sed 's/ :/:/' | as -o asm/rx86bsdi.o
67 71
68asm/rx86unix.cpp: 72asm/rx86unix.cpp: asm/rc4-586.pl ../perlasm/x86asm.pl
69 (cd asm; perl rc4-586.pl cpp >rx86unix.cpp) 73 (cd asm; $(PERL) rc4-586.pl cpp >rx86unix.cpp)
70 74
71files: 75files:
72 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 76 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
73 77
74links: 78links:
75 /bin/rm -f Makefile 79 @$(TOP)/util/point.sh Makefile.ssl Makefile
76 $(TOP)/util/point.sh Makefile.ssl Makefile ; 80 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
77 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 81 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
78 $(TOP)/util/mklink.sh ../../test $(TEST) 82 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
79 $(TOP)/util/mklink.sh ../../apps $(APPS)
80 83
81install: 84install:
82 @for i in $(EXHEADER) ; \ 85 @for i in $(EXHEADER) ; \
83 do \ 86 do \
84 (cp $$i $(INSTALLTOP)/include/$$i; \ 87 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
85 chmod 644 $(INSTALLTOP)/include/$$i ); \ 88 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
86 done; 89 done;
87 90
88tags: 91tags:
@@ -94,15 +97,19 @@ lint:
94 lint -DLINT $(INCLUDES) $(SRC)>fluff 97 lint -DLINT $(INCLUDES) $(SRC)>fluff
95 98
96depend: 99depend:
97 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 100 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
98 101
99dclean: 102dclean:
100 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 103 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
101 mv -f Makefile.new $(MAKEFILE) 104 mv -f Makefile.new $(MAKEFILE)
102 105
103clean: 106clean:
104 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o 107 rm -f asm/rx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o
105
106errors:
107 108
108# DO NOT DELETE THIS LINE -- make depend depends on it. 109# DO NOT DELETE THIS LINE -- make depend depends on it.
110
111rc4_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc4.h
112rc4_enc.o: rc4_enc.c rc4_locl.h
113rc4_skey.o: ../../include/openssl/opensslconf.h
114rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h
115rc4_skey.o: rc4_locl.h rc4_skey.c
diff --git a/src/lib/libcrypto/rc5/Makefile.ssl b/src/lib/libcrypto/rc5/Makefile.ssl
index 5e98ee2348..10deca5ace 100644
--- a/src/lib/libcrypto/rc5/Makefile.ssl
+++ b/src/lib/libcrypto/rc5/Makefile.ssl
@@ -8,9 +8,12 @@ CC= cc
8CPP= $(CC) -E 8CPP= $(CC) -E
9INCLUDES= 9INCLUDES=
10CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
11INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
12MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
13MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
15AR= ar r 18AR= ar r
16 19
@@ -42,12 +45,12 @@ all: lib
42 45
43lib: $(LIBOBJ) 46lib: $(LIBOBJ)
44 $(AR) $(LIB) $(LIBOBJ) 47 $(AR) $(LIB) $(LIBOBJ)
45 sh $(TOP)/util/ranlib.sh $(LIB) 48 $(RANLIB) $(LIB) || echo Never mind.
46 @touch lib 49 @touch lib
47 50
48# elf 51# elf
49asm/r586-elf.o: asm/r586unix.cpp 52asm/r586-elf.o: asm/r586unix.cpp
50 $(CPP) -DELF asm/r586unix.cpp | as -o asm/r586-elf.o 53 $(CPP) -DELF -x c asm/r586unix.cpp | as -o asm/r586-elf.o
51 54
52# solaris 55# solaris
53asm/r586-sol.o: asm/r586unix.cpp 56asm/r586-sol.o: asm/r586unix.cpp
@@ -61,27 +64,25 @@ asm/r586-out.o: asm/r586unix.cpp
61 64
62# bsdi 65# bsdi
63asm/r586bsdi.o: asm/r586unix.cpp 66asm/r586bsdi.o: asm/r586unix.cpp
64 $(CPP) -DBSDI asm/r586unix.cpp | as -o asm/r586bsdi.o 67 $(CPP) -DBSDI asm/r586unix.cpp | sed 's/ :/:/' | as -o asm/r586bsdi.o
65 68
66asm/r586unix.cpp: 69asm/r586unix.cpp: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
67 (cd asm; perl rc5-586.pl cpp >r586unix.cpp) 70 (cd asm; $(PERL) rc5-586.pl cpp >r586unix.cpp)
68 71
69files: 72files:
70 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 73 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
71 74
72links: 75links:
73 /bin/rm -f Makefile 76 @$(TOP)/util/point.sh Makefile.ssl Makefile
74 $(TOP)/util/point.sh Makefile.ssl Makefile ; 77 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
75 $(TOP)/util/point.sh ../../doc/rc5.doc rc5.doc ; 78 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
76 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 79 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
77 $(TOP)/util/mklink.sh ../../test $(TEST)
78 $(TOP)/util/mklink.sh ../../apps $(APPS)
79 80
80install: 81install:
81 @for i in $(EXHEADER) ; \ 82 @for i in $(EXHEADER) ; \
82 do \ 83 do \
83 (cp $$i $(INSTALLTOP)/include/$$i; \ 84 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
84 chmod 644 $(INSTALLTOP)/include/$$i ); \ 85 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
85 done; 86 done;
86 87
87tags: 88tags:
@@ -93,15 +94,20 @@ lint:
93 lint -DLINT $(INCLUDES) $(SRC)>fluff 94 lint -DLINT $(INCLUDES) $(SRC)>fluff
94 95
95depend: 96depend:
96 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 97 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
97 98
98dclean: 99dclean:
99 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 100 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
100 mv -f Makefile.new $(MAKEFILE) 101 mv -f Makefile.new $(MAKEFILE)
101 102
102clean: 103clean:
103 /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 104 rm -f asm/r586unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
104
105errors:
106 105
107# DO NOT DELETE THIS LINE -- make depend depends on it. 106# DO NOT DELETE THIS LINE -- make depend depends on it.
107
108rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h
109rc5_ecb.o: rc5_ecb.c rc5_locl.h
110rc5_enc.o: ../../include/openssl/rc5.h rc5_enc.c rc5_locl.h
111rc5_skey.o: ../../include/openssl/rc5.h rc5_locl.h rc5_skey.c
112rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c
113rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c
diff --git a/src/lib/libcrypto/rc5/asm/rc5-586.pl b/src/lib/libcrypto/rc5/asm/rc5-586.pl
index 172bd9ee1b..edff1d1e64 100644
--- a/src/lib/libcrypto/rc5/asm/rc5-586.pl
+++ b/src/lib/libcrypto/rc5/asm/rc5-586.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl 1#!/usr/local/bin/perl
2 2
3push(@INC,"perlasm","../../perlasm"); 3push(@INC,"perlasm","../../perlasm");
4require "x86asm.pl"; 4require "x86asm.pl";
diff --git a/src/lib/libcrypto/ripemd/Makefile.ssl b/src/lib/libcrypto/ripemd/Makefile.ssl
index 67d47ceb2c..eb819e64f5 100644
--- a/src/lib/libcrypto/ripemd/Makefile.ssl
+++ b/src/lib/libcrypto/ripemd/Makefile.ssl
@@ -8,9 +8,12 @@ CC= cc
8CPP= $(CC) -E 8CPP= $(CC) -E
9INCLUDES= 9INCLUDES=
10CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
11INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
12MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
13MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
15AR= ar r 18AR= ar r
16 19
@@ -20,7 +23,7 @@ CFLAGS= $(INCLUDES) $(CFLAG)
20 23
21GENERAL=Makefile 24GENERAL=Makefile
22TEST=rmdtest.c 25TEST=rmdtest.c
23APPS=rmd160.c 26APPS=
24 27
25LIB=$(TOP)/libcrypto.a 28LIB=$(TOP)/libcrypto.a
26LIBSRC=rmd_dgst.c rmd_one.c 29LIBSRC=rmd_dgst.c rmd_one.c
@@ -40,12 +43,12 @@ all: lib
40 43
41lib: $(LIBOBJ) 44lib: $(LIBOBJ)
42 $(AR) $(LIB) $(LIBOBJ) 45 $(AR) $(LIB) $(LIBOBJ)
43 sh $(TOP)/util/ranlib.sh $(LIB) 46 $(RANLIB) $(LIB) || echo Never mind.
44 @touch lib 47 @touch lib
45 48
46# elf 49# elf
47asm/rm86-elf.o: asm/rm86unix.cpp 50asm/rm86-elf.o: asm/rm86unix.cpp
48 $(CPP) -DELF asm/rm86unix.cpp | as -o asm/rm86-elf.o 51 $(CPP) -DELF -x c asm/rm86unix.cpp | as -o asm/rm86-elf.o
49 52
50# solaris 53# solaris
51asm/rm86-sol.o: asm/rm86unix.cpp 54asm/rm86-sol.o: asm/rm86unix.cpp
@@ -59,26 +62,25 @@ asm/rm86-out.o: asm/rm86unix.cpp
59 62
60# bsdi 63# bsdi
61asm/rm86bsdi.o: asm/rm86unix.cpp 64asm/rm86bsdi.o: asm/rm86unix.cpp
62 $(CPP) -DBSDI asm/rm86unix.cpp | as -o asm/rm86bsdi.o 65 $(CPP) -DBSDI asm/rm86unix.cpp | sed 's/ :/:/' | as -o asm/rm86bsdi.o
63 66
64asm/rm86unix.cpp: 67asm/rm86unix.cpp: asm/rmd-586.pl ../perlasm/x86asm.pl
65 (cd asm; perl rmd-586.pl cpp >rm86unix.cpp) 68 (cd asm; $(PERL) rmd-586.pl cpp >rm86unix.cpp)
66 69
67files: 70files:
68 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 71 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
69 72
70links: 73links:
71 /bin/rm -f Makefile 74 @$(TOP)/util/point.sh Makefile.ssl Makefile
72 $(TOP)/util/point.sh Makefile.ssl Makefile ; 75 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
73 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 76 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
74 $(TOP)/util/mklink.sh ../../test $(TEST) 77 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
75 $(TOP)/util/mklink.sh ../../apps $(APPS)
76 78
77install: 79install:
78 @for i in $(EXHEADER) ; \ 80 @for i in $(EXHEADER) ; \
79 do \ 81 do \
80 (cp $$i $(INSTALLTOP)/include/$$i; \ 82 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
81 chmod 644 $(INSTALLTOP)/include/$$i ); \ 83 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
82 done; 84 done;
83 85
84tags: 86tags:
@@ -90,15 +92,19 @@ lint:
90 lint -DLINT $(INCLUDES) $(SRC)>fluff 92 lint -DLINT $(INCLUDES) $(SRC)>fluff
91 93
92depend: 94depend:
93 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 95 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
94 96
95dclean: 97dclean:
96 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 98 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
97 mv -f Makefile.new $(MAKEFILE) 99 mv -f Makefile.new $(MAKEFILE)
98 100
99clean: 101clean:
100 /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 102 rm -f asm/rm86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
101
102errors:
103 103
104# DO NOT DELETE THIS LINE -- make depend depends on it. 104# DO NOT DELETE THIS LINE -- make depend depends on it.
105
106rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
107rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h
108rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h
109rmd_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
110rmd_one.o: ../../include/openssl/ripemd.h rmd_one.c
diff --git a/src/lib/libcrypto/rsa/Makefile.ssl b/src/lib/libcrypto/rsa/Makefile.ssl
index d52f2e609e..f1e93c2fa3 100644
--- a/src/lib/libcrypto/rsa/Makefile.ssl
+++ b/src/lib/libcrypto/rsa/Makefile.ssl
@@ -5,27 +5,30 @@
5DIR= rsa 5DIR= rsa
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=rsa
19ERRC=rsa_err
20GENERAL=Makefile 21GENERAL=Makefile
21TEST= 22TEST=rsa_test.c
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c $(ERRC).c \ 26LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \
26 rsa_pk1.c rsa_ssl.c rsa_none.c 27 rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \
27LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o $(ERRC).o \ 28 rsa_asn1.c
28 rsa_pk1.o rsa_ssl.o rsa_none.o 29LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \
30 rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \
31 rsa_asn1.o
29 32
30SRC= $(LIBSRC) 33SRC= $(LIBSRC)
31 34
@@ -41,24 +44,23 @@ all: lib
41 44
42lib: $(LIBOBJ) 45lib: $(LIBOBJ)
43 $(AR) $(LIB) $(LIBOBJ) 46 $(AR) $(LIB) $(LIBOBJ)
44 sh $(TOP)/util/ranlib.sh $(LIB) 47 $(RANLIB) $(LIB) || echo Never mind.
45 @touch lib 48 @touch lib
46 49
47files: 50files:
48 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 51 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
49 52
50links: 53links:
51 /bin/rm -f Makefile 54 @$(TOP)/util/point.sh Makefile.ssl Makefile
52 $(TOP)/util/point.sh Makefile.ssl Makefile ; 55 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
53 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 56 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
54 $(TOP)/util/mklink.sh ../../test $(TEST) 57 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
55 $(TOP)/util/mklink.sh ../../apps $(APPS)
56 58
57install: 59install:
58 @for i in $(EXHEADER) ; \ 60 @for i in $(EXHEADER) ; \
59 do \ 61 do \
60 (cp $$i $(INSTALLTOP)/include/$$i; \ 62 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
61 chmod 644 $(INSTALLTOP)/include/$$i ); \ 63 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
62 done; 64 done;
63 65
64tags: 66tags:
@@ -70,17 +72,148 @@ lint:
70 lint -DLINT $(INCLUDES) $(SRC)>fluff 72 lint -DLINT $(INCLUDES) $(SRC)>fluff
71 73
72depend: 74depend:
73 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 75 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
74 76
75dclean: 77dclean:
76 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 78 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
77 mv -f Makefile.new $(MAKEFILE) 79 mv -f Makefile.new $(MAKEFILE)
78 80
79clean: 81clean:
80 /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 82 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
81
82errors:
83 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
84 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
85 83
86# DO NOT DELETE THIS LINE -- make depend depends on it. 84# DO NOT DELETE THIS LINE -- make depend depends on it.
85
86rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
87rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
88rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
89rsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
90rsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
91rsa_asn1.o: ../../include/openssl/opensslconf.h
92rsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
93rsa_asn1.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
94rsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
95rsa_asn1.o: ../cryptlib.h rsa_asn1.c
96rsa_chk.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
97rsa_chk.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
98rsa_chk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
99rsa_chk.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
100rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
101rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
102rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
103rsa_chk.o: rsa_chk.c
104rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h
105rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
106rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
107rsa_eay.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
108rsa_eay.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
109rsa_eay.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
110rsa_eay.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
111rsa_eay.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
112rsa_eay.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
113rsa_eay.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
114rsa_eay.o: ../../include/openssl/ui.h ../cryptlib.h rsa_eay.c
115rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
116rsa_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
117rsa_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
118rsa_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
119rsa_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
120rsa_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
121rsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
122rsa_err.o: rsa_err.c
123rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h
124rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
125rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
126rsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
127rsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
128rsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
129rsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
130rsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
131rsa_gen.o: ../cryptlib.h rsa_gen.c
132rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h
133rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
134rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
135rsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
136rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
137rsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
138rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
139rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
140rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
141rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
142rsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h rsa_lib.c
143rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h
144rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
145rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
146rsa_none.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
147rsa_none.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
148rsa_none.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
149rsa_none.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
150rsa_none.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
151rsa_none.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_none.c
152rsa_null.o: ../../e_os.h ../../include/openssl/asn1.h
153rsa_null.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
154rsa_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
155rsa_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
156rsa_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
157rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
158rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
159rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
160rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c
161rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h
162rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
163rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
164rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
165rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
166rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
167rsa_oaep.o: ../../include/openssl/opensslconf.h
168rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
169rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
170rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
171rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
172rsa_oaep.o: ../cryptlib.h rsa_oaep.c
173rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h
174rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
175rsa_pk1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
176rsa_pk1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
177rsa_pk1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
178rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
179rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
180rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
181rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c
182rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h
183rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
184rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
185rsa_saos.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
186rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
187rsa_saos.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
188rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
189rsa_saos.o: ../../include/openssl/opensslconf.h
190rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
191rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
192rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
193rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
194rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
195rsa_saos.o: ../cryptlib.h rsa_saos.c
196rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h
197rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
198rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
199rsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
200rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
201rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
202rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
203rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
204rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
205rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
206rsa_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
207rsa_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
208rsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
209rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
210rsa_sign.o: ../cryptlib.h rsa_sign.c
211rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h
212rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
213rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
214rsa_ssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
215rsa_ssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
216rsa_ssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
217rsa_ssl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
218rsa_ssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
219rsa_ssl.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_ssl.c
diff --git a/src/lib/libcrypto/sha/Makefile.ssl b/src/lib/libcrypto/sha/Makefile.ssl
index eeb545d140..51ba7811c4 100644
--- a/src/lib/libcrypto/sha/Makefile.ssl
+++ b/src/lib/libcrypto/sha/Makefile.ssl
@@ -5,11 +5,15 @@
5DIR= sha 5DIR= sha
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8CPP= $(CC) -E
8INCLUDES= 9INCLUDES=
9CFLAG=-g 10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 13INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 14MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 17MAKEFILE= Makefile.ssl
14AR= ar r 18AR= ar r
15 19
@@ -39,12 +43,12 @@ all: lib
39 43
40lib: $(LIBOBJ) 44lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ) 45 $(AR) $(LIB) $(LIBOBJ)
42 sh $(TOP)/util/ranlib.sh $(LIB) 46 $(RANLIB) $(LIB) || echo Never mind.
43 @touch lib 47 @touch lib
44 48
45# elf 49# elf
46asm/sx86-elf.o: asm/sx86unix.cpp 50asm/sx86-elf.o: asm/sx86unix.cpp
47 $(CPP) -DELF asm/sx86unix.cpp | as -o asm/sx86-elf.o 51 $(CPP) -DELF -x c asm/sx86unix.cpp | as -o asm/sx86-elf.o
48 52
49# solaris 53# solaris
50asm/sx86-sol.o: asm/sx86unix.cpp 54asm/sx86-sol.o: asm/sx86unix.cpp
@@ -58,26 +62,25 @@ asm/sx86-out.o: asm/sx86unix.cpp
58 62
59# bsdi 63# bsdi
60asm/sx86bsdi.o: asm/sx86unix.cpp 64asm/sx86bsdi.o: asm/sx86unix.cpp
61 $(CPP) -DBSDI asm/sx86unix.cpp | as -o asm/sx86bsdi.o 65 $(CPP) -DBSDI asm/sx86unix.cpp | sed 's/ :/:/' | as -o asm/sx86bsdi.o
62 66
63asm/sx86unix.cpp: 67asm/sx86unix.cpp: asm/sha1-586.pl ../perlasm/x86asm.pl
64 (cd asm; perl sha1-586.pl cpp >sx86unix.cpp) 68 (cd asm; $(PERL) sha1-586.pl cpp $(PROCESSOR) >sx86unix.cpp)
65 69
66files: 70files:
67 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 71 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
68 72
69links: 73links:
70 /bin/rm -f Makefile 74 @$(TOP)/util/point.sh Makefile.ssl Makefile
71 $(TOP)/util/point.sh Makefile.ssl Makefile ; 75 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
72 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 76 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
73 $(TOP)/util/mklink.sh ../../test $(TEST) 77 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
74 $(TOP)/util/mklink.sh ../../apps $(APPS)
75 78
76install: 79install:
77 @for i in $(EXHEADER) ; \ 80 @for i in $(EXHEADER) ; \
78 do \ 81 do \
79 (cp $$i $(INSTALLTOP)/include/$$i; \ 82 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
80 chmod 644 $(INSTALLTOP)/include/$$i ); \ 83 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
81 done; 84 done;
82 85
83tags: 86tags:
@@ -89,15 +92,24 @@ lint:
89 lint -DLINT $(INCLUDES) $(SRC)>fluff 92 lint -DLINT $(INCLUDES) $(SRC)>fluff
90 93
91depend: 94depend:
92 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 95 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
93 96
94dclean: 97dclean:
95 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 98 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
96 mv -f Makefile.new $(MAKEFILE) 99 mv -f Makefile.new $(MAKEFILE)
97 100
98clean: 101clean:
99 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o 102 rm -f asm/sx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o
100
101errors:
102 103
103# DO NOT DELETE THIS LINE -- make depend depends on it. 104# DO NOT DELETE THIS LINE -- make depend depends on it.
105
106sha1_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
107sha1_one.o: ../../include/openssl/sha.h sha1_one.c
108sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
109sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h
110sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h
111sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
112sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h
113sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h
114sha_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
115sha_one.o: ../../include/openssl/sha.h sha_one.c
diff --git a/src/lib/libcrypto/stack/Makefile.ssl b/src/lib/libcrypto/stack/Makefile.ssl
index 0d232c08cf..16219af9a9 100644
--- a/src/lib/libcrypto/stack/Makefile.ssl
+++ b/src/lib/libcrypto/stack/Makefile.ssl
@@ -7,9 +7,12 @@ TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -25,7 +28,7 @@ LIBOBJ=stack.o
25 28
26SRC= $(LIBSRC) 29SRC= $(LIBSRC)
27 30
28EXHEADER= stack.h 31EXHEADER= stack.h safestack.h
29HEADER= $(EXHEADER) 32HEADER= $(EXHEADER)
30 33
31ALL= $(GENERAL) $(SRC) $(HEADER) 34ALL= $(GENERAL) $(SRC) $(HEADER)
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,21 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82stack.o: ../../e_os.h ../../include/openssl/bio.h
83stack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
84stack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
85stack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
86stack.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
87stack.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
88stack.o: ../cryptlib.h stack.c
diff --git a/src/lib/libcrypto/txt_db/Makefile.ssl b/src/lib/libcrypto/txt_db/Makefile.ssl
index 76e511534f..f681065da3 100644
--- a/src/lib/libcrypto/txt_db/Makefile.ssl
+++ b/src/lib/libcrypto/txt_db/Makefile.ssl
@@ -7,9 +7,12 @@ TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= 8INCLUDES=
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
@@ -37,24 +40,23 @@ all: lib
37 40
38lib: $(LIBOBJ) 41lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ) 42 $(AR) $(LIB) $(LIBOBJ)
40 sh $(TOP)/util/ranlib.sh $(LIB) 43 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib 44 @touch lib
42 45
43files: 46files:
44 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 47 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
45 48
46links: 49links:
47 /bin/rm -f Makefile 50 @$(TOP)/util/point.sh Makefile.ssl Makefile
48 $(TOP)/util/point.sh Makefile.ssl Makefile ; 51 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 52 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
50 $(TOP)/util/mklink.sh ../../test $(TEST) 53 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
51 $(TOP)/util/mklink.sh ../../apps $(APPS)
52 54
53install: 55install:
54 @for i in $(EXHEADER) ; \ 56 @for i in $(EXHEADER) ; \
55 do \ 57 do \
56 (cp $$i $(INSTALLTOP)/include/$$i; \ 58 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57 chmod 644 $(INSTALLTOP)/include/$$i ); \ 59 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58 done; 60 done;
59 61
60tags: 62tags:
@@ -66,15 +68,21 @@ lint:
66 lint -DLINT $(INCLUDES) $(SRC)>fluff 68 lint -DLINT $(INCLUDES) $(SRC)>fluff
67 69
68depend: 70depend:
69 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 71 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
70 72
71dclean: 73dclean:
72 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 74 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
73 mv -f Makefile.new $(MAKEFILE) 75 mv -f Makefile.new $(MAKEFILE)
74 76
75clean: 77clean:
76 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 78 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
77
78errors:
79 79
80# DO NOT DELETE THIS LINE -- make depend depends on it. 80# DO NOT DELETE THIS LINE -- make depend depends on it.
81
82txt_db.o: ../../e_os.h ../../include/openssl/bio.h
83txt_db.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
84txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
85txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
86txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
87txt_db.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
88txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h txt_db.c
diff --git a/src/lib/libcrypto/util/pl/Mingw32f.pl b/src/lib/libcrypto/util/pl/Mingw32f.pl
index a53c537646..44f5673d7a 100644
--- a/src/lib/libcrypto/util/pl/Mingw32f.pl
+++ b/src/lib/libcrypto/util/pl/Mingw32f.pl
@@ -11,9 +11,9 @@ $rm='del';
11 11
12$cc='gcc'; 12$cc='gcc';
13if ($debug) 13if ($debug)
14 { $cflags="-g2 -ggdb"; } 14 { $cflags="-g2 -ggdb -DDSO_WIN32"; }
15else 15else
16 { $cflags="-O3 -fomit-frame-pointer"; } 16 { $cflags="-O3 -fomit-frame-pointer -DDSO_WIN32"; }
17 17
18$obj='.o'; 18$obj='.o';
19$ofile='-o '; 19$ofile='-o ';
diff --git a/src/lib/libcrypto/x509/Makefile.ssl b/src/lib/libcrypto/x509/Makefile.ssl
index 1c1ca2ffa0..3063f448c0 100644
--- a/src/lib/libcrypto/x509/Makefile.ssl
+++ b/src/lib/libcrypto/x509/Makefile.ssl
@@ -5,37 +5,36 @@
5DIR= x509 5DIR= x509
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=x509
19ERRC=x509_err
20GENERAL=Makefile README 21GENERAL=Makefile README
21TEST= 22TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ 26LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \
26 x509_obj.c x509_req.c x509_vfy.c \ 27 x509_obj.c x509_req.c x509spki.c x509_vfy.c \
27 x509_set.c x509rset.c $(ERRC).c \ 28 x509_set.c x509cset.c x509rset.c x509_err.c \
28 x509name.c x509_v3.c x509_ext.c x509pack.c \ 29 x509name.c x509_v3.c x509_ext.c x509_att.c \
29 x509type.c x509_lu.c x_all.c x509_txt.c \ 30 x509type.c x509_lu.c x_all.c x509_txt.c \
30 by_file.c by_dir.c \ 31 x509_trs.c by_file.c by_dir.c
31 v3_net.c v3_x509.c
32LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ 32LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \
33 x509_obj.o x509_req.o x509_vfy.o \ 33 x509_obj.o x509_req.o x509spki.o x509_vfy.o \
34 x509_set.o x509rset.o $(ERRC).o \ 34 x509_set.o x509cset.o x509rset.o x509_err.o \
35 x509name.o x509_v3.o x509_ext.o x509pack.o \ 35 x509name.o x509_v3.o x509_ext.o x509_att.o \
36 x509type.o x509_lu.o x_all.o x509_txt.o \ 36 x509type.o x509_lu.o x_all.o x509_txt.o \
37 by_file.o by_dir.o \ 37 x509_trs.o by_file.o by_dir.o
38 v3_net.o v3_x509.o
39 38
40SRC= $(LIBSRC) 39SRC= $(LIBSRC)
41 40
@@ -51,24 +50,23 @@ all: lib
51 50
52lib: $(LIBOBJ) 51lib: $(LIBOBJ)
53 $(AR) $(LIB) $(LIBOBJ) 52 $(AR) $(LIB) $(LIBOBJ)
54 sh $(TOP)/util/ranlib.sh $(LIB) 53 $(RANLIB) $(LIB) || echo Never mind.
55 @touch lib 54 @touch lib
56 55
57files: 56files:
58 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 57 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
59 58
60links: 59links:
61 /bin/rm -f Makefile 60 @$(TOP)/util/point.sh Makefile.ssl Makefile
62 $(TOP)/util/point.sh Makefile.ssl Makefile ; 61 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
63 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 62 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
64 $(TOP)/util/mklink.sh ../../test $(TEST) 63 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
65 $(TOP)/util/mklink.sh ../../apps $(APPS)
66 64
67install: 65install:
68 @for i in $(EXHEADER) ; \ 66 @for i in $(EXHEADER) ; \
69 do \ 67 do \
70 (cp $$i $(INSTALLTOP)/include/$$i; \ 68 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
71 chmod 644 $(INSTALLTOP)/include/$$i ); \ 69 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
72 done; 70 done;
73 71
74tags: 72tags:
@@ -80,17 +78,333 @@ lint:
80 lint -DLINT $(INCLUDES) $(SRC)>fluff 78 lint -DLINT $(INCLUDES) $(SRC)>fluff
81 79
82depend: 80depend:
83 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 81 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
84 82
85dclean: 83dclean:
86 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 84 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
87 mv -f Makefile.new $(MAKEFILE) 85 mv -f Makefile.new $(MAKEFILE)
88 86
89clean: 87clean:
90 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 88 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
91
92errors:
93 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
94 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
95 89
96# DO NOT DELETE THIS LINE -- make depend depends on it. 90# DO NOT DELETE THIS LINE -- make depend depends on it.
91
92by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
93by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
94by_dir.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
95by_dir.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
96by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h
97by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
98by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
99by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
100by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
101by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
102by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
103by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
104by_dir.o: ../cryptlib.h by_dir.c
105by_file.o: ../../e_os.h ../../include/openssl/asn1.h
106by_file.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
107by_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
108by_file.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
109by_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
110by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
111by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
112by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
113by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
114by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
115by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
116by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
117by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
118by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c
119x509_att.o: ../../e_os.h ../../include/openssl/asn1.h
120x509_att.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
121x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
122x509_att.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
123x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
124x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h
125x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
126x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
127x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
128x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
129x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
130x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
131x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
132x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c
133x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h
134x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
135x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
136x509_cmp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
137x509_cmp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
138x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
139x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
140x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
141x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
142x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
143x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
144x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
145x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
146x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c
147x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h
148x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
149x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
150x509_d2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
151x509_d2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
152x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
153x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
154x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
155x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
156x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
157x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
158x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
159x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c
160x509_def.o: ../../e_os.h ../../include/openssl/asn1.h
161x509_def.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
162x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
163x509_def.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
164x509_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
165x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
166x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
167x509_def.o: ../../include/openssl/opensslconf.h
168x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
169x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
170x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
171x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
172x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
173x509_def.o: ../cryptlib.h x509_def.c
174x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
175x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
176x509_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
177x509_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
178x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
179x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
180x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
181x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
182x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
183x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
184x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
185x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
186x509_err.o: x509_err.c
187x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h
188x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
189x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
190x509_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
191x509_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
192x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
193x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
194x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
195x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
196x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
197x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
198x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
199x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
200x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c
201x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h
202x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
203x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
204x509_lu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
205x509_lu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
206x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
207x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
208x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
209x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
210x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
211x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
212x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
213x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
214x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c
215x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h
216x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
217x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
218x509_obj.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
219x509_obj.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
220x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
221x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
222x509_obj.o: ../../include/openssl/opensslconf.h
223x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
224x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
225x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
226x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
227x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
228x509_obj.o: ../cryptlib.h x509_obj.c
229x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h
230x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
231x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
232x509_r2x.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
233x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
234x509_r2x.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
235x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
236x509_r2x.o: ../../include/openssl/opensslconf.h
237x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
238x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
239x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
240x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
241x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
242x509_r2x.o: ../cryptlib.h x509_r2x.c
243x509_req.o: ../../e_os.h ../../include/openssl/asn1.h
244x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
245x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
246x509_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
247x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
248x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
249x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
250x509_req.o: ../../include/openssl/opensslconf.h
251x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
252x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
253x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
254x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
255x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
256x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
257x509_req.o: ../cryptlib.h x509_req.c
258x509_set.o: ../../e_os.h ../../include/openssl/asn1.h
259x509_set.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
260x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
261x509_set.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
262x509_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
263x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
264x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
265x509_set.o: ../../include/openssl/opensslconf.h
266x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
267x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
268x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
269x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
270x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
271x509_set.o: ../cryptlib.h x509_set.c
272x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h
273x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
274x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
275x509_trs.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
276x509_trs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
277x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h
278x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
279x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
280x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
281x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
282x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
283x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
284x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
285x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c
286x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h
287x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
288x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
289x509_txt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
290x509_txt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
291x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
292x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
293x509_txt.o: ../../include/openssl/opensslconf.h
294x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
295x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
296x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
297x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
298x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
299x509_txt.o: ../cryptlib.h x509_txt.c
300x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h
301x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
302x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
303x509_v3.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
304x509_v3.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
305x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h
306x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
307x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
308x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
309x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
310x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
311x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
312x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
313x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c
314x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h
315x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
316x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
317x509_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
318x509_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
319x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h
320x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
321x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
322x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
323x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
324x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
325x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
326x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
327x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c
328x509cset.o: ../../e_os.h ../../include/openssl/asn1.h
329x509cset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
330x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
331x509cset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
332x509cset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
333x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
334x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
335x509cset.o: ../../include/openssl/opensslconf.h
336x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
337x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
338x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
339x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
340x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
341x509cset.o: ../cryptlib.h x509cset.c
342x509name.o: ../../e_os.h ../../include/openssl/asn1.h
343x509name.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
344x509name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
345x509name.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
346x509name.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
347x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
348x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
349x509name.o: ../../include/openssl/opensslconf.h
350x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
351x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
352x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
353x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
354x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
355x509name.o: ../cryptlib.h x509name.c
356x509rset.o: ../../e_os.h ../../include/openssl/asn1.h
357x509rset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
358x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
359x509rset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
360x509rset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
361x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
362x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
363x509rset.o: ../../include/openssl/opensslconf.h
364x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
365x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
366x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
367x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
368x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
369x509rset.o: ../cryptlib.h x509rset.c
370x509spki.o: ../../e_os.h ../../include/openssl/asn1.h
371x509spki.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
372x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
373x509spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
374x509spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
375x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
376x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
377x509spki.o: ../../include/openssl/opensslconf.h
378x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
379x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
380x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
381x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
382x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
383x509spki.o: ../cryptlib.h x509spki.c
384x509type.o: ../../e_os.h ../../include/openssl/asn1.h
385x509type.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
386x509type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
387x509type.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
388x509type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
389x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
390x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
391x509type.o: ../../include/openssl/opensslconf.h
392x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
393x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
394x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
395x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
396x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
397x509type.o: ../cryptlib.h x509type.c
398x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
399x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
400x_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
401x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
402x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
403x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
404x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
405x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
406x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
407x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
408x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
409x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
410x_all.o: ../cryptlib.h x_all.c
diff --git a/src/lib/libcrypto/x509v3/Makefile.ssl b/src/lib/libcrypto/x509v3/Makefile.ssl
index 57006e6875..da7c859476 100644
--- a/src/lib/libcrypto/x509v3/Makefile.ssl
+++ b/src/lib/libcrypto/x509v3/Makefile.ssl
@@ -5,13 +5,14 @@
5DIR= x509v3 5DIR= x509v3
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX= 10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl 11OPENSSLDIR= /usr/local/ssl
12INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
14MAKEDEPEND= $(TOP)/util/domd $(TOP) 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
16AR= ar r 17AR= ar r
17 18
@@ -22,12 +23,14 @@ TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c \ 26LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_lib.c \
26v3_lib.c v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c \ 27v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c v3_pku.c \
27v3_pku.c v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c 28v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c v3_purp.c v3_info.c \
29v3_ocsp.c v3_akeya.c
28LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ 30LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \
29v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ 31v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \
30v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o 32v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o v3_purp.o v3_info.o \
33v3_ocsp.o v3_akeya.o
31 34
32SRC= $(LIBSRC) 35SRC= $(LIBSRC)
33 36
@@ -43,7 +46,7 @@ all: lib
43 46
44lib: $(LIBOBJ) 47lib: $(LIBOBJ)
45 $(AR) $(LIB) $(LIBOBJ) 48 $(AR) $(LIB) $(LIBOBJ)
46 $(RANLIB) $(LIB) 49 $(RANLIB) $(LIB) || echo Never mind.
47 @touch lib 50 @touch lib
48 51
49files: 52files:
@@ -82,351 +85,336 @@ clean:
82 85
83# DO NOT DELETE THIS LINE -- make depend depends on it. 86# DO NOT DELETE THIS LINE -- make depend depends on it.
84 87
85v3_akey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 88v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h
86v3_akey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h 89v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
87v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 90v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
88v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h 91v3_akey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
89v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
90v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 92v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
91v3_akey.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 93v3_akey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
92v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h 94v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
93v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 95v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
94v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
95v3_akey.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
96v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 96v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
97v3_akey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 97v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
98v3_akey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 98v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
99v3_akey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 99v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
100v3_akey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 100v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
101v3_akey.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
102v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h 101v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
103v3_akey.o: ../cryptlib.h 102v3_akey.o: ../cryptlib.h v3_akey.c
104v3_alt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 103v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h
105v3_alt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 104v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
106v3_alt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 105v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
106v3_akeya.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
107v3_akeya.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
108v3_akeya.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
109v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
110v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
111v3_akeya.o: ../../include/openssl/opensslconf.h
112v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
113v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
114v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
115v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
116v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
117v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c
118v3_alt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
119v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
107v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 120v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
108v3_alt.o: ../../include/openssl/des.h ../../include/openssl/dh.h 121v3_alt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
109v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
110v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 122v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
111v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 123v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
112v3_alt.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 124v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
113v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 125v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
114v3_alt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 126v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
115v3_alt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
116v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
117v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
118v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 127v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
119v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 128v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
120v3_alt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 129v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
121v3_alt.o: ../../include/openssl/x509v3.h ../cryptlib.h 130v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
122v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 131v3_alt.o: ../cryptlib.h v3_alt.c
123v3_bcons.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h 132v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h
133v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
124v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 134v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
125v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h 135v3_bcons.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
126v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
127v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 136v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
128v3_bcons.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 137v3_bcons.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
129v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h 138v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
130v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 139v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
131v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
132v3_bcons.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
133v3_bcons.o: ../../include/openssl/opensslconf.h 140v3_bcons.o: ../../include/openssl/opensslconf.h
134v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h 141v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
135v3_bcons.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 142v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
136v3_bcons.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 143v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
137v3_bcons.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 144v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
138v3_bcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
139v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 145v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
140v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h 146v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c
141v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 147v3_bitst.o: ../../e_os.h ../../include/openssl/asn1.h
142v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 148v3_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
143v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 149v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
144v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 150v3_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
145v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/dh.h 151v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
146v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h 152v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h
147v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 153v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
148v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
149v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
150v3_bitst.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
151v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 154v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
152v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h 155v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
153v3_bitst.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 156v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
154v3_bitst.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 157v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
155v3_bitst.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 158v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
156v3_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
157v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 159v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
158v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h 160v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c
159v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 161v3_conf.o: ../../e_os.h ../../include/openssl/asn1.h
160v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 162v3_conf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
161v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 163v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
162v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 164v3_conf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
163v3_conf.o: ../../include/openssl/des.h ../../include/openssl/dh.h 165v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
164v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h 166v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h
165v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 167v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
166v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
167v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
168v3_conf.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
169v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 168v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
170v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h 169v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
171v3_conf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 170v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
172v3_conf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 171v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
173v3_conf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 172v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
174v3_conf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
175v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 173v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
176v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h 174v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c
177v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 175v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h
178v3_cpols.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h 176v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
179v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 177v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
180v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h 178v3_cpols.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
181v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
182v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 179v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
183v3_cpols.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 180v3_cpols.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
184v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h 181v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
185v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 182v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
186v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
187v3_cpols.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
188v3_cpols.o: ../../include/openssl/opensslconf.h 183v3_cpols.o: ../../include/openssl/opensslconf.h
189v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h 184v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
190v3_cpols.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 185v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
191v3_cpols.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 186v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
192v3_cpols.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 187v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
193v3_cpols.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
194v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 188v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
195v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h 189v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c
196v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 190v3_crld.o: ../../e_os.h ../../include/openssl/asn1.h
197v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h 191v3_crld.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
198v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 192v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
199v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h 193v3_crld.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
200v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
201v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 194v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
202v3_crld.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 195v3_crld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
203v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h 196v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
204v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 197v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
205v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
206v3_crld.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
207v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 198v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
208v3_crld.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 199v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
209v3_crld.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 200v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
210v3_crld.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 201v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
211v3_crld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 202v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
212v3_crld.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
213v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h 203v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
214v3_crld.o: ../cryptlib.h 204v3_crld.o: ../cryptlib.h v3_crld.c
215v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 205v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h
216v3_enum.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 206v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
217v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 207v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
218v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 208v3_enum.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
219v3_enum.o: ../../include/openssl/des.h ../../include/openssl/dh.h 209v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
220v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h 210v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h
221v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 211v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
222v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
223v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
224v3_enum.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
225v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 212v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
226v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h 213v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
227v3_enum.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 214v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
228v3_enum.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 215v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
229v3_enum.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 216v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
230v3_enum.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
231v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 217v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
232v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h 218v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c
233v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 219v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h
234v3_extku.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 220v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
235v3_extku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 221v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
236v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 222v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
237v3_extku.o: ../../include/openssl/des.h ../../include/openssl/dh.h 223v3_extku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
238v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
239v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 224v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
240v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 225v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
241v3_extku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 226v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
242v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 227v3_extku.o: ../../include/openssl/opensslconf.h
243v3_extku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 228v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
244v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h 229v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
245v3_extku.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 230v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
246v3_extku.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 231v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
247v3_extku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
248v3_extku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
249v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 232v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
250v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h 233v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c
251v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 234v3_genn.o: ../../e_os.h ../../include/openssl/asn1.h
252v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h 235v3_genn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
253v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 236v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
254v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h 237v3_genn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
255v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
256v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 238v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
257v3_genn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 239v3_genn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
258v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h 240v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
259v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 241v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
260v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
261v3_genn.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
262v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 242v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
263v3_genn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 243v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
264v3_genn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 244v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
265v3_genn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 245v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
266v3_genn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 246v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
267v3_genn.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
268v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h 247v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
269v3_genn.o: ../cryptlib.h 248v3_genn.o: ../cryptlib.h v3_genn.c
270v3_ia5.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 249v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
271v3_ia5.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 250v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
272v3_ia5.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
273v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 251v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
274v3_ia5.o: ../../include/openssl/des.h ../../include/openssl/dh.h 252v3_ia5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
275v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
276v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 253v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
277v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 254v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
278v3_ia5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 255v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
279v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 256v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
280v3_ia5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 257v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
281v3_ia5.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
282v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
283v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
284v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 258v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
285v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 259v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
286v3_ia5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 260v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
287v3_ia5.o: ../../include/openssl/x509v3.h ../cryptlib.h 261v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
288v3_int.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 262v3_ia5.o: ../cryptlib.h v3_ia5.c
289v3_int.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 263v3_info.o: ../../e_os.h ../../include/openssl/asn1.h
290v3_int.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 264v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
265v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
266v3_info.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
267v3_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
268v3_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
269v3_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
270v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
271v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
272v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
273v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
274v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
275v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
276v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
277v3_info.o: ../cryptlib.h v3_info.c
278v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
279v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
291v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 280v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
292v3_int.o: ../../include/openssl/des.h ../../include/openssl/dh.h 281v3_int.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
293v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
294v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 282v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
295v3_int.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 283v3_int.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
296v3_int.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 284v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
297v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 285v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
298v3_int.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 286v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
299v3_int.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
300v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
301v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
302v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 287v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
303v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 288v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
304v3_int.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 289v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
305v3_int.o: ../../include/openssl/x509v3.h ../cryptlib.h 290v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
306v3_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 291v3_int.o: ../cryptlib.h v3_int.c
307v3_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 292v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
308v3_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 293v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
309v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 294v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
310v3_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h 295v3_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
311v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
312v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 296v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
313v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 297v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
314v3_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 298v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
315v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 299v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
316v3_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 300v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
317v3_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
318v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
319v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
320v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 301v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
321v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 302v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
322v3_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 303v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
323v3_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h 304v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
324v3_pku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 305v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c
325v3_pku.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h 306v3_ocsp.o: ../../e_os.h ../../include/openssl/asn1.h
307v3_ocsp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
308v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
309v3_ocsp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
310v3_ocsp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
311v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
312v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
313v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
314v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
315v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
316v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
317v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
318v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
319v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
320v3_ocsp.o: ../cryptlib.h v3_ocsp.c
321v3_pku.o: ../../e_os.h ../../include/openssl/asn1.h
322v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
326v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 323v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
327v3_pku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h 324v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
328v3_pku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
329v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 325v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
330v3_pku.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 326v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
331v3_pku.o: ../../include/openssl/err.h ../../include/openssl/evp.h 327v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
332v3_pku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 328v3_pku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
333v3_pku.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
334v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
335v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 329v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
336v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h 330v3_pku.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
337v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h 331v3_pku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
338v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h 332v3_pku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
339v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h 333v3_pku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
340v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
341v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h 334v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
342v3_pku.o: ../cryptlib.h 335v3_pku.o: ../cryptlib.h v3_pku.c
343v3_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 336v3_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
344v3_prn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 337v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
345v3_prn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
346v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 338v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
347v3_prn.o: ../../include/openssl/des.h ../../include/openssl/dh.h 339v3_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
348v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
349v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 340v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
350v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 341v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
351v3_prn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 342v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
352v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 343v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
353v3_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 344v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
354v3_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
355v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
356v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
357v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 345v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
358v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 346v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
359v3_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 347v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
360v3_prn.o: ../../include/openssl/x509v3.h ../cryptlib.h 348v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
361v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 349v3_prn.o: ../cryptlib.h v3_prn.c
362v3_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 350v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h
363v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h 351v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
364v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 352v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
365v3_skey.o: ../../include/openssl/des.h ../../include/openssl/dh.h 353v3_purp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
366v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h 354v3_purp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
367v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 355v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
368v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 356v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
369v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 357v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
370v3_skey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 358v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
359v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
360v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
361v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
362v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
363v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c
364v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h
365v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
366v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
367v3_skey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
368v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
369v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
370v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
371v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 371v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
372v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h 372v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
373v3_skey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 373v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
374v3_skey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 374v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
375v3_skey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 375v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
376v3_skey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
377v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 376v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
378v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h 377v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c
379v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h 378v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h
380v3_sxnet.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h 379v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
381v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 380v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
382v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h 381v3_sxnet.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
383v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
384v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 382v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
385v3_sxnet.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h 383v3_sxnet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
386v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h 384v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
387v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h 385v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
388v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
389v3_sxnet.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
390v3_sxnet.o: ../../include/openssl/opensslconf.h 386v3_sxnet.o: ../../include/openssl/opensslconf.h
391v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h 387v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
392v3_sxnet.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h 388v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
393v3_sxnet.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h 389v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
394v3_sxnet.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 390v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
395v3_sxnet.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
396v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 391v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
397v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h 392v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c
398v3_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 393v3_utl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
399v3_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 394v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
400v3_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
401v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h 395v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
402v3_utl.o: ../../include/openssl/des.h ../../include/openssl/dh.h 396v3_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
403v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
404v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 397v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
405v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 398v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
406v3_utl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 399v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
407v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 400v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
408v3_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 401v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
409v3_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
410v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
411v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
412v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 402v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
413v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 403v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
414v3_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 404v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
415v3_utl.o: ../../include/openssl/x509v3.h ../cryptlib.h 405v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
406v3_utl.o: ../cryptlib.h v3_utl.c
416v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 407v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
417v3err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h 408v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
418v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h 409v3err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
419v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
420v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h 410v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
421v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 411v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
422v3err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h 412v3err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
423v3err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h 413v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
424v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h 414v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
425v3err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 415v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
426v3err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
427v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
428v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
429v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h 416v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
430v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 417v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
431v3err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h 418v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
432v3err.o: ../../include/openssl/x509v3.h 419v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
420v3err.o: v3err.c