Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

folks!

I have two questions (may be stupid).

Say, there are three code excerpts:

(1) <target name="test1" depends="INIT">
(2) <target name="test2" depends="INIT">
(3) <target name="TEST3" depends="INIT, test1, test2">

and the TEST3 is a default target of a project.

How many times does INIT executes?

Is it a good idea to extract, for example, macrodefs in a separate file and then include it into the main file (some kind of modules)

share|improve this question
Just put an <echo message="INIT executed" /> in your init-target :-) – strauberry Jul 6 '11 at 8:42
Thank you! Only one time. So that Ant tracks targets. What about the second part? =) – Dmitry Jul 6 '11 at 8:51

1 Answer

up vote 2 down vote accepted

Only once. When test2/TEST3 will execute, it will know that INIT has already been executed.

Also, the target depends on INIT, i.e., for the execution of that target, INIT must have been executed already, if not... then only execution will go to INIT.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.