f555eeb897
On a K6-2/450 with fairly fast SCSI disks, building+installing src/share/ takes 2m51.3s, where src/share/doc/ is 1m9.9s of that. However on a slow Alpha (233MHz) the times are 7m39.3s and 4m58.3s respectively. This commit allows one to speed up their build time, without not getting any important and required changes if one used "NOSHARE".
14 lines
302 B
Makefile
14 lines
302 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
# Do not include `info' in the SUBDIR list, it is handled separately.
|
|
|
|
SUBDIR= colldef dict examples isdn man me misc mk mklocale skel \
|
|
syscons tabset termcap timedef zoneinfo
|
|
|
|
.if !defined(NO_SHAREDOCS)
|
|
SUBDIR+= doc
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|