Re: implicit rule invocation issue

2004-07-26 Thread Boris Kolpackov
"Hakenson, Gary C." <[EMAIL PROTECTED]> writes: > Do you have any suggestions as to how this may be accomplished? When you say VPATH = /d you are in some sense asking make to add directory /d to the make's current directory. When you say %.d : %.c ... you are in some sense asking

implicit rule invocation issue

2004-07-26 Thread Hakenson, Gary C.
Hi developers, I have an issue with make that I am unable to resolve on my own. My makefile contains an implicit rule as follows: %.d : %.c (command to create a .d file from the .c file here) I also have the VPATH variable set as follows: VPATH = /d When I run