%% "Vikas Joshi" <[EMAIL PROTECTED]> writes: vj> I have following construct. When I run substituting eval with vj> warning it shows the correct rules constructed. When run using vj> eval it cannot find the rules. Am I missing something ?
Are you sure you're using a new-enough version of GNU make? To use eval you need GNU make 3.80. vj> COMMONSRC := a.c \ vj> xyz\b.c \ vj> pqr\abc\d.c It's a very bad idea to use backslashes in filenames in make. You should always use forward slashes. Most Windows programs will work with both. -- ------------------------------------------------------------------------------- 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
