diff options
-rw-r--r-- | pkgmk.conf | 3 | ||||
-rw-r--r-- | pkgmk.conf.5.in | 5 |
2 files changed, 7 insertions, 1 deletions
@@ -5,7 +5,8 @@ export CFLAGS="-O2 -march=x86-64 -pipe" export CXXFLAGS="${CFLAGS}" -# export MAKEFLAGS="-j2" +# export JOBS=$(nproc) +# export MAKEFLAGS="-j $JOBS" case ${PKGMK_ARCH} in "64"|"") diff --git a/pkgmk.conf.5.in b/pkgmk.conf.5.in index 9be2e4f6..742b326a 100644 --- a/pkgmk.conf.5.in +++ b/pkgmk.conf.5.in @@ -19,6 +19,11 @@ Set C++ compiler options. .br Default: none .TP +\fBexport JOBS='NUMBER'\fP +Set the number of commands to run simultaneously when building a port. +.br +Default: none +.TP \fBexport MAKEFLAGS='STRING'\fP Set make options. .br |