6b129086dc
While here reduce a bit overlinking
22 lines
306 B
Makefile
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>
|