Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are two pattern rules in my Makefile. target1 actually matches both these two rules. When I run the makefile, it always try to run the recipes of pattern rule1 instead of pattern rule2 I desire. For a specific target(target1 for example), is it possible to have makefile process skip matching rule1 and go ahead to find the second match(rule2)???

  ## pattern rule 1
    %.xml: $^
       recipes ....

  ## pattern rule 2
    /opt/test1/xml/default%.xml: $^
       recipes ....

  ## target1
    /opt/test1/xml/default1.xml: prereq
share|improve this question
Something's not right here. The automatic variable $^ has no value in the prerequisite list. Are you sure these rules do what you think they do? – Beta Jan 27 at 14:54
Also, which version of Make are you using? – Beta Jan 27 at 15:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.