AW: problem in enabling wildcard

2005-10-28 Thread Jan.Materne
>If you want to build everything, have a target called "all", >or even "*" >(yes, that is a legal target name), and invoke it. Writing that target is simple: Jan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: problem in enabling wildcard

2005-10-28 Thread Steve Loughran
Rajnish Singh wrote: Hi Jan, When we specify '*' in target means that all the target in the specified build files will be executed like when we say < ant antfile="build1.xml" target="*" /> means all the targets in the build1.xml will be executed. No that's silly. Ant doesn't do that. The only

AW: problem in enabling wildcard

2005-10-28 Thread Jan.Materne
the build1.xml will be executed. > >Rajnish > >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: Friday, October 28, 2005 3:26 PM >To: user@ant.apache.org >Subject: AW: problem in enabling wildcard > > >Hi Rajnish, > >never heard f

RE: problem in enabling wildcard

2005-10-28 Thread Rajnish Singh
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, October 28, 2005 3:26 PM To: user@ant.apache.org Subject: AW: problem in enabling wildcard Hi Rajnish, never heard from "*" - nothing in the manual ... Which target should be executed on "*" ? Jan >--

AW: problem in enabling wildcard

2005-10-28 Thread Jan.Materne
Hi Rajnish, never heard from "*" - nothing in the manual ... Which target should be executed on "*" ? Jan >-Ursprüngliche Nachricht- >Von: Rajnish Singh [mailto:[EMAIL PROTECTED] >Gesendet: Freitag, 28. Oktober 2005 11:34 >An: user@ant.apache.org >Be

problem in enabling wildcard

2005-10-28 Thread Rajnish Singh
Hi, In my project when I am writing it compiles well through the cmd, but when compiling the same build file through myeclipse I am getting the error Target `*' does not exist in this project. If I replace * to some specific target like 'compile" or "clean" or anything else, it is compiled. Ne