cf6147aa219bf87586cd771f80f07045d7007893
[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 # $DragonFly: src/lib/libcrypt/Makefile,v 1.8 2008/10/28 17:23:45 swildner Exp $
4 #
5
6 SHLIB_MAJOR=    4
7 LIB=            crypt
8 SHLIBDIR?=      /lib
9
10 .PATH:          ${.CURDIR}/../libmd
11 SRCS=           crypt.c crypt-md5.c \
12                 crypt-sha256.c crypt-sha512.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 # Pull in the crypt-des.c source, assuming it is present.
24 .if exists(${.CURDIR}/../../secure/lib/libcrypt/crypt-des.c) && \
25     !defined(NO_CRYPT)
26 .PATH:          ${.CURDIR}/../../secure/lib/libcrypt
27 SRCS+=          crypt-des.c crypt-blowfish.c blowfish.c
28 CFLAGS+=        -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
29 .endif
30 # And the auth_getval() code and support.
31 .PATH:          ${.CURDIR}/../libutil
32 SRCS+=          auth.c property.c
33 .for sym in MD5Init MD5Final MD5Update MD5Pad auth_getval \
34             property_find properties_read properties_free
35 CFLAGS+=        -D${sym}=_libcrypt_${sym}
36 .endfor
37 PRECIOUSLIB=    yes
38
39 .include <bsd.lib.mk>