* added svn:ignore property for build

* added doc target to build.xml
This commit is contained in:
tmont 2009-07-08 09:34:42 +00:00
parent 9c095eac8c
commit 321e7490fd

View File

@ -9,6 +9,23 @@
<delete file="${dir.src}/${ant.project.name}/util/Product.php"/>
</target>
<target name="doc" depends="init, set-exe-suffix, prepare-build" description="Generates source code documentation using phpDocument">
<exec executable="phpdoc${exe.suffix}" failonerror="false">
<arg value="-ti"/>
<arg value="Testify"/>
<arg value="-pp"/>
<arg value="on"/>
<arg value="-ue"/>
<arg value="on"/>
<arg value="-i"/>
<arg value="external/"/>
<arg value="-d"/>
<arg value="${dir.src}"/>
<arg value="-t"/>
<arg value="${build.base}/doc"/>
</exec>
</target>
<target name="help" depends="set-exe-suffix" description="Displays information about available targets">
<exec executable="ant${exe.suffix}" failonerror="true">
<arg value="-p"/>