%% "Vesselin Peev" <[EMAIL PROTECTED]> writes: vp> I have multiple interdependent targets in a single GNU Makefile, vp> each depending on source files that have the same names as the vp> source files in another target but residing in a different vp> directory. How do I fetch the files with the same names from the vp> appropriate directory for each target unless I specify the full vp> path for each file?
I don't really understand what you're trying to do (a small, simple example would be helpful), but I think the short answer is "you can't". If you're dealing with files with the same names in different directories you generally need to write out the directory prefix, or how can make know which ones you meant? -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
