From: Carsten W. <ca...@us...> - 2004-09-08 20:18:12
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8222 Modified Files: build.xml Log Message: default target usage Index: build.xml =================================================================== RCS file: /cvsroot/jake2/jake2/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 9 Jul 2004 06:50:48 -0000 1.4 --- build.xml 8 Sep 2004 20:18:02 -0000 1.5 *************** *** 1,4 **** <!-- Buildfile --> ! <project name="jake2" default="dist" basedir="."> <taskdef name="proguard" classname="proguard.ant.ProGuardTask"> --- 1,4 ---- <!-- Buildfile --> ! <project name="jake2" default="usage" basedir="."> <taskdef name="proguard" classname="proguard.ant.ProGuardTask"> *************** *** 21,24 **** --- 21,37 ---- </path> + <!-- usage --> + <target name="usage"> + <echo message="command line arguments of build.sh or build.bat"/> + <echo message=""/> + <echo message="bindist only binary distibution"/> + <echo message="srcdist only source distibution"/> + <echo message="all source and binary distibution"/> + <echo message="clean keep jake2-cvs.tar.gz and jake2-cvs.zip"/> + <echo message="distclean delete all"/> + <echo message="jar only dist/lib/jake2.jar"/> + <echo message=""/> + </target> + <!-- initialize directories --> <target name="init"> |