ea514e20d9d0f7b467098d40adef0f979b4145d5
[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 sha256c.c sha512c.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+=        -D_CTYPE_H_DISABLE_MACROS_ 
22 # Pull in the crypt-des.c source, assuming it is present.
23 .if exists(${.CURDIR}/../../secure/lib/libcrypt/crypt-des.c) && \
24     !defined(NO_CRYPT)
25 .PATH:          ${.CURDIR}/../../secure/lib/libcrypt
26 SRCS+=          crypt-des.c crypt-blowfish.c blowfish.c
27 CFLAGS+=        -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
28 .endif
29 # And the auth_getval() code and support.
30 .PATH:          ${.CURDIR}/../libutil
31 SRCS+=          auth.c property.c
32 .for sym in MD5Init MD5Final MD5Update MD5Pad auth_getval \
33             property_find properties_read properties_free \
34             SHA256_Init SHA256_Update SHA256_Final \
35             SHA512_Init SHA512_Update SHA512_Final
36 CFLAGS+=        -D${sym}=__${sym}
37 .endfor
38 PRECIOUSLIB=    yes
39
40 .include <bsd.lib.mk>