tech-toolchain archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: make .ORDER
In article <20130126161446.GE1037%trav.math.uni-bonn.de@localhost>,
Edgar Fuß <ef%math.uni-bonn.de@localhost> wrote:
>> In a non-parallel make it's sufficient to write
>>
>> X: A B
>>
>> and it will always do A before B.
>Ah, I see. Is that traditional behaviour or guaranteed?
>
>And what if I write
>
>.ORDER A B
>
>X: B A
>
Try it:
.ORDER: A B
X: B A
echo ${.TARGET}
A:
echo ${.TARGET}
B:
echo ${.TARGET}
What do you think it should print?
christos
Home |
Main Index |
Thread Index |
Old Index