xref: /freebsd/lib/libmp/Makefile (revision 17d6c636720d00f77e5d098daf4c278f89d84f7b)
1# $FreeBSD$
2
3LIB=		mp
4SHLIB_MAJOR=	4
5CFLAGS+=	-ansi -pedantic
6WARNS?=		2
7# openssl/bn.h isn't WARNS-safe, but I still want the warings.
8NO_WERROR=	yes
9SRCS=		mpasbn.c
10INCS=		mp.h
11MAN3=		libmp.3
12
13beforeinstall:
14	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
15		${.CURDIR}/mp.h ${DESTDIR}/usr/include
16
17.include <bsd.lib.mk>
18