1142425Snectar#
2142425Snectar# OpenSSL/ocsp/Makefile
3142425Snectar#
4142425Snectar
5142425SnectarDIR=	ocsp
6142425SnectarTOP=	../..
7142425SnectarCC=	cc
8142425SnectarINCLUDES= -I.. -I$(TOP) -I../../include
9142425SnectarCFLAG=-g
10142425SnectarMAKEFILE=	Makefile
11142425SnectarAR=		ar r
12142425Snectar
13142425SnectarCFLAGS= $(INCLUDES) $(CFLAG)
14142425Snectar
15142425SnectarGENERAL=Makefile README
16142425SnectarTEST=
17142425SnectarAPPS=
18142425Snectar
19142425SnectarLIB=$(TOP)/libcrypto.a
20142425SnectarLIBSRC= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c \
21142425Snectar	ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c
22142425Snectar
23142425SnectarLIBOBJ= ocsp_asn.o ocsp_ext.o ocsp_ht.o ocsp_lib.o ocsp_cl.o \
24142425Snectar	ocsp_srv.o ocsp_prn.o ocsp_vfy.o ocsp_err.o
25142425Snectar
26142425SnectarSRC= $(LIBSRC)
27142425Snectar
28142425SnectarEXHEADER= ocsp.h
29142425SnectarHEADER=	$(EXHEADER)
30142425Snectar
31142425SnectarALL=    $(GENERAL) $(SRC) $(HEADER)
32142425Snectar
33142425Snectartop:
34142425Snectar	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
35142425Snectar
36142425Snectarall:	lib
37142425Snectar
38142425Snectarlib:	$(LIBOBJ)
39238405Sjkim	$(AR) $(LIB) $(LIBOBJ)
40142425Snectar	$(RANLIB) $(LIB) || echo Never mind.
41142425Snectar	@touch lib
42142425Snectar
43142425Snectarfiles:
44142425Snectar	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
45142425Snectar
46142425Snectarlinks:
47142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
48142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
49142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
50142425Snectar
51142425Snectarinstall:
52160814Ssimon	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
53160814Ssimon	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
54142425Snectar	do  \
55142425Snectar	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
56142425Snectar	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
57142425Snectar	done;
58142425Snectar
59142425Snectartags:
60142425Snectar	ctags $(SRC)
61142425Snectar
62142425Snectartests:
63142425Snectar
64142425Snectarlint:
65142425Snectar	lint -DLINT $(INCLUDES) $(SRC)>fluff
66142425Snectar
67284285Sjkimupdate: depend
68284285Sjkim
69142425Snectardepend:
70160814Ssimon	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
71142425Snectar	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
72142425Snectar
73142425Snectardclean:
74142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
75142425Snectar	mv -f Makefile.new $(MAKEFILE)
76142425Snectar
77142425Snectarclean:
78142425Snectar	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
79142425Snectar
80142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
81142425Snectar
82160814Ssimonocsp_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
83160814Ssimonocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
84142425Snectarocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
85160814Ssimonocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
86160814Ssimonocsp_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
87238405Sjkimocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
88238405Sjkimocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
89238405Sjkimocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
90142425Snectarocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
91160814Ssimonocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
92160814Ssimonocsp_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
93160814Ssimonocsp_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
94160814Ssimonocsp_asn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
95160814Ssimonocsp_asn.o: ocsp_asn.c
96160814Ssimonocsp_cl.o: ../../e_os.h ../../include/openssl/asn1.h
97160814Ssimonocsp_cl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
98142425Snectarocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
99160814Ssimonocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
100160814Ssimonocsp_cl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
101160814Ssimonocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
102238405Sjkimocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
103238405Sjkimocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
104238405Sjkimocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
105238405Sjkimocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
106238405Sjkimocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
107238405Sjkimocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
108238405Sjkimocsp_cl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
109238405Sjkimocsp_cl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
110238405Sjkimocsp_cl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
111238405Sjkimocsp_cl.o: ../cryptlib.h ocsp_cl.c
112160814Ssimonocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
113160814Ssimonocsp_err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
114160814Ssimonocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
115160814Ssimonocsp_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
116160814Ssimonocsp_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
117238405Sjkimocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
118238405Sjkimocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
119238405Sjkimocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
120142425Snectarocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
121160814Ssimonocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
122160814Ssimonocsp_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
123160814Ssimonocsp_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
124160814Ssimonocsp_err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
125160814Ssimonocsp_err.o: ocsp_err.c
126160814Ssimonocsp_ext.o: ../../e_os.h ../../include/openssl/asn1.h
127160814Ssimonocsp_ext.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
128142425Snectarocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
129160814Ssimonocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
130160814Ssimonocsp_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
131160814Ssimonocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
132238405Sjkimocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
133238405Sjkimocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
134238405Sjkimocsp_ext.o: ../../include/openssl/opensslconf.h
135142425Snectarocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
136142425Snectarocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
137160814Ssimonocsp_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
138160814Ssimonocsp_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
139160814Ssimonocsp_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
140160814Ssimonocsp_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_ext.c
141194206Ssimonocsp_ht.o: ../../e_os.h ../../include/openssl/asn1.h
142194206Ssimonocsp_ht.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
143194206Ssimonocsp_ht.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
144194206Ssimonocsp_ht.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
145194206Ssimonocsp_ht.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
146194206Ssimonocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h
147238405Sjkimocsp_ht.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
148238405Sjkimocsp_ht.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
149238405Sjkimocsp_ht.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
150238405Sjkimocsp_ht.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
151238405Sjkimocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
152238405Sjkimocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
153238405Sjkimocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
154238405Sjkimocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c
155160814Ssimonocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
156238405Sjkimocsp_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
157238405Sjkimocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
158238405Sjkimocsp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
159238405Sjkimocsp_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
160238405Sjkimocsp_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
161238405Sjkimocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
162194206Ssimonocsp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
163194206Ssimonocsp_lib.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
164142425Snectarocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
165142425Snectarocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
166142425Snectarocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
167160814Ssimonocsp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
168160814Ssimonocsp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
169160814Ssimonocsp_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
170160814Ssimonocsp_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_lib.c
171160814Ssimonocsp_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
172160814Ssimonocsp_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
173160814Ssimonocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
174160814Ssimonocsp_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
175160814Ssimonocsp_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
176238405Sjkimocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
177238405Sjkimocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
178238405Sjkimocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
179142425Snectarocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
180142425Snectarocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
181160814Ssimonocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
182160814Ssimonocsp_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
183160814Ssimonocsp_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
184160814Ssimonocsp_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
185160814Ssimonocsp_prn.o: ocsp_prn.c
186160814Ssimonocsp_srv.o: ../../e_os.h ../../include/openssl/asn1.h
187160814Ssimonocsp_srv.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
188142425Snectarocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
189160814Ssimonocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
190160814Ssimonocsp_srv.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
191160814Ssimonocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h
192238405Sjkimocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
193238405Sjkimocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
194238405Sjkimocsp_srv.o: ../../include/openssl/opensslconf.h
195142425Snectarocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
196142425Snectarocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
197142425Snectarocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
198160814Ssimonocsp_srv.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
199160814Ssimonocsp_srv.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
200160814Ssimonocsp_srv.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
201160814Ssimonocsp_srv.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_srv.c
202160814Ssimonocsp_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
203160814Ssimonocsp_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
204160814Ssimonocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
205160814Ssimonocsp_vfy.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
206160814Ssimonocsp_vfy.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
207238405Sjkimocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
208238405Sjkimocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
209238405Sjkimocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
210142425Snectarocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
211160814Ssimonocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
212160814Ssimonocsp_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
213160814Ssimonocsp_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
214160814Ssimonocsp_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
215160814Ssimonocsp_vfy.o: ocsp_vfy.c
216