On Thu, 1 Nov 2001, Todd Chambery wrote:

> I'd like to make it so they could only be run when called from within the
> buildfile (not when listed on the command line), thereby more tightly
> controlling how my buildfile can be used.  Is there any facility for doing
> this?

Not really. 

You can get something like that with "if=", e.g.

<target name="entrypoint">
 <property name="entryok" value="true" />
 ...
</target>

<target name="not_entrypoint" if="entryok">
 ...
</target>

Not 100% foolproof, though.

//Mikko



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to