diff options
author | Karel Kočí <cynerd@email.cz> | 2022-07-04 09:48:36 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-07-04 09:48:36 +0200 |
commit | 4f5691035a191335d4dd10e96879d5e6874d9485 (patch) | |
tree | a0b112c23133d2dd000991a9ef164b07e1ae744f /shellrc.d/alias | |
parent | c078dfff27bb4a40f81e4140a4e7506c0c546439 (diff) | |
download | shellrc-4f5691035a191335d4dd10e96879d5e6874d9485.tar.gz shellrc-4f5691035a191335d4dd10e96879d5e6874d9485.tar.bz2 shellrc-4f5691035a191335d4dd10e96879d5e6874d9485.zip |
shellrc.d/alias: add bmake and mbmake
Diffstat (limited to 'shellrc.d/alias')
-rw-r--r-- | shellrc.d/alias | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shellrc.d/alias b/shellrc.d/alias index f9a60e4..7f65260 100644 --- a/shellrc.d/alias +++ b/shellrc.d/alias @@ -16,6 +16,8 @@ alias watch='watch -n 1 -c -t -d' alias rej='find -name \*.rej' alias orig='find -name \*.orig' alias mmake='make -j$(($(nproc) * 2)) -l$(nproc)' +alias bmake='bear -- make' +alias mbmake='bear -- make -j$(($(nproc) * 2)) -l$(nproc)' # Systemd aliases if we are running systemd if pidof systemd >/dev/null 2>/dev/null; then |