Home | History | Annotate | Line # | Download | only in crypto
Makefile.openssl revision 1.2.2.1
      1 #	$NetBSD: Makefile.openssl,v 1.2.2.1 2000/07/05 18:35:06 thorpej Exp $
      2 
      3 .ifndef _MAKEFILE_OPENSSL_INCLUDED
      4 _MAKEFILE_OPENSSL_INCLUDED=1
      5 
      6 .include <bsd.own.mk>
      7 
      8 OPENSSLSRC=	${CRYPTODIST}/openssl
      9 CPPFLAGS+= -DOPENSSLDIR=\"/etc/openssl\"
     10 
     11 .if (${MKCRYPTO_IDEA} == "no")
     12 CPPFLAGS+= -DNO_IDEA
     13 .endif
     14 
     15 .if (${MKCRYPTO_RC5} == "no")
     16 CPPFLAGS+= -DNO_RC5
     17 .endif
     18 
     19 .if (${MKCRYPTO_RSA} == "no")
     20 CPPFLAGS+= -DNO_RSA
     21 .endif
     22 
     23 .endif
     24