summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorknut <>2006-03-31 21:46:47 +0000
committerknut <>2006-03-31 21:46:47 +0000
commitcc9fdb6054c896b10ceaab73059e55031ae44d29 (patch)
treea453192573ee2d9f9beb44a651ba1398b96e6eb6 /build.xml
parentf5c14fc4d955c8ea2a98e05be448b08fa5c5616c (diff)
Removed tests from the build process and added a new target 'all' to run everything
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 908f6792..586f4e7c 100644
--- a/build.xml
+++ b/build.xml
@@ -144,6 +144,7 @@
<target name="doc" description="Generate API documentation">
<delete dir="${doc.build.dir}"/>
+ <mkdir dir="${doc.build.dir}"/>
<phpdoc title="PRADO ${version} API Documentation" destdir="${doc.build.dir}" sourcepath="${src.dir}" output="HTML:Smarty:PHP"/>
</target>
@@ -220,14 +221,15 @@
</copy>
</target>
- <target name="build" depends="versioncheck,prepare,lint,lint-demos,test,doc,pradolite,build-standard-package" description="Creating the main PRADO build">
- </target>
+ <target name="build" depends="versioncheck,prepare,doc,pradolite,build-standard-package" description="Creating the main PRADO build"/>
<target name="dist" depends="build" description="Create PRADO distributions">
<tar compression="gzip" destFile="${dist.tarfile}" basedir="${build.base.dir}/standard"/>
<zip destfile="${dist.zipfile}" basedir="${build.base.dir}/standard"/>
</target>
+ <target name="all" depends="lint,lint-demos,test,build,dist" description="Run all targets"/>
+
<target name="clean">
<echo>Cleaning up the mess</echo>
<delete dir="${build.base.dir}"/>