xref: /minix3/crypto/external/bsd/openssl/lib/libcrypto_rc5/Makefile (revision ebfedea0ce5bbe81e252ddf32d732e40fb633fae)
1*ebfedea0SLionel Sambuc#	$NetBSD: Makefile,v 1.3 2012/07/10 18:59:22 christos Exp $
2*ebfedea0SLionel Sambuc
3*ebfedea0SLionel Sambuc# RCSid:
4*ebfedea0SLionel Sambuc#	Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
5*ebfedea0SLionel Sambuc#
6*ebfedea0SLionel Sambuc#	@(#) Copyright (c) 1994 Simon J. Gerraty
7*ebfedea0SLionel Sambuc#
8*ebfedea0SLionel Sambuc#	This file is provided in the hope that it will
9*ebfedea0SLionel Sambuc#	be of use.  There is absolutely NO WARRANTY.
10*ebfedea0SLionel Sambuc#	Permission to copy, redistribute or otherwise
11*ebfedea0SLionel Sambuc#	use this file is hereby granted provided that
12*ebfedea0SLionel Sambuc#	the above copyright notice and this notice are
13*ebfedea0SLionel Sambuc#	left intact.
14*ebfedea0SLionel Sambuc#
15*ebfedea0SLionel Sambuc#	Please send copies of changes and bug-fixes to:
16*ebfedea0SLionel Sambuc#	sjg@quick.com.au
17*ebfedea0SLionel Sambuc#
18*ebfedea0SLionel Sambuc
19*ebfedea0SLionel Sambuc#NOPIC=		# defined
20*ebfedea0SLionel Sambuc#NOPROFILE=	# defined
21*ebfedea0SLionel Sambuc#NOLINT=	# defined
22*ebfedea0SLionel Sambuc
23*ebfedea0SLionel Sambuc.include <bsd.own.mk>
24*ebfedea0SLionel Sambuc
25*ebfedea0SLionel Sambuc# XXX There's a bit of work to do before we can enable warnings.
26*ebfedea0SLionel SambucWARNS=		0
27*ebfedea0SLionel Sambuc
28*ebfedea0SLionel SambucLIB=		crypto_rc5
29*ebfedea0SLionel SambucCPPFLAGS+=	-Dlib${LIB} -I. -I${OPENSSLSRC}/crypto -I${OPENSSLSRC}
30*ebfedea0SLionel Sambuc
31*ebfedea0SLionel SambucCRYPTODIST=	${NETBSDSRCDIR}/crypto
32*ebfedea0SLionel Sambuc
33*ebfedea0SLionel Sambuc.include "${NETBSDSRCDIR}/crypto/Makefile.openssl"
34*ebfedea0SLionel Sambuc
35*ebfedea0SLionel Sambuc.PATH: ${OPENSSLSRC} ${OPENSSLSRC}/crypto/rc5 ${OPENSSLSRC}/crypto/evp
36*ebfedea0SLionel Sambuc
37*ebfedea0SLionel SambucCPPFLAGS+=	-I${OPENSSLSRC}/crypto/rc5
38*ebfedea0SLionel SambucSRCS+=		rc5_skey.c rc5_enc.c e_rc5.c c_allc.c
39*ebfedea0SLionel Sambuc
40*ebfedea0SLionel SambucAFLAGS+=	-DELF
41*ebfedea0SLionel Sambuc
42*ebfedea0SLionel Sambuc.include <bsd.lib.mk>
43