bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #27047] Difficulties defining prerequisites for pattern targets.


From: Boris Kolpackov
Subject: [bug #27047] Difficulties defining prerequisites for pattern targets.
Date: Fri, 17 Jul 2009 22:57:21 +0000
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.1) Gecko/2008071420 Iceweasel/3.0.1 (Debian-3.0.1-1)

Follow-up Comment #3, bug #27047 (project make):

You can get the desired behavior using the second expansion feature (note
$$):

.SECONDEXPANSION:

all:    test1001.out

foo:
        @echo making foo

test1%.out:     TEST=foo

test%.out:      $${TEST}
        @echo making test$*.out with TEST=${TEST}


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?27047>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]