freebsd-dev/lib/libmp/Makefile
Baptiste Daroussin 6b129086dc Convert libraries to use LIBADD
While here reduce a bit overlinking
2014-11-25 11:07:26 +00:00

22 lines
306 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
LIB= mp
SHLIB_MAJOR= 7
LIBADD= crypto
MAN= libmp.3
INCS= mp.h
SRCS= mpasbn.c
CFLAGS+= -I${.CURDIR}/../../crypto
VERSION_DEF= ${.CURDIR}/../libc/Versions.def
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
.if ${MK_TESTS} != "no"
SUBDIR+= tests
.endif
.include <bsd.lib.mk>