You need to sign in or sign up before continuing.
Makefile.ssl 11.9 KB
Newer Older
1 2 3 4 5 6 7
#
# OpenSSL/ocsp/Makefile.ssl
#

DIR=	ocsp
TOP=	../..
CC=	cc
8
INCLUDES= -I.. -I$(TOP) -I../../include
9 10 11 12 13
CFLAG=-g
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
INSTALLTOP=/usr/local/ssl
MAKE=		make -f Makefile.ssl
14 15
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 17 18 19 20 21 22 23 24 25
MAKEFILE=	Makefile.ssl
AR=		ar r

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile README
TEST=
APPS=

LIB=$(TOP)/libcrypto.a
D
 
Dr. Stephen Henson 已提交
26
LIBSRC= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c \
D
 
Dr. Stephen Henson 已提交
27
	ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c
D
 
Dr. Stephen Henson 已提交
28

D
 
Dr. Stephen Henson 已提交
29
LIBOBJ= ocsp_asn.o ocsp_ext.o ocsp_ht.o ocsp_lib.o ocsp_cl.o \
D
 
Dr. Stephen Henson 已提交
30
	ocsp_srv.o ocsp_prn.o ocsp_vfy.o ocsp_err.o
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45

SRC= $(LIBSRC)

EXHEADER= ocsp.h
HEADER=	$(EXHEADER)

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

all:	lib

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
46
	$(RANLIB) $(LIB) || echo Never mind.
47 48 49
	@touch lib

files:
50
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
51 52

links:
53 54 55 56
	@$(TOP)/util/point.sh Makefile.ssl Makefile ;
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73

install:
	@for i in $(EXHEADER) ; \
	do  \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;

tags:
	ctags $(SRC)

tests:

lint:
	lint -DLINT $(INCLUDES) $(SRC)>fluff

depend:
74
	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
75 76 77 78 79 80 81 82 83 84

dclean:
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
	mv -f Makefile.new $(MAKEFILE)

clean:
	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff

# DO NOT DELETE THIS LINE -- make depend depends on it.

R
Richard Levitte 已提交
85 86 87 88 89 90 91 92
ocsp_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
ocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
ocsp_asn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
ocsp_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
ocsp_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
ocsp_asn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
ocsp_asn.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
ocsp_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
B
Bodo Möller 已提交
93 94
ocsp_asn.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
ocsp_asn.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
95
ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
R
Richard Levitte 已提交
96
ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
R
Richard Levitte 已提交
97 98
ocsp_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
ocsp_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
99 100
ocsp_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
ocsp_asn.o: ../../include/openssl/x509v3.h ocsp_asn.c
R
Richard Levitte 已提交
101 102 103 104 105 106 107 108
ocsp_cl.o: ../../e_os.h ../../include/openssl/asn1.h
ocsp_cl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
ocsp_cl.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
ocsp_cl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
ocsp_cl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
ocsp_cl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
ocsp_cl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
ocsp_cl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
B
Bodo Möller 已提交
109 110 111 112 113 114 115
ocsp_cl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
ocsp_cl.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
ocsp_cl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
ocsp_cl.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
ocsp_cl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
ocsp_cl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
ocsp_cl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
116
ocsp_cl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
B
Bodo Möller 已提交
117 118
ocsp_cl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
ocsp_cl.o: ../cryptlib.h ocsp_cl.c
R
Richard Levitte 已提交
119
ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
L
Lutz Jänicke 已提交
120
ocsp_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
R
Richard Levitte 已提交
121 122 123 124 125 126
ocsp_err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
ocsp_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
ocsp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
ocsp_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
ocsp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
ocsp_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
B
Bodo Möller 已提交
127 128
ocsp_err.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
ocsp_err.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
129
ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
R
Richard Levitte 已提交
130
ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
R
Richard Levitte 已提交
131 132
ocsp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
ocsp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
133 134
ocsp_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
ocsp_err.o: ../../include/openssl/x509v3.h ocsp_err.c
R
Richard Levitte 已提交
135 136 137 138 139 140 141 142
ocsp_ext.o: ../../e_os.h ../../include/openssl/asn1.h
ocsp_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
ocsp_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
ocsp_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
ocsp_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
ocsp_ext.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
ocsp_ext.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
ocsp_ext.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
B
Bodo Möller 已提交
143 144
ocsp_ext.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
ocsp_ext.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
145 146 147 148
ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
ocsp_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
ocsp_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
149
ocsp_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
150 151
ocsp_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
ocsp_ext.o: ../cryptlib.h ocsp_ext.c
R
Richard Levitte 已提交
152
ocsp_ht.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
L
Lutz Jänicke 已提交
153
ocsp_ht.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
R
Richard Levitte 已提交
154 155 156 157 158 159
ocsp_ht.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
ocsp_ht.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
ocsp_ht.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
ocsp_ht.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h
ocsp_ht.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
B
Bodo Möller 已提交
160 161 162 163 164
ocsp_ht.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
ocsp_ht.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
ocsp_ht.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
ocsp_ht.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
ocsp_ht.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
165
ocsp_ht.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
B
Bodo Möller 已提交
166 167
ocsp_ht.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
ocsp_ht.o: ocsp_ht.c
R
Richard Levitte 已提交
168 169 170 171 172 173 174 175
ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
ocsp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
ocsp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
ocsp_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
ocsp_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
ocsp_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
B
Bodo Möller 已提交
176 177
ocsp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
ocsp_lib.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
178 179 180 181 182
ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
ocsp_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
ocsp_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
183
ocsp_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
184 185
ocsp_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
ocsp_lib.o: ../cryptlib.h ocsp_lib.c
R
Richard Levitte 已提交
186
ocsp_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
L
Lutz Jänicke 已提交
187
ocsp_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
R
Richard Levitte 已提交
188 189 190 191 192 193
ocsp_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
ocsp_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
ocsp_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
ocsp_prn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
ocsp_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
ocsp_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
B
Bodo Möller 已提交
194 195
ocsp_prn.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
ocsp_prn.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
196 197
ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
R
Richard Levitte 已提交
198
ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
R
Richard Levitte 已提交
199 200
ocsp_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
ocsp_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
201 202
ocsp_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
ocsp_prn.o: ../../include/openssl/x509v3.h ocsp_prn.c
R
Richard Levitte 已提交
203 204 205 206 207 208 209 210
ocsp_srv.o: ../../e_os.h ../../include/openssl/asn1.h
ocsp_srv.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
ocsp_srv.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
ocsp_srv.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
ocsp_srv.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
ocsp_srv.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
ocsp_srv.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
ocsp_srv.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
B
Bodo Möller 已提交
211 212
ocsp_srv.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
ocsp_srv.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
213 214 215 216 217
ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
ocsp_srv.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
ocsp_srv.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
218
ocsp_srv.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
219 220
ocsp_srv.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
ocsp_srv.o: ../cryptlib.h ocsp_srv.c
R
Richard Levitte 已提交
221
ocsp_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
L
Lutz Jänicke 已提交
222
ocsp_vfy.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
R
Richard Levitte 已提交
223 224 225 226 227 228
ocsp_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
ocsp_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
ocsp_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
ocsp_vfy.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
ocsp_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h
ocsp_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
B
Bodo Möller 已提交
229 230
ocsp_vfy.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
ocsp_vfy.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
231
ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
R
Richard Levitte 已提交
232
ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
R
Richard Levitte 已提交
233 234
ocsp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
ocsp_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
235 236
ocsp_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
ocsp_vfy.o: ../../include/openssl/x509v3.h ocsp_vfy.c