Lets say:
make -j 5
Is there a way, within my Makefileget parameter -j?
My goal is to call sconsfrom Makefilea to keep the ability to use multiple jobs to fix the compilation.
Sort of:
all:
scons -j ${GET_J_PARAMETER}
Thank.
Leg: I know that Iād better call sconsdirectly, but some of the developers where I work have been printing makefor almost ten years, and it seems impossible for them to type anything else to create their libraries ..
ereOn source
share