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