blob: c4f50af842def5786fdd6f66b71cbd64307bce47 [file] [log] [blame]
Richard Levitteeb647302000-10-27 11:05:35 +00001#
2# OpenSSL/ocsp/Makefile.ssl
3#
4
5DIR= ocsp
6TOP= ../..
7CC= cc
Richard Levitte41d2a332001-02-22 14:45:02 +00008INCLUDES= -I.. -I$(TOP) -I../../include
Richard Levitteeb647302000-10-27 11:05:35 +00009CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl
Richard Levittecf1b7d92001-02-19 16:06:34 +000014MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
Richard Levitteeb647302000-10-27 11:05:35 +000016MAKEFILE= Makefile.ssl
17AR= ar r
18
19CFLAGS= $(INCLUDES) $(CFLAG)
20
21GENERAL=Makefile README
22TEST=
23APPS=
24
25LIB=$(TOP)/libcrypto.a
Dr. Stephen Henson9b4dc832001-01-11 00:52:50 +000026LIBSRC= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c \
Dr. Stephen Henson02e4fbe2001-02-03 19:20:45 +000027 ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c
Dr. Stephen Henson1f47ec52000-12-17 14:09:43 +000028
Dr. Stephen Henson9b4dc832001-01-11 00:52:50 +000029LIBOBJ= ocsp_asn.o ocsp_ext.o ocsp_ht.o ocsp_lib.o ocsp_cl.o \
Dr. Stephen Henson02e4fbe2001-02-03 19:20:45 +000030 ocsp_srv.o ocsp_prn.o ocsp_vfy.o ocsp_err.o
Richard Levitteeb647302000-10-27 11:05:35 +000031
32SRC= $(LIBSRC)
33
34EXHEADER= ocsp.h
35HEADER= $(EXHEADER)
36
37ALL= $(GENERAL) $(SRC) $(HEADER)
38
39top:
40 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
41
42all: lib
43
44lib: $(LIBOBJ)
45 $(AR) $(LIB) $(LIBOBJ)
Lutz Jänicke018c56f2003-01-16 17:22:30 +000046 $(RANLIB) $(LIB) || echo Never mind.
Richard Levitteeb647302000-10-27 11:05:35 +000047 @touch lib
48
49files:
Richard Levittebd459502002-08-01 14:18:52 +000050 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
Richard Levitteeb647302000-10-27 11:05:35 +000051
52links:
Richard Levitte79b42e72003-12-27 14:59:07 +000053 @sh $(TOP)/util/point.sh Makefile.ssl Makefile ;
Richard Levittebd459502002-08-01 14:18:52 +000054 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
55 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
56 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
Richard Levitteeb647302000-10-27 11:05:35 +000057
58install:
Richard Levittea2ac4292004-11-02 23:55:01 +000059 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
Richard Levitteeb647302000-10-27 11:05:35 +000060 do \
61 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
62 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
63 done;
64
65tags:
66 ctags $(SRC)
67
68tests:
69
70lint:
71 lint -DLINT $(INCLUDES) $(SRC)>fluff
72
73depend:
Richard Levitte001ab3a2002-10-09 13:25:12 +000074 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
Richard Levitteeb647302000-10-27 11:05:35 +000075
76dclean:
77 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
78 mv -f Makefile.new $(MAKEFILE)
79
80clean:
81 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
82
83# DO NOT DELETE THIS LINE -- make depend depends on it.
84
Richard Levitte5e42f9a2002-12-29 01:38:15 +000085ocsp_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +000086ocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
87ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
88ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
89ocsp_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
90ocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
91ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
92ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
Richard Levittef8000b92001-10-04 07:49:09 +000093ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
Geoff Thorpec57bc2d2004-04-19 18:33:41 +000094ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
95ocsp_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
96ocsp_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
97ocsp_asn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
98ocsp_asn.o: ocsp_asn.c
Richard Levitte5e42f9a2002-12-29 01:38:15 +000099ocsp_cl.o: ../../e_os.h ../../include/openssl/asn1.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +0000100ocsp_cl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
101ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
102ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
103ocsp_cl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
104ocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
105ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
106ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
107ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
108ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
109ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
110ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
111ocsp_cl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
112ocsp_cl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
113ocsp_cl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
114ocsp_cl.o: ../cryptlib.h ocsp_cl.c
Richard Levitte5e42f9a2002-12-29 01:38:15 +0000115ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +0000116ocsp_err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
117ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
118ocsp_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
119ocsp_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
120ocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
121ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
122ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
Richard Levittef8000b92001-10-04 07:49:09 +0000123ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
Geoff Thorpec57bc2d2004-04-19 18:33:41 +0000124ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
125ocsp_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
126ocsp_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
127ocsp_err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
128ocsp_err.o: ocsp_err.c
Richard Levitte5e42f9a2002-12-29 01:38:15 +0000129ocsp_ext.o: ../../e_os.h ../../include/openssl/asn1.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +0000130ocsp_ext.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
131ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
132ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
133ocsp_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
134ocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
135ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
136ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
137ocsp_ext.o: ../../include/openssl/opensslconf.h
Richard Levittef8000b92001-10-04 07:49:09 +0000138ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
139ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
Geoff Thorpec57bc2d2004-04-19 18:33:41 +0000140ocsp_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
141ocsp_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
142ocsp_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
143ocsp_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_ext.c
Richard Levitte5e42f9a2002-12-29 01:38:15 +0000144ocsp_ht.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +0000145ocsp_ht.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
146ocsp_ht.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
147ocsp_ht.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
148ocsp_ht.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
149ocsp_ht.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
150ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
151ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
152ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
153ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
154ocsp_ht.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
155ocsp_ht.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
156ocsp_ht.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
157ocsp_ht.o: ocsp_ht.c
Richard Levitte5e42f9a2002-12-29 01:38:15 +0000158ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +0000159ocsp_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
160ocsp_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
161ocsp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
162ocsp_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
163ocsp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
164ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
165ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
166ocsp_lib.o: ../../include/openssl/opensslconf.h
Richard Levittef8000b92001-10-04 07:49:09 +0000167ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
168ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
169ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
Geoff Thorpec57bc2d2004-04-19 18:33:41 +0000170ocsp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
171ocsp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
172ocsp_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
173ocsp_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_lib.c
Richard Levitte5e42f9a2002-12-29 01:38:15 +0000174ocsp_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +0000175ocsp_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
176ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
177ocsp_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
178ocsp_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
179ocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
180ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
181ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
Richard Levittef8000b92001-10-04 07:49:09 +0000182ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
183ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
Geoff Thorpec57bc2d2004-04-19 18:33:41 +0000184ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
185ocsp_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
186ocsp_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
187ocsp_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
188ocsp_prn.o: ocsp_prn.c
Richard Levitte5e42f9a2002-12-29 01:38:15 +0000189ocsp_srv.o: ../../e_os.h ../../include/openssl/asn1.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +0000190ocsp_srv.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
191ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
192ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
193ocsp_srv.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
194ocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h
195ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
196ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
197ocsp_srv.o: ../../include/openssl/opensslconf.h
Richard Levittef8000b92001-10-04 07:49:09 +0000198ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
199ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
200ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
Geoff Thorpec57bc2d2004-04-19 18:33:41 +0000201ocsp_srv.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
202ocsp_srv.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
203ocsp_srv.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
204ocsp_srv.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_srv.c
Richard Levitte5e42f9a2002-12-29 01:38:15 +0000205ocsp_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
Geoff Thorpe9c52d2c2004-05-17 19:26:06 +0000206ocsp_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
207ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
208ocsp_vfy.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
209ocsp_vfy.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
210ocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
211ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
212ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
Richard Levittef8000b92001-10-04 07:49:09 +0000213ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
Geoff Thorpec57bc2d2004-04-19 18:33:41 +0000214ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
215ocsp_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
216ocsp_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
217ocsp_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
218ocsp_vfy.o: ocsp_vfy.c