man: Add info about SAMUFLAGS

This commit is contained in:
Dylan Araps 2020-01-10 14:54:03 +02:00
parent e3684f0274
commit feac556f56
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 5 additions and 1 deletions

6
kiss.1
View File

@ -120,9 +120,13 @@ export CXXFLAGS=
export LDFLAGS= export LDFLAGS=
# Make flags. # Make flags.
# Good value: MAKEFLAGS='-j 4' (number of cores). # Good value: MAKEFLAGS='-j4' (number of cores).
export MAKEFLAGS= export MAKEFLAGS=
# Ninja (Samurai) flags.
# Good value: SAMUFLAGS='-j4' (number of cores).
export SAMUFLAGS=
# Cmake Generator. # Cmake Generator.
# Good value (Ninja): export CMAKE_GENERATOR='Ninja' # Good value (Ninja): export CMAKE_GENERATOR='Ninja'
# Good value (Makefiles): export CMAKE_GENERATOR='Unix Makefiles' # Good value (Makefiles): export CMAKE_GENERATOR='Unix Makefiles'