Change default build to include libc_r, but allow disadvantaged souls

to turn off the build.
This commit is contained in:
John Birrell 1997-05-03 02:51:59 +00:00
parent cd6f28f252
commit cb6e7ccbea
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25399
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.121 1997/04/09 18:59:36 jdp Exp $
# $Id: Makefile,v 1.122 1997/04/30 16:02:03 bde Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include
@ -19,6 +19,7 @@
# -DNOGAMES do not go into games subdir
# -DNOSHARE do not go into share subdir
# -DNOINFO do not make or install info files
# -DNOLIBC_R do not build libc_r.
#
# The intended user-driven targets are:

View File

@ -14,7 +14,7 @@ SUBDIR+=libc libcompat libcom_err libcurses libdisk libedit \
libncurses libopie libpcap libresolv librpcsvc \
libscsi libskey libss libtermcap libutil libxpg4 liby libz
.if defined(WANT_LIBC_R)
.if !defined(NOLIBC_R)
SUBDIR+= libc_r
.endif