in reply to capturing compile errors

Nice solution, but I will get lazier by just doing the following -
make 2>&1 | tee ./compile.log
or write a script called 'go' -
#!/usr/bin/bash make 2>&1 | tee ./compile.log
And when I want to compile the program again, I just say 'go'.