On 3 February 2011 10:23, Richard Miller <[email protected]> wrote: > On the other hand, can anyone explain this? > term% mk -f foo.mk x.y z.w > echo making x.y > making x.y > echo making z.w > making z.w > echo making command line arguments > making command line arguments > term%
yes, it's because of this:
/* fake a new rule with all the args as prereqs */
you're not supposed to have a metarule with a target
that matches "command line arguments"!
