Deleted Added
full compact
Makefile (291325) Makefile (292782)
1#
1#
2# $FreeBSD: head/lib/libcrypt/Makefile 291325 2015-11-25 19:45:04Z bdrewery $
2# $FreeBSD: head/lib/libcrypt/Makefile 292782 2015-12-27 17:33:59Z allanjude $
3#
4
5SHLIBDIR?= /lib
6
7.include <src.opts.mk>
8
9SHLIB_MAJOR= 5
10LIB= crypt

--- 14 unchanged lines hidden (view full) ---

25.PATH: ${.CURDIR}/../../secure/lib/libcrypt
26SRCS+= crypt-des.c crypt-blowfish.c blowfish.c
27CFLAGS+= -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
28.endif
29
30.for sym in MD4Init MD4Final MD4Update MD4Pad \
31 MD5Init MD5Final MD5Update MD5Pad \
32 SHA256_Init SHA256_Final SHA256_Update \
3#
4
5SHLIBDIR?= /lib
6
7.include <src.opts.mk>
8
9SHLIB_MAJOR= 5
10LIB= crypt

--- 14 unchanged lines hidden (view full) ---

25.PATH: ${.CURDIR}/../../secure/lib/libcrypt
26SRCS+= crypt-des.c crypt-blowfish.c blowfish.c
27CFLAGS+= -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
28.endif
29
30.for sym in MD4Init MD4Final MD4Update MD4Pad \
31 MD5Init MD5Final MD5Update MD5Pad \
32 SHA256_Init SHA256_Final SHA256_Update \
33 SHA384_Init SHA384_Final SHA384_Update \
33 SHA512_Init SHA512_Final SHA512_Update
34CFLAGS+= -D${sym}=__${sym}
35.endfor
36
37WARNS?= 2
38
39PRECIOUSLIB=
40
41.if ${MK_TESTS} != "no"
42SUBDIR+= tests
43.endif
44
45.include <bsd.lib.mk>
46.include <bsd.subdir.mk>
34 SHA512_Init SHA512_Final SHA512_Update
35CFLAGS+= -D${sym}=__${sym}
36.endfor
37
38WARNS?= 2
39
40PRECIOUSLIB=
41
42.if ${MK_TESTS} != "no"
43SUBDIR+= tests
44.endif
45
46.include <bsd.lib.mk>
47.include <bsd.subdir.mk>