Hi Folks,
  Here is my problem. 

Assume the makefile is:

targs = %.x %.z
$(targs):
      echo "$(@) $(suffix $(@))"
all:a.x a.z

Now, if I do gmake all, the output is:

echo "a.x .x"
a.x .x

Question is, why is it not trying to build a.z? There is no a.x/a.z
files present in my current directory.

Thanks
-Samya


_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to