diff options
author | scrappy <scrappy@FreeBSD.org> | 1997-03-30 23:43:41 +0000 |
---|---|---|
committer | scrappy <scrappy@FreeBSD.org> | 1997-03-30 23:43:41 +0000 |
commit | f88ab1083b9727e1e75d0cec8f339fd0116919b7 (patch) | |
tree | 0ba143e2df5b0455be830d6319f969245f1dd0ad /etc/defaults | |
parent | 5fddba9b6da38ca26813fda6d50344e900a5801b (diff) | |
download | FreeBSD-src-f88ab1083b9727e1e75d0cec8f339fd0116919b7.zip FreeBSD-src-f88ab1083b9727e1e75d0cec8f339fd0116919b7.tar.gz |
Add/document MAKEFLAGS into /etc/make.conf, using -j3 as example
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/make.conf | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/defaults/make.conf b/etc/defaults/make.conf index 23ac16b..b938062 100644 --- a/etc/defaults/make.conf +++ b/etc/defaults/make.conf @@ -1,4 +1,4 @@ -# $Id: make.conf,v 1.43 1997/02/23 09:20:41 peter Exp $ +# $Id: make.conf,v 1.44 1997/03/25 00:04:33 joerg Exp $ # # This file, if present, will be read by make (see /usr/share/mk/sys.mk). # It allows you to override macro definitions to make without changing @@ -30,6 +30,10 @@ # #WANT_CSRG_LIBM= yes # +# The following entry tends to be more useful on faster machines, since it +# allows for 'parallel' compiling of the source trees +# +#MAKEFLAGS= -j3 # # If you do not want unformatted manual pages to be compressed # when they are installed: |