aboutsummaryrefslogtreecommitdiff
path: root/lib/libmp/Makefile
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-07-29 08:49:15 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-07-29 08:49:15 +0000
commit656c5bc76b972d4df1f1d25744dd11e44c057e5f (patch)
tree8c701e3e56d4c933442333baaf7f81d37ac82860 /lib/libmp/Makefile
parentcd9709998e1c59b393816ed910516a6b402b0923 (diff)
downloadsrc-656c5bc76b972d4df1f1d25744dd11e44c057e5f.tar.gz
src-656c5bc76b972d4df1f1d25744dd11e44c057e5f.zip
This is the traditional BSD libmp interface implemented in terms of
the OpenSSL BIGNUM interface. It is provided for compatibility only and should not be used in new code.
Notes
Notes: svn path=/head/; revision=80529
Diffstat (limited to 'lib/libmp/Makefile')
-rw-r--r--lib/libmp/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/libmp/Makefile b/lib/libmp/Makefile
new file mode 100644
index 000000000000..1e11ff12d432
--- /dev/null
+++ b/lib/libmp/Makefile
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+LIB= mp
+CFLAGS+= -ansi -pedantic
+WARNS?= 2
+NO_WERROR= yes
+SHLIB_MAJOR= 4
+SRCS= mpasbn.c
+
+beforeinstall:
+ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${.CURDIR}/mp.h ${DESTDIR}/usr/include
+
+.include <bsd.lib.mk>