More minor IPI work.
[dragonfly/vkernel-mp.git] / lib / libcrypt / Makefile
blobfdc16c57b1b91157688749bcaf5c5dbe367b4015
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.6 2005/09/06 20:55:19 dillon Exp $
6 SHLIB_MAJOR= 3
7 LIB= crypt
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 CFLAGS+= -D_CTYPE_H_DISABLE_MACROS_
16 # Pull in the crypt-des.c source, assuming it is present.
17 .if exists(${.CURDIR}/../../secure/lib/libcrypt/crypt-des.c) && \
18 !defined(NO_CRYPT)
19 .PATH: ${.CURDIR}/../../secure/lib/libcrypt
20 SRCS+= crypt-des.c crypt-blowfish.c blowfish.c
21 CFLAGS+= -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
22 .endif
23 # And the auth_getval() code and support.
24 .PATH: ${.CURDIR}/../libutil
25 SRCS+= auth.c property.c
26 .for sym in MD5Init MD5Final MD5Update MD5Pad auth_getval \
27 property_find properties_read properties_free
28 CFLAGS+= -D${sym}=__${sym}
29 .endfor
30 PRECIOUSLIB= yes
32 .include <bsd.lib.mk>