d0235f949584eb02f40c0cf40ac218d07b36146e
[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.3 2003/08/03 16:45:15 dillon Exp $
4 #
5
6 SHLIB_MAJOR=    2
7 LIB=            crypt
8
9 .PATH:          ${.CURDIR}/../libmd
10 SRCS=           crypt.c crypt-md5.c md5c.c misc.c
11 MAN=            crypt.3
12 MLINKS=         crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3
13 CFLAGS+=        -I${.CURDIR}/../libmd -I${.CURDIR}/../libutil
14 CFLAGS+=        -DLIBC_SCCS -Wall
15 # Pull in the crypt-des.c source, assuming it is present.
16 .if exists(${.CURDIR}/../../secure/lib/libcrypt/crypt-des.c) && \
17     !defined(NOCRYPT)
18 .PATH:          ${.CURDIR}/../../secure/lib/libcrypt
19 SRCS+=          crypt-des.c crypt-blowfish.c blowfish.c
20 CFLAGS+=        -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
21 .endif
22 # And the auth_getval() code and support.
23 .PATH:          ${.CURDIR}/../libutil
24 SRCS+=          auth.c property.c
25 .for sym in MD5Init MD5Final MD5Update MD5Pad auth_getval \
26             property_find properties_read properties_free
27 CFLAGS+=        -D${sym}=__${sym}
28 .endfor
29 PRECIOUSLIB=    yes
30
31 .include <bsd.lib.mk>