[EMAIL PROTECTED] wrote:
> Hey all,
>
> I am writing a "help" target in my buildfile and want to be able to
> reference the name of the buildfile.
>
> Is there a variable that holds this? ${ant.buildfile.name}????
>
> I want to do something like
> Usage: ant -buildfile ${ant.buildfile.name} stuff stuff and more stuff
>
> Thanks,
>
> Alex
See http://jakarta.apache.org/ant/manual/index.html , Built-in Properties
section for a list of available properties. The one you are looking for
is ant.file.
Glenn