dfed135e5c
- Remove the .t wrapper - Fix -Wreturn-type warnings with clang This change has been tested on amd64/i386 Phabric: D530 Reviewed by: jmmv Approved by: jmmv (co-mentor) MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
23 lines
328 B
Makefile
23 lines
328 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= mp
|
|
SHLIB_MAJOR= 7
|
|
DPADD= ${LIBCRYPTO}
|
|
LDADD= -lcrypto
|
|
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>
|