3
0
mirror of https://github.com/ffrgb/site-ffrgb.git synced 2024-11-14 07:55:30 +01:00

add multiple jobs to speed up build

This commit is contained in:
Matthias Freund 2016-04-16 20:19:22 +02:00
parent 40acb4b49e
commit d0a0b2a43b

View File

@ -16,11 +16,11 @@ else
GLUON_BRANCH := experimental GLUON_BRANCH := experimental
endif endif
JOBS = 1 JOBS ?= $(shell cat /proc/cpuinfo | grep processor | wc -l)
GLUON_MAKE := ${MAKE} -j ${JOBS} -C ${GLUON_BUILD_DIR} \ GLUON_MAKE := ${MAKE} -j ${JOBS} -C ${GLUON_BUILD_DIR} \
GLUON_RELEASE=${GLUON_RELEASE} \ GLUON_RELEASE=${GLUON_RELEASE} \
GLUON_BRANCH=${GLUON_BRANCH} \ GLUON_BRANCH=${GLUON_BRANCH}
all: info all: info
${MAKE} manifest ${MAKE} manifest