make -j$(nproc)

[ci skip]
This commit is contained in:
probonopd
2017-05-29 23:15:10 +02:00
committed by GitHub
parent 3df78b975a
commit e273dba26c
+3 -2
View File
@@ -77,7 +77,7 @@ install:
script: script:
- qmake PREFIX=/usr - qmake PREFIX=/usr
- make -j4 - make -j$(nproc)
- make INSTALL_ROOT=appdir install ; find appdir/ - make INSTALL_ROOT=appdir install ; find appdir/
after_success: after_success:
@@ -105,6 +105,7 @@ __CMake__ wants `DESTDIR` instead:
``` ```
- cmake . -DCMAKE_INSTALL_PREFIX=/usr - cmake . -DCMAKE_INSTALL_PREFIX=/usr
- make -j$(nproc)
- make DESTDIR=appdir install ; find appdir/ - make DESTDIR=appdir install ; find appdir/
``` ```
@@ -112,7 +113,7 @@ __autotools__ (the dinosaur that spends precious minutes "checking...") wants `D
``` ```
- ./configure --prefix=/usr - ./configure --prefix=/usr
- make -j4 - make -j$(nproc)
- make install DESTDIR=$(readlink -f appdir) ; find appdir/ - make install DESTDIR=$(readlink -f appdir) ; find appdir/
``` ```