Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
[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=    3
7 LIB=            crypt
8
9 .PATH:          ${.CURDIR}/../libmd
10 SRCS=           crypt.c crypt-md5.c crypt-sha256.c crypt-sha512.c \
11             md5c.c sha256c.c sha512c.c misc.c
12 INCS=           crypt.h
13 WARNS?=         2
14 MAN=            crypt.3
15 MLINKS=         crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3
16 CFLAGS+=        -I${.CURDIR}/../libmd -I${.CURDIR}/../libutil
17 CFLAGS+=        -D_CTYPE_H_DISABLE_MACROS_ 
18 # Pull in the crypt-des.c source, assuming it is present.
19 .if exists(${.CURDIR}/../../secure/lib/libcrypt/crypt-des.c) && \
20     !defined(NO_CRYPT)
21 .PATH:          ${.CURDIR}/../../secure/lib/libcrypt
22 SRCS+=          crypt-des.c crypt-blowfish.c blowfish.c
23 CFLAGS+=        -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
24 .endif
25 # And the auth_getval() code and support.
26 .PATH:          ${.CURDIR}/../libutil
27 SRCS+=          auth.c property.c
28 .for sym in MD5Init MD5Final MD5Update MD5Pad auth_getval \
29             property_find properties_read properties_free \
30             SHA256_Init SHA256_Update SHA256_Final \
31             SHA512_Init SHA512_Update SHA512_Final
32 CFLAGS+=        -D${sym}=__${sym}
33 .endfor
34 PRECIOUSLIB=    yes
35
36 .include <bsd.lib.mk>