1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-21 00:25:37 +00:00

[docker] nproc for make

This commit is contained in:
Witold Filipczyk 2022-12-01 18:12:44 +01:00
parent 6708d1d843
commit ab316a51a1
3 changed files with 4 additions and 4 deletions

View File

@ -7,6 +7,6 @@ NOCONFIGURE=1 ./autogen.sh
--enable-shared=no \
--disable-documentation
make -j12
make -j`nproc`
make install

View File

@ -59,7 +59,7 @@ CFLAGS="-I/usr/local/include -DWATT32_NO_OLDIES -DSHUT_RD=0 -L/usr/local/lib -fc
--prefix=/usr/local \
--cross-compile-prefix=i586-pc-msdosdjgpp- && \
make depend && \
make -j12 && \
make -j`nproc` && \
make install_runtime_libs && \
make install_dev ; \
rm -rf /root/tmp
@ -79,7 +79,7 @@ CC=cc.py cmake \
-DBUILD_STATIC_LIBS:BOOL=ON \
-DCMAKE_AR=/usr/bin/i586-pc-msdosdjgpp-ar \
.. ; \
make -j12 VERBOSE=1; \
make -j`nproc` VERBOSE=1; \
make install; \
rm -rf /root/tmp

View File

@ -10,6 +10,6 @@ CPPFLAGS="-I/usr/local/include/libxml2" ./configure \
--enable-shared=no \
--disable-documentation
make -j12
make -j`nproc`
make install