1#
2# $FreeBSD: stable/10/lib/libcrypt/Makefile 322105 2017-08-05 17:02:53Z ngie $
3#
4
5SHLIBDIR?=	/lib
6
7.include <bsd.own.mk>
8
9SHLIB_MAJOR=	5
10LIB=		crypt
11
12.PATH:		${.CURDIR}/../libmd ${.CURDIR}/../../sys/crypto/sha2
13SRCS=		crypt.c misc.c \
14		crypt-md5.c md5c.c \
15		crypt-nthash.c md4c.c \
16		crypt-sha256.c sha256c.c \
17		crypt-sha512.c sha512c.c
18MAN=		crypt.3
19MLINKS=		crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3
20CFLAGS+=	-I${.CURDIR}/../libmd -I${.CURDIR}/../libutil
21
22# Pull in the strong crypto, if it is present.
23.if exists(${.CURDIR}/../../secure/lib/libcrypt) && ${MK_CRYPT} != "no"
24.PATH:		${.CURDIR}/../../secure/lib/libcrypt
25SRCS+=		crypt-des.c crypt-blowfish.c blowfish.c
26CFLAGS+=	-I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
27.endif
28
29.for sym in MD4Init MD4Final MD4Update MD4Pad \
30	    MD5Init MD5Final MD5Update MD5Pad \
31	    SHA256_Init SHA256_Final SHA256_Update \
32	    SHA512_224_Init SHA512_224_Final SHA512_224_Update \
33	    SHA512_256_Init SHA512_256_Final SHA512_256_Update \
34	    SHA384_Init SHA384_Final SHA384_Update \
35	    SHA512_Init SHA512_Final SHA512_Update
36CFLAGS+=	-D${sym}=__${sym}
37.endfor
38
39WARNS?=		2
40
41PRECIOUSLIB=
42
43.if ${MK_TESTS} != "no"
44SUBDIR+=	tests
45.endif
46
47.include <bsd.lib.mk>
48