Re: AW: Two targets with the same depends-target

2005-02-14 Thread Alexey N. Solofnenko
- Alexey. Kasparek, Bernadette wrote: I need the following behavivor: Ant all --> common, one, common, two What can I do? Bernadette -- / Alexey N. Solofnenko home: http://trelony.cjb.net/ /

RE: Two targets with the same depends-target

2005-02-14 Thread Keith Hatton
Keith -Original Message- From: Kasparek, Bernadette [mailto:[EMAIL PROTECTED] Sent: 14 February 2005 12:51 To: 'Ant Users List' Subject: AW: Two targets with the same depends-target I need the following behavivor: Ant all --> common, one, common, two

AW: Two targets with the same depends-target

2005-02-14 Thread Kasparek, Bernadette
expect? Jan > -Ursprüngliche Nachricht- > Von: Kasparek, Bernadette [mailto:[EMAIL PROTECTED] > Gesendet am: Montag, 14. Februar 2005 13:26 > An: user@ant.apache.org > Betreff: Two targets with the same depends-target > > Hi everybody, > > I want two targets to have th

Re: Two targets with the same depends-target

2005-02-14 Thread David A. Bartmess
Set a property in mkdir-1 and mkdir-2, and check for its existence in prepare-common. That will stop it from running again. e.g.; On Monday 14 February 2005 05:26 am, Kasparek, Bernadette wrote: > Hi everybody, > > I want two targets to have the same depend-target, b

AW: Two targets with the same depends-target

2005-02-14 Thread Jan . Materne
ect? Jan > -Ursprüngliche Nachricht- > Von: Kasparek, Bernadette [mailto:[EMAIL PROTECTED] > Gesendet am: Montag, 14. Februar 2005 13:26 > An: user@ant.apache.org > Betreff: Two targets with the same depends-target > > Hi everybody, > > I want two targets to have the same dep

Two targets with the same depends-target

2005-02-14 Thread Kasparek, Bernadette
Hi everybody, I want two targets to have the same depend-target, but the second target doesn't call the depend-target again. Example: make something Make something Here "prepare-common" is only called for "mkdir-1"