From e273dba26ca2d00098abc80917f226c6fcf018aa Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 29 May 2017 23:15:10 +0200 Subject: [PATCH] make -j$(nproc) [ci skip] --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ab3af1a..eb492dc 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ install: script: - qmake PREFIX=/usr - - make -j4 + - make -j$(nproc) - make INSTALL_ROOT=appdir install ; find appdir/ after_success: @@ -105,6 +105,7 @@ __CMake__ wants `DESTDIR` instead: ``` - cmake . -DCMAKE_INSTALL_PREFIX=/usr + - make -j$(nproc) - make DESTDIR=appdir install ; find appdir/ ``` @@ -112,7 +113,7 @@ __autotools__ (the dinosaur that spends precious minutes "checking...") wants `D ``` - ./configure --prefix=/usr - - make -j4 + - make -j$(nproc) - make install DESTDIR=$(readlink -f appdir) ; find appdir/ ```