Make Redirection!!!

How can i redirect the output of make into a file.
In linux, we use make >& errfile. We can see the compilation errors and
warnings in errfile. Similarly, do we have anything in QNX?


Thanks
Jalaja

make 2>errfile (for stderr)
make >errfile 2>&1 (for both stdout & stderr)

It has nothing to do with linux or qnx, shell provides redirection and
syntax depends only on the type of shell you use.

  • igor

Jalaja wrote:

How can i redirect the output of make into a file.
In linux, we use make >& errfile. We can see the compilation errors and
warnings in errfile. Similarly, do we have anything in QNX?

Thanks
Jalaja