* Add clean target and remove double invocation of package-modules target

This commit is contained in:
hns 2007-04-04 23:39:39 +00:00
parent e2dad09d4c
commit 0d0171f07d

View file

@ -74,6 +74,7 @@
<echo message=" app [name] --> gets an application from the cvs and zips it"/> <echo message=" app [name] --> gets an application from the cvs and zips it"/>
<echo message=" module [name] --> gets a module from the cvs and zips it"/> <echo message=" module [name] --> gets a module from the cvs and zips it"/>
<echo message=" core --> generates core for production updates (zip and tar.gz)"/> <echo message=" core --> generates core for production updates (zip and tar.gz)"/>
<echo message=" clean --> clean up temporary build directories and files"/>
<echo message=""/> <echo message=""/>
<echo message=" usage --> provides help on using the build tool (default)"/> <echo message=" usage --> provides help on using the build tool (default)"/>
<echo message=""/> <echo message=""/>
@ -242,9 +243,6 @@
<!-- checkout the demo apps (and zip manage-app) --> <!-- checkout the demo apps (and zip manage-app) -->
<antcall target="package-apps" /> <antcall target="package-apps" />
<!-- checkout the helmaLib modules and add the zipped helmaTools -->
<antcall target="package-modules" />
<!-- create the main part of helma --> <!-- create the main part of helma -->
<antcall target="package-raw"> <antcall target="package-raw">
<param name="distribution" value="main" /> <param name="distribution" value="main" />
@ -474,6 +472,13 @@
</zip> </zip>
</target> </target>
<!-- =================================================================== -->
<!-- Cleans up temporary build directories -->
<!-- =================================================================== -->
<target name="clean" depends="init">
<delete dir="${build.work}" />
<delete dir="${build.classes}" />
</target>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- Gets an application from the cvs and zips/targzs it --> <!-- Gets an application from the cvs and zips/targzs it -->