| Author |
Debugging make file
|
|
| Amrith 2005-04-06, 12:44 pm |
| Hi i would like to know the options or technique to see all the
execution of a make file, which includes the include make files.
make -d option is not giving the sequence in included make files
exection.
Thanks in advance
Amrith
| |
| Måns Rullgård 2005-04-06, 12:44 pm |
| "Amrith" <amrith.anandan@gmail.com> writes:
> Hi i would like to know the options or technique to see all the
> execution of a make file, which includes the include make files.
>
> make -d option is not giving the sequence in included make files
> exection.
If make -d doesn't tell you what you need, there is probably no way.
Could you be a little more specific about what you want to know, and
why?
--
Måns Rullgård
mru@inprovide.com
| |
| Amrith 2005-04-06, 12:44 pm |
| What my exact requirement is to see the execution steps in the included
make file.
| |
| djake@excite.it 2005-04-08, 8:58 am |
|
Amrith wrote:
> What my exact requirement is to see the execution steps in the
included
> make file.
You have simply to redirect output to a file using this syntax into
the makefile:
makefile_command > file_name
| |
| Amrith 2005-04-11, 4:00 pm |
| will it give the activity of the included make files
|
|
|
|