freebsd-dev/lib/libmp/Makefile
Dima Dorfman 56996e8b6a Rename mp.3 to libmp.3 since that's what all the other "library"
manual pages (e.g., libstand, libdisk) are called.

Submitted by:	sheldonh
2001-07-30 09:15:27 +00:00

18 lines
324 B
Makefile

# $FreeBSD$
LIB= mp
SHLIB_MAJOR= 4
CFLAGS+= -ansi -pedantic
WARNS?= 2
# openssl/bn.h isn't WARNS-safe, but I still want the warings.
NO_WERROR= yes
SRCS= mpasbn.c
INCS= mp.h
MAN3= libmp.3
beforeinstall:
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/mp.h ${DESTDIR}/usr/include
.include <bsd.lib.mk>