Search code examples
makefilealiasbash

Make "make" default to "make -j 8"


Is there a way that I can make

$ make

default to:

$ make -j 8

?


Solution

  • alias make="make -j 8", assuming bash shell