Build secure libcrypt if available and allowed

This commit is contained in:
ache 1995-09-29 19:56:05 +00:00
parent f5ccd6dcbc
commit 0e821ab0d2

View File

@ -10,11 +10,17 @@ SUBDIR=csu/${MACHINE}
.endif
# XXX MISSING: libmp libplot
SUBDIR+= libc libcompat libcom_err libcrypt libcurses libedit \
SUBDIR+= libc libcompat libcom_err libcurses libedit \
libf2c libforms \
libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \
libscsi libskey libss libtermcap libutil liby
.if !exists(../secure) || defined(NOSECURE) || defined(NOCRYPT)
SUBDIR+= libcrypt
.else
SUBDIR+= ../secure/lib/libcrypt
.endif
.if !exists(../secure) || defined(NOSECURE)
SUBDIR+= libtelnet
.else