From: Olivier G. <og...@us...> - 2005-11-25 22:23:21
|
Update of /cvsroot/osmose-dev/osmose In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26402/osmose Modified Files: build.xml Log Message: added a "clean" and "all" target in build.xml Index: build.xml =================================================================== RCS file: /cvsroot/osmose-dev/osmose/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 25 Nov 2005 22:15:04 -0000 1.4 --- build.xml 25 Nov 2005 22:23:13 -0000 1.5 *************** *** 7,11 **** <property name="javadoc" location="doc/dev/javadoc"/> ! <target name="init"> <!-- Create the time stamp --> <tstamp/> --- 7,20 ---- <property name="javadoc" location="doc/dev/javadoc"/> ! <target name="all" depends="dist,src-dist,javadoc"/> ! ! <target name="clean"> ! <delete dir="${build}"/> ! <delete> ! <fileset dir="." includes="Osmose-*.tar.gz"/> ! </delete> ! </target> ! ! <target name="init" depends="clean"> <!-- Create the time stamp --> <tstamp/> *************** *** 41,45 **** </target> ! <target name="zip" depends="jar" > <copy todir="${dist}/Osmose-${DSTAMP}"> <fileset dir="launchers/user"/> --- 50,54 ---- </target> ! <target name="dist" depends="jar" > <copy todir="${dist}/Osmose-${DSTAMP}"> <fileset dir="launchers/user"/> |