10 lines
109 B
Bash
10 lines
109 B
Bash
|
|
#
|
||
|
|
# Make alias for working with makefiles
|
||
|
|
#
|
||
|
|
#
|
||
|
|
|
||
|
|
alias m="make"
|
||
|
|
alias mi="make install"
|
||
|
|
alias mb="make build"
|
||
|
|
|