bashrc & zshrc: add alias "maken".

* `make -j$NPROC`
This commit is contained in:
Mikaela Suomalainen 2014-06-07 19:53:29 +03:00
parent b89ff8edff
commit d9527e7215
2 changed files with 2 additions and 0 deletions

1
bashrc
View File

@ -249,6 +249,7 @@ if [[ $UNAME != Darwin ]]; then
else
export NPROC=$(sysctl -n hw.ncpu)
fi
alias maken="make -j$NPROC"
##### Aliases RJ706I #####

1
zshrc
View File

@ -181,6 +181,7 @@ if [[ $UNAME != Darwin ]]; then
else
export NPROC=$(sysctl -n hw.ncpu)
fi
alias maken="make -j$NPROC"
##### Aliases RJ706I #####