dhcpcd: update README.DRAGONFLY
[dragonfly.git] / lib / libcrypt / Makefile
blob59f5df71b9dd714d3de59a70282a7556ee8b0334
2 # $FreeBSD: src/lib/libcrypt/Makefile,v 1.24.2.4 2001/07/16 03:28:26 peter Exp $
5 SHLIB_MAJOR= 4
6 LIB= crypt
7 SHLIBDIR?= /lib
9 SRCS= 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
13 WARNS?= 2
14 NO_STRICT_ALIASING=
16 MAN= crypt.3
17 MLINKS= crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3
18 MLINKS+= crypt.3 encrypt.3 crypt.3 setkey.3
19 CFLAGS+= -I${.CURDIR}/../omd -I${.CURDIR}/../libutil
20 CFLAGS+= -I${.CURDIR}/../../crypto/libressl/include
21 CFLAGS+= -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
22 # And the auth_getval() code and support.
23 .PATH: ${.CURDIR}/../libutil
24 SRCS+= auth.c property.c
25 .for sym in auth_getval property_find properties_read properties_free
26 CFLAGS+= -D${sym}=_libcrypt_${sym}
27 .endfor
28 PRECIOUSLIB= yes
30 .include <bsd.lib.mk>