diff options
Diffstat (limited to 'src/lib/libcrypto/Makefile.ssl')
-rw-r--r-- | src/lib/libcrypto/Makefile.ssl | 139 |
1 files changed, 75 insertions, 64 deletions
diff --git a/src/lib/libcrypto/Makefile.ssl b/src/lib/libcrypto/Makefile.ssl index 6759b2e4d0..9d1a180571 100644 --- a/src/lib/libcrypto/Makefile.ssl +++ b/src/lib/libcrypto/Makefile.ssl | |||
@@ -5,14 +5,15 @@ | |||
5 | DIR= crypto | 5 | DIR= crypto |
6 | TOP= .. | 6 | TOP= .. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDE= -I. -I../include | 8 | INCLUDE= -I. -I$(TOP) -I../include |
9 | INCLUDES= -I.. -I../../include | 9 | INCLUDES= -I.. -I../.. -I../../include |
10 | CFLAG= -g | 10 | CFLAG= -g |
11 | INSTALL_PREFIX= | 11 | INSTALL_PREFIX= |
12 | OPENSSLDIR= /usr/local/ssl | 12 | OPENSSLDIR= /usr/local/ssl |
13 | INSTALLTOP= /usr/local/ssl | 13 | INSTALLTOP= /usr/local/ssl |
14 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 15 | MAKEDEPPROG= makedepend |
16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
17 | RM= rm -f | 18 | RM= rm -f |
18 | AR= ar r | 19 | AR= ar r |
@@ -27,34 +28,36 @@ LIBS= | |||
27 | 28 | ||
28 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ | 29 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ |
29 | des rc2 rc4 rc5 idea bf cast \ | 30 | des rc2 rc4 rc5 idea bf cast \ |
30 | bn rsa dsa dh dso engine \ | 31 | bn ec rsa dsa dh dso engine aes \ |
31 | buffer bio stack lhash rand err objects \ | 32 | buffer bio stack lhash rand err objects \ |
32 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp | 33 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 |
33 | 34 | ||
34 | GENERAL=Makefile README crypto-lib.com install.com | 35 | GENERAL=Makefile README crypto-lib.com install.com |
35 | 36 | ||
36 | LIB= $(TOP)/libcrypto.a | 37 | LIB= $(TOP)/libcrypto.a |
37 | LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c | 38 | SHARED_LIB= libcrypto$(SHLIB_EXT) |
38 | LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o | 39 | LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c |
40 | LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o | ||
39 | 41 | ||
40 | SRC= $(LIBSRC) | 42 | SRC= $(LIBSRC) |
41 | 43 | ||
42 | EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h | 44 | EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \ |
43 | HEADER= cryptlib.h buildinf.h md32_common.h $(EXHEADER) | 45 | ossl_typ.h |
46 | HEADER= cryptlib.h buildinf.h md32_common.h o_time.h $(EXHEADER) | ||
44 | 47 | ||
45 | ALL= $(GENERAL) $(SRC) $(HEADER) | 48 | ALL= $(GENERAL) $(SRC) $(HEADER) |
46 | 49 | ||
47 | top: | 50 | top: |
48 | @(cd ..; $(MAKE) DIRS=$(DIR) all) | 51 | @(cd ..; $(MAKE) DIRS=$(DIR) all) |
49 | 52 | ||
50 | all: buildinf.h lib subdirs | 53 | all: buildinf.h lib subdirs shared |
51 | 54 | ||
52 | buildinf.h: ../Makefile.ssl | 55 | buildinf.h: ../Makefile.ssl |
53 | ( echo "#ifndef MK1MF_BUILD"; \ | 56 | ( echo "#ifndef MK1MF_BUILD"; \ |
54 | echo " /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */"; \ | 57 | echo " /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */"; \ |
55 | echo " #define CFLAGS \"$(CC) $(CFLAG)\""; \ | 58 | echo " #define CFLAGS \"$(CC) $(CFLAG)\""; \ |
56 | echo " #define PLATFORM \"$(PLATFORM)\""; \ | 59 | echo " #define PLATFORM \"$(PLATFORM)\""; \ |
57 | echo " #define DATE \"`date`\""; \ | 60 | echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \ |
58 | echo "#endif" ) >buildinf.h | 61 | echo "#endif" ) >buildinf.h |
59 | 62 | ||
60 | testapps: | 63 | testapps: |
@@ -73,7 +76,7 @@ files: | |||
73 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
74 | @for i in $(SDIRS) ;\ | 77 | @for i in $(SDIRS) ;\ |
75 | do \ | 78 | do \ |
76 | (cd $$i; echo "making 'files' in crypto/$$i..."; \ | 79 | (cd $$i && echo "making 'files' in crypto/$$i..." && \ |
77 | $(MAKE) PERL='${PERL}' files ); \ | 80 | $(MAKE) PERL='${PERL}' files ); \ |
78 | done; | 81 | done; |
79 | 82 | ||
@@ -84,27 +87,31 @@ links: | |||
84 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) | 87 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) |
85 | @$(SHELL) $(TOP)/util/point.sh Makefile.ssl Makefile | 88 | @$(SHELL) $(TOP)/util/point.sh Makefile.ssl Makefile |
86 | @for i in $(SDIRS); do \ | 89 | @for i in $(SDIRS); do \ |
87 | (cd $$i; echo "making links in crypto/$$i..."; \ | 90 | (cd $$i && echo "making links in crypto/$$i..." && \ |
88 | $(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 ); \ | 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 ); \ |
89 | done; | 92 | done; |
90 | 93 | ||
91 | lib: $(LIBOBJ) | 94 | lib: $(LIBOBJ) |
92 | $(AR) $(LIB) $(LIBOBJ) | 95 | $(AR) $(LIB) $(LIBOBJ) |
93 | @echo You may get an error following this line. Please ignore. | 96 | $(RANLIB) $(LIB) || echo Never mind. |
94 | - $(RANLIB) $(LIB) | ||
95 | @touch lib | 97 | @touch lib |
96 | 98 | ||
99 | shared: | ||
100 | if [ -n "$(SHARED_LIBS)" ]; then \ | ||
101 | (cd ..; make $(SHARED_LIB)); \ | ||
102 | fi | ||
103 | |||
97 | libs: | 104 | libs: |
98 | @for i in $(SDIRS) ;\ | 105 | @for i in $(SDIRS) ;\ |
99 | do \ | 106 | do \ |
100 | (cd $$i; echo "making libs in crypto/$$i..."; \ | 107 | (cd $$i && echo "making libs in crypto/$$i..." && \ |
101 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' 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 ); \ |
102 | done; | 109 | done; |
103 | 110 | ||
104 | tests: | 111 | tests: |
105 | @for i in $(SDIRS) ;\ | 112 | @for i in $(SDIRS) ;\ |
106 | do \ | 113 | do \ |
107 | (cd $$i; echo "making tests in crypto/$$i..."; \ | 114 | (cd $$i && echo "making tests in crypto/$$i..." && \ |
108 | $(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 ); \ |
109 | done; | 116 | done; |
110 | 117 | ||
@@ -116,14 +123,14 @@ install: | |||
116 | done; | 123 | done; |
117 | @for i in $(SDIRS) ;\ | 124 | @for i in $(SDIRS) ;\ |
118 | do \ | 125 | do \ |
119 | (cd $$i; echo "making install in crypto/$$i..."; \ | 126 | (cd $$i && echo "making install in crypto/$$i..." && \ |
120 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' 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 ); \ |
121 | done; | 128 | done; |
122 | 129 | ||
123 | lint: | 130 | lint: |
124 | @for i in $(SDIRS) ;\ | 131 | @for i in $(SDIRS) ;\ |
125 | do \ | 132 | do \ |
126 | (cd $$i; echo "making lint in crypto/$$i..."; \ | 133 | (cd $$i && echo "making lint in crypto/$$i..." && \ |
127 | $(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 ); \ |
128 | done; | 135 | done; |
129 | 136 | ||
@@ -133,7 +140,7 @@ depend: | |||
133 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi | 140 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi |
134 | @for i in $(SDIRS) ;\ | 141 | @for i in $(SDIRS) ;\ |
135 | do \ | 142 | do \ |
136 | (cd $$i; echo "making depend in crypto/$$i..."; \ | 143 | (cd $$i && echo "making depend in crypto/$$i..." && \ |
137 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \ | 144 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \ |
138 | done; | 145 | done; |
139 | 146 | ||
@@ -141,7 +148,7 @@ clean: | |||
141 | rm -f buildinf.h *.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 |
142 | @for i in $(SDIRS) ;\ | 149 | @for i in $(SDIRS) ;\ |
143 | do \ | 150 | do \ |
144 | (cd $$i; echo "making clean in crypto/$$i..."; \ | 151 | (cd $$i && echo "making clean in crypto/$$i..." && \ |
145 | $(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 ); \ |
146 | done; | 153 | done; |
147 | 154 | ||
@@ -150,54 +157,58 @@ dclean: | |||
150 | mv -f Makefile.new $(MAKEFILE) | 157 | mv -f Makefile.new $(MAKEFILE) |
151 | @for i in $(SDIRS) ;\ | 158 | @for i in $(SDIRS) ;\ |
152 | do \ | 159 | do \ |
153 | (cd $$i; echo "making dclean in crypto/$$i..."; \ | 160 | (cd $$i && echo "making dclean in crypto/$$i..." && \ |
154 | $(MAKE) PERL='${PERL}' 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 ); \ |
155 | done; | 162 | done; |
156 | 163 | ||
157 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 164 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
158 | 165 | ||
159 | cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h | 166 | cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h |
160 | cpt_err.o: ../include/openssl/err.h ../include/openssl/lhash.h | 167 | cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
168 | cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
161 | cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | 169 | cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h |
162 | cpt_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 170 | cpt_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cpt_err.c |
163 | cryptlib.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 171 | cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
164 | cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 172 | cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
165 | cryptlib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 173 | cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h |
166 | cryptlib.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 174 | cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
167 | cryptlib.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | 175 | cryptlib.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
168 | cryptlib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | 176 | cryptlib.o: ../include/openssl/symhacks.h cryptlib.c cryptlib.h |
169 | cversion.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 177 | cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
170 | cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 178 | cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
171 | cversion.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 179 | cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h |
172 | cversion.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 180 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
173 | cversion.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | 181 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
174 | cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h | 182 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c |
175 | cversion.o: cryptlib.h | 183 | ebcdic.o: ../include/openssl/opensslconf.h ebcdic.c |
176 | ex_data.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 184 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
177 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 185 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
178 | ex_data.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 186 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h |
179 | ex_data.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 187 | ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
180 | ex_data.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | 188 | ex_data.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
181 | ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | 189 | ex_data.o: ../include/openssl/symhacks.h cryptlib.h ex_data.c |
182 | mem.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 190 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
183 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 191 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
184 | mem.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 192 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h |
185 | mem.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 193 | mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
186 | mem.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | 194 | mem.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
187 | mem.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | 195 | mem.o: ../include/openssl/symhacks.h cryptlib.h mem.c |
188 | mem_dbg.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 196 | mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
189 | mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 197 | mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
190 | mem_dbg.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 198 | mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h |
191 | mem_dbg.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 199 | mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
192 | mem_dbg.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | 200 | mem_dbg.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
193 | mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | 201 | mem_dbg.o: ../include/openssl/symhacks.h cryptlib.h mem_dbg.c |
194 | tmdiff.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 202 | o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c |
195 | tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 203 | o_time.o: o_time.h |
196 | tmdiff.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 204 | tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
197 | tmdiff.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 205 | tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
198 | tmdiff.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | 206 | tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h |
199 | tmdiff.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 207 | tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
200 | tmdiff.o: ../include/openssl/tmdiff.h cryptlib.h | 208 | tmdiff.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
201 | uid.o: ../include/openssl/crypto.h ../include/openssl/opensslv.h | 209 | tmdiff.o: ../include/openssl/symhacks.h ../include/openssl/tmdiff.h cryptlib.h |
210 | tmdiff.o: tmdiff.c | ||
211 | uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
212 | uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
202 | uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 213 | uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
203 | uid.o: ../include/openssl/symhacks.h | 214 | uid.o: ../include/openssl/symhacks.h uid.c |