Is there a command line way in make to find out which of the prerequisites of a target is not update?
Thanks.
|
Is there a command line way in make to find out which of the prerequisites of a target is not update? Thanks.
| ||||
|
feedback
|
should give you more than enough information to debug your makefile. Be warned: it will take some time and effort to analyze the output but loading the output into your favorite editor and doing searches will assist a lot. You can greatly reduce the amount of debugging output if you specify the specific target you're interested in. So if you're only interested in the
(assuming you have a The
where flags can be:
It looks like
| |||||
feedback
|
|
Your question is a little unclear. If you want to see which prerequisite files have not been modified recently, use ls -l to see their modification time. If you want to see what make is doing, try this:
# Make will announce when it is making this target, and why.
sometarget: preq1 preq2 preq3
@echo making $@
@echo The following preqs are newer than the target: $?
do_things
| |||||
feedback
|
|
Are you looking for Make's "dry run"? It will print out what make is doing without actually doing so, allowing you to see what happens. The flag is | |||
feedback
|
|
There's also GNU make with a debugger and better trace/error output http://bashdb.sf.net/remake screencast: http://showmedo.com/videotutorials/video?name=linuxBernsteinMakeDebug1&fromSeriesID=40 | |||
|
feedback
|
echodebugging at each target to figure that out? – Earlz Nov 17 '09 at 0:58