aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-09-29 19:56:05 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-09-29 19:56:05 +0000
commite6af2dc882fd85203499cd6fb262b072de2afa42 (patch)
tree3a672556818b10692c1359a3aff26de9b5d40300 /lib
parent86d61837c8cccc0a69c991117f3a09bf46fa5929 (diff)
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile
index a1d46e4d6cd34..56ca1a4324ee5 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -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