Did you ever have to compile a large project with make? It can be realy slow. Use the -j option to allow make to run multiple jobs simultaneously:

# run 4 jobs simultaneously
make -j 4

As a rule of thumb, choose -j to be the number of CPU cores.