mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 13:32:45 +00:00
027e2b3cec
This is a MFC of the following into stable/10: - r257097 Set up the /usr/tests hierarchy. - r257098 Add missing WITHOUTTESTS file. - r257100 Add a tests(7) manual page. - r257105 Disable WITHTESTS= for now. - r257848 Fix buildworld when WITHTESTS is enabled. - r257850 Subsume the functionality of MKATF into MKTESTS. - r257851 Handle the removal of the test suite when WITHOUTTESTS=yes. - r257852 Install category Kyuafiles from their category directories. - r258232 Install BSD.tests.mtree when MKTESTS is yes. Note that building with WITH_TESTS is still broken at this point (and hence why WITHOUT_TESTS is the set as the default). Subsequent pullups will fix the remaining issues.
46 lines
977 B
Makefile
46 lines
977 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
SHLIBDIR?= /lib
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SHLIB_MAJOR= 5
|
|
LIB= crypt
|
|
|
|
.PATH: ${.CURDIR}/../libmd
|
|
SRCS= crypt.c misc.c \
|
|
crypt-md5.c md5c.c \
|
|
crypt-nthash.c md4c.c \
|
|
crypt-sha256.c sha256c.c \
|
|
crypt-sha512.c sha512c.c
|
|
MAN= crypt.3
|
|
MLINKS= crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3
|
|
CFLAGS+= -I${.CURDIR}/../libmd -I${.CURDIR}/../libutil
|
|
|
|
# Pull in the strong crypto, if it is present.
|
|
.if exists(${.CURDIR}/../../secure/lib/libcrypt) && ${MK_CRYPT} != "no"
|
|
.PATH: ${.CURDIR}/../../secure/lib/libcrypt
|
|
SRCS+= crypt-des.c crypt-blowfish.c blowfish.c
|
|
CFLAGS+= -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
|
|
.endif
|
|
|
|
.for sym in MD4Init MD4Final MD4Update MD4Pad \
|
|
MD5Init MD5Final MD5Update MD5Pad \
|
|
SHA256_Init SHA256_Final SHA256_Update \
|
|
SHA512_Init SHA512_Final SHA512_Update
|
|
CFLAGS+= -D${sym}=__${sym}
|
|
.endfor
|
|
|
|
WARNS?= 2
|
|
|
|
PRECIOUSLIB=
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|
|
.include <bsd.subdir.mk>
|