Allow overriding the number of build jobs

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404267
This commit is contained in:
Sam Lantinga 2009-12-05 19:46:24 +00:00
parent e7a9fc5a82
commit 21f0a00736

View file

@ -4,7 +4,9 @@
# Number of CPUs (for make -j)
NCPU=`sysctl -n hw.ncpu`
NJOB=$NCPU
if test x$NJOB = x; then
NJOB=$NCPU
fi
# Generic, cross-platform CFLAGS you always want go here.
CFLAGS="-O3 -g -pipe"