Makefile revision 275024
1# $FreeBSD: head/lib/libmp/Makefile 275024 2014-11-25 11:07:26Z bapt $
2
3.include <src.opts.mk>
4
5LIB=		mp
6SHLIB_MAJOR=	7
7LIBADD=		crypto
8MAN=		libmp.3
9INCS=		mp.h
10SRCS=		mpasbn.c
11
12CFLAGS+=	-I${.CURDIR}/../../crypto
13
14VERSION_DEF=	${.CURDIR}/../libc/Versions.def
15SYMBOL_MAPS=	${.CURDIR}/Symbol.map
16
17.if ${MK_TESTS} != "no"
18SUBDIR+=	tests
19.endif
20
21.include <bsd.lib.mk>
22