Add our readmes.
[dragonfly.git] / crypto / openssl-0.9.7e / crypto / ocsp / Makefile
1 #
2 # OpenSSL/ocsp/Makefile
3 #
4
5 DIR=    ocsp
6 TOP=    ../..
7 CC=     cc
8 INCLUDES= -I.. -I$(TOP) -I../../include
9 CFLAG=-g
10 INSTALL_PREFIX=
11 OPENSSLDIR=     /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKEDEPPROG=    makedepend
14 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15 MAKEFILE=       Makefile
16 AR=             ar r
17
18 CFLAGS= $(INCLUDES) $(CFLAG)
19
20 GENERAL=Makefile README
21 TEST=
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c \
26         ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c
27
28 LIBOBJ= ocsp_asn.o ocsp_ext.o ocsp_ht.o ocsp_lib.o ocsp_cl.o \
29         ocsp_srv.o ocsp_prn.o ocsp_vfy.o ocsp_err.o
30
31 SRC= $(LIBSRC)
32
33 EXHEADER= ocsp.h
34 HEADER= $(EXHEADER)
35
36 ALL=    $(GENERAL) $(SRC) $(HEADER)
37
38 top:
39         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40
41 all:    lib
42
43 lib:    $(LIBOBJ)
44         $(AR) $(LIB) $(LIBOBJ)
45         $(RANLIB) $(LIB) || echo Never mind.
46         @touch lib
47
48 files:
49         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
50
51 links:
52         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
53         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
54         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
55
56 install:
57         @for i in $(EXHEADER) ; \
58         do  \
59         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
60         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
61         done;
62
63 tags:
64         ctags $(SRC)
65
66 tests:
67
68 lint:
69         lint -DLINT $(INCLUDES) $(SRC)>fluff
70
71 depend:
72         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
73
74 dclean:
75         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
76         mv -f Makefile.new $(MAKEFILE)
77
78 clean:
79         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
80
81 # DO NOT DELETE THIS LINE -- make depend depends on it.
82
83 ocsp_asn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
84 ocsp_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
85 ocsp_asn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
86 ocsp_asn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
87 ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
88 ocsp_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
89 ocsp_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
90 ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
91 ocsp_asn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
92 ocsp_asn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
93 ocsp_asn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
94 ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
95 ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
96 ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
97 ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
98 ocsp_asn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
99 ocsp_asn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
100 ocsp_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
101 ocsp_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
102 ocsp_asn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
103 ocsp_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
104 ocsp_asn.o: ../../include/openssl/x509v3.h ocsp_asn.c
105 ocsp_cl.o: ../../e_os.h ../../include/openssl/aes.h
106 ocsp_cl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
107 ocsp_cl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
108 ocsp_cl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
109 ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
110 ocsp_cl.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
111 ocsp_cl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
112 ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
113 ocsp_cl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
114 ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
115 ocsp_cl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
116 ocsp_cl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
117 ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
118 ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
119 ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
120 ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
121 ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
122 ocsp_cl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
123 ocsp_cl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
124 ocsp_cl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
125 ocsp_cl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
126 ocsp_cl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
127 ocsp_cl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
128 ocsp_cl.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_cl.c
129 ocsp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
130 ocsp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
131 ocsp_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
132 ocsp_err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
133 ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
134 ocsp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h
135 ocsp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
136 ocsp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
137 ocsp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
138 ocsp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
139 ocsp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
140 ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
141 ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
142 ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
143 ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
144 ocsp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
145 ocsp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
146 ocsp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
147 ocsp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
148 ocsp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
149 ocsp_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
150 ocsp_err.o: ../../include/openssl/x509v3.h ocsp_err.c
151 ocsp_ext.o: ../../e_os.h ../../include/openssl/aes.h
152 ocsp_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
153 ocsp_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
154 ocsp_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
155 ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
156 ocsp_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
157 ocsp_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
158 ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
159 ocsp_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
160 ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
161 ocsp_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
162 ocsp_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
163 ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
164 ocsp_ext.o: ../../include/openssl/opensslconf.h
165 ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
166 ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
167 ocsp_ext.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
168 ocsp_ext.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
169 ocsp_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
170 ocsp_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
171 ocsp_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
172 ocsp_ext.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
173 ocsp_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
174 ocsp_ext.o: ../cryptlib.h ocsp_ext.c
175 ocsp_ht.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
176 ocsp_ht.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
177 ocsp_ht.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
178 ocsp_ht.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
179 ocsp_ht.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
180 ocsp_ht.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h
181 ocsp_ht.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
182 ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h
183 ocsp_ht.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
184 ocsp_ht.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
185 ocsp_ht.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
186 ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
187 ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
188 ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
189 ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
190 ocsp_ht.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
191 ocsp_ht.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
192 ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
193 ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
194 ocsp_ht.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
195 ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
196 ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c
197 ocsp_lib.o: ../../e_os.h ../../include/openssl/aes.h
198 ocsp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
199 ocsp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
200 ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
201 ocsp_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
202 ocsp_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
203 ocsp_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
204 ocsp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
205 ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
206 ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
207 ocsp_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
208 ocsp_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
209 ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
210 ocsp_lib.o: ../../include/openssl/opensslconf.h
211 ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
212 ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
213 ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
214 ocsp_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
215 ocsp_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
216 ocsp_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
217 ocsp_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
218 ocsp_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
219 ocsp_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
220 ocsp_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
221 ocsp_lib.o: ../cryptlib.h ocsp_lib.c
222 ocsp_prn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
223 ocsp_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
224 ocsp_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
225 ocsp_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
226 ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
227 ocsp_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h
228 ocsp_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
229 ocsp_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
230 ocsp_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
231 ocsp_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
232 ocsp_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
233 ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
234 ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
235 ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
236 ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
237 ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
238 ocsp_prn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
239 ocsp_prn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
240 ocsp_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
241 ocsp_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
242 ocsp_prn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
243 ocsp_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
244 ocsp_prn.o: ../../include/openssl/x509v3.h ocsp_prn.c
245 ocsp_srv.o: ../../e_os.h ../../include/openssl/aes.h
246 ocsp_srv.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
247 ocsp_srv.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
248 ocsp_srv.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
249 ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
250 ocsp_srv.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
251 ocsp_srv.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
252 ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
253 ocsp_srv.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
254 ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
255 ocsp_srv.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
256 ocsp_srv.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
257 ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
258 ocsp_srv.o: ../../include/openssl/opensslconf.h
259 ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
260 ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
261 ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
262 ocsp_srv.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
263 ocsp_srv.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
264 ocsp_srv.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
265 ocsp_srv.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
266 ocsp_srv.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
267 ocsp_srv.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
268 ocsp_srv.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
269 ocsp_srv.o: ../cryptlib.h ocsp_srv.c
270 ocsp_vfy.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
271 ocsp_vfy.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
272 ocsp_vfy.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
273 ocsp_vfy.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
274 ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
275 ocsp_vfy.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h
276 ocsp_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
277 ocsp_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h
278 ocsp_vfy.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
279 ocsp_vfy.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
280 ocsp_vfy.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
281 ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
282 ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
283 ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
284 ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
285 ocsp_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
286 ocsp_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
287 ocsp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
288 ocsp_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
289 ocsp_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
290 ocsp_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
291 ocsp_vfy.o: ../../include/openssl/x509v3.h ocsp_vfy.c