projects
/
cmccabe-bin
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
xy: add .proto
[cmccabe-bin]
/
gg
1
#!/usr/bin/env bash
2
3
ncpus=1
4
if [ -e /proc/cpuinfo ]; then
5
ncpus=`cat /proc/cpuinfo | grep '^processor' | wc -l`
6
fi
7
make -j $ncpus "$@"