[Commits] (bcm) clean up some of the target descriptions and nuke
an unnecessary target
commits at osafoundation.org
commits at osafoundation.org
Tue Apr 26 14:04:25 PDT 2005
Commit by: bcm
Modified files:
server/build.xml 1.43 1.44
Log message:
clean up some of the target descriptions and nuke an unnecessary target
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/server/build.xml.diff?r1=text&tr1=1.43&r2=text&tr2=1.44
Index: server/build.xml
diff -u server/build.xml:1.43 server/build.xml:1.44
--- server/build.xml:1.43 Tue Apr 26 13:36:16 2005
+++ server/build.xml Tue Apr 26 14:04:24 2005
@@ -151,9 +151,8 @@
</javac>
</target>
- <target name="clean"
- depends="clean-core,clean-web"
- description="clean all subsystems"/>
+ <target name="clean" depends="clean-core,clean-web"
+ description="remove all compiled source code and helper files"/>
<target name="clean-core" description="clean core subsystem">
<delete dir="${core.build}"/>
@@ -469,10 +468,10 @@
<target name="dist"
depends="dist-tomcat,dist-web,dist-server,dist-data"
- description="install and configure Cosmo server"/>
+ description="package the distribution"/>
<target name="dist-release" description="generate a release distribution"
- depends="dist-clean-full,dist">
+ depends="dist-clean,dist">
<tar destfile="${cosmo.dist.version}.tar.gz"
compression="gzip" longfile="gnu">
<tarfileset dir="${cosmo.dist.version}"
@@ -481,7 +480,7 @@
</target>
<target name="dist-clean"
- description="removed the release distribution">
+ description="remove the distribution package and helper files">
<delete file="${cosmo.dist.version}.tar.gz"/>
<delete dir="${cosmo.dist.version}"/>
</target>
@@ -491,12 +490,6 @@
<delete dir="${cosmo.dist.version}/data"/>
</target>
- <target name="dist-clean-full"
- description="remove the dist directory and unpacked dependencies">
- <delete dir="${cosmo.dist}"/>
- <delete dir="${cosmo.tmp}/${ext.tomcat.package}"/>
- </target>
-
<target name="dist-tag"
description="tag the distribution in CVS">
<cvs command="tag -F rel-${cosmo.tag}"/>
More information about the Commits
mailing list