1#	$NetBSD: Makefile,v 1.6 2002/09/01 06:01:13 onoe Exp $
2
3# RCSid:
4#	Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
5#
6#	@(#) Copyright (c) 1994 Simon J. Gerraty
7#
8#	This file is provided in the hope that it will
9#	be of use.  There is absolutely NO WARRANTY.
10#	Permission to copy, redistribute or otherwise
11#	use this file is hereby granted provided that 
12#	the above copyright notice and this notice are
13#	left intact. 
14#      
15#	Please send copies of changes and bug-fixes to:
16#	sjg@quick.com.au
17#
18
19NOPIC=		# defined
20#NOPROFILE=	# defined
21#NOLINT=	# defined
22
23.include <bsd.own.mk>
24
25# XXX There's a bit of work to do before we can enable warnings.
26WARNS=		0
27
28LIB=		crypto_idea
29CPPFLAGS+=	-Dlib${LIB} -I. -I${OPENSSLSRC}/crypto -I${OPENSSLSRC}
30
31CRYPTODIST=	${NETBSDSRCDIR}/crypto/dist
32
33.include "${NETBSDSRCDIR}/crypto/Makefile.openssl"
34
35.PATH: ${OPENSSLSRC} ${OPENSSLSRC}/crypto/idea ${OPENSSLSRC}/crypto/evp
36
37CPPFLAGS+=	-I${OPENSSLSRC}/crypto/idea
38SRCS+=		i_cbc.c i_skey.c e_idea.c c_allc.c
39
40AFLAGS+=	-DELF
41
42.include <bsd.lib.mk>
43