Deleted Added
full compact
1c1
< # $FreeBSD: head/secure/lib/libcrypto/Makefile 111088 2003-02-18 17:29:04Z nectar $
---
> # $FreeBSD: head/secure/lib/libcrypto/Makefile 111651 2003-02-27 23:07:26Z ru $
18c18
< SRCS+= cpt_err.c cryptlib.c cversion.c ebcdic.c ex_data.c mem.c mem_clr.c \
---
> SRCS= cpt_err.c cryptlib.c cversion.c ebcdic.c ex_data.c mem.c mem_clr.c \
19a20,21
> INCS= crypto.h ebcdic.h opensslv.h ossl_typ.h symhacks.h tmdiff.h \
> ../e_os.h ../e_os2.h
22a25
> INCS+= aes.h aes_locl.h
37a41
> INCS+= asn1.h asn1_mac.h asn1t.h
40a45
> INCS+= blowfish.h
46a52
> INCS+= bio.h
52a59
> INCS+= bn.h
55a63
> INCS+= buffer.h
58a67
> INCS+= cast.h
61a71
> INCS+= comp.h
64a75
> INCS+= conf.h conf_api.h
71a83
> INCS+= des.h des_old.h
74a87
> INCS+= dh.h
77a91
> INCS+= dsa.h
80a95
> INCS+= dso.h
84a100
> INCS+= ec.h
94a111,113
> INCS+= eng_int.h engine.h hw_4758_cca_err.h hw_aep_err.h hw_atalla_err.h \
> hw_cswift_err.h hw_ncipher_err.h hw_nuron_err.h hw_sureware_err.h \
> hw_ubsec_err.h
97a117
> INCS+= err.h
110a131
> INCS+= hmac.h
114a136
> INCS+= idea.h
118a141
> INCS+= krb5_asn.h
121a145
> INCS+= lhash.h
124a149
> INCS+= md2.h
127a153
> INCS+= md4.h
130a157
> INCS+= md5.h
133a161
> INCS+= mdc2.h
136a165
> INCS+= objects.h obj_mac.h
140a170
> INCS+= ocsp.h
144a175
> INCS+= pem.h pem2.h
149a181
> INCS+= pkcs12.h pkcs7.h
156a189
> INCS+= rand.h
159a193
> INCS+= rc2.h
162a197
> INCS+= rc4.h
165a201
> INCS+= rc5.h
168a205
> INCS+= ripemd.h
173a211
> INCS+= rsa.h
176a215
> INCS+= sha.h
179a219
> INCS+= stack.h safestack.h
185a226
> INCS+= txt_db.h
188a230
> INCS+= ui.h ui_compat.h ui_locl.h
195a238
> INCS+= x509.h x509_vfy.h
201a245
> INCS+= x509v3.h
203c247,248
< INCS= ${HDRS} openssl/evp.h openssl/opensslconf.h
---
> SRCS+= buildinf.h
> INCS+= opensslconf.h evp.h
205a251,270
> CLEANFILES= buildinf.h opensslconf.h evp.h
>
> buildinf.h:
> ( echo "#ifndef MK1MF_BUILD"; \
> echo " /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */"; \
> echo " #define CFLAGS \"$(CC)\""; \
> echo " #define PLATFORM \"`uname -s`-`uname -m`\""; \
> echo " #define DATE \"`LC_ALL=C date`\""; \
> echo "#endif" ) > ${.TARGET}
>
> opensslconf.h: opensslconf-${MACHINE_ARCH}.h
> cp ${.ALLSRC} ${.TARGET}
>
> evp.h: ${LCRYPTO_SRC}/crypto/evp/evp.h
> .if !defined(MAKE_IDEA) || ${MAKE_IDEA} != YES
> sed '/^#ifndef OPENSSL_NO_IDEA$$/,/^#endif$$/d' ${.ALLSRC} > ${.TARGET}
> .else
> cp ${.ALLSRC} ${.TARGET}
> .endif
>