installer: Re-add the TEST_DEV command which was removed accidentally.
[dragonfly.git] / lib / libcrypt / Makefile
blob9e590a0f5c1619b383ffb5a8bf4081315bb60905
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 $
6 SHLIB_MAJOR= 3
7 LIB= crypt
9 .PATH: ${.CURDIR}/../libmd
10 SRCS= crypt.c crypt-md5.c md5c.c misc.c
11 WARNS?= 2
12 MAN= crypt.3
13 MLINKS= crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3
14 CFLAGS+= -I${.CURDIR}/../libmd -I${.CURDIR}/../libutil
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>