xref: /dragonfly/lib/libcrypt/Makefile (revision 0eee41d6eadd9a74ff0679236e3881ea47c61594)
1#
2# $FreeBSD: src/lib/libcrypt/Makefile,v 1.24.2.4 2001/07/16 03:28:26 peter Exp $
3#
4
5SHLIB_MAJOR=        4
6LIB=                crypt
7SHLIBDIR?=          /lib
8
9SRCS=               blowfish.c crypt.c crypt-blowfish.c crypt-des.c crypt-md5.c \
10                    crypt-sha256.c crypt-sha512.c crypt-xsi.c \
11                    deprecated-crypt-sha256.c deprecated-crypt-sha512.c \
12                    misc.c
13WARNS?=             2
14NO_STRICT_ALIASING=
15
16MAN=                crypt.3
17MLINKS=             crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3
18MLINKS+=  crypt.3 encrypt.3 crypt.3 setkey.3
19CFLAGS+=  -I${.CURDIR}/../omd -I${.CURDIR}/../libutil
20CFLAGS+=  -I${.CURDIR}/../../crypto/libressl/include
21CFLAGS+=  -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
22# And the auth_getval() code and support.
23.PATH:              ${.CURDIR}/../libutil
24SRCS+=              auth.c property.c
25.for sym in auth_getval property_find properties_read properties_free
26CFLAGS+=  -D${sym}=_libcrypt_${sym}
27.endfor
28PRECIOUSLIB=        yes
29
30.include <bsd.lib.mk>
31