diff options
author | Carsten Weisse <[email protected]> | 2004-09-08 20:18:02 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2004-09-08 20:18:02 +0000 |
commit | 80f6ade3cfac0fd4b2cfa118588fecb4fdb89f71 (patch) | |
tree | 31059b6d847a6b272f1ebeebef7f620571ca500e /build.xml | |
parent | 5291be91c139eccdab7a121d813331817cc6c424 (diff) |
default target usage
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -1,5 +1,5 @@ <!-- Buildfile --> -<project name="jake2" default="dist" basedir="."> +<project name="jake2" default="usage" basedir="."> <taskdef name="proguard" classname="proguard.ant.ProGuardTask"> <classpath> @@ -20,6 +20,19 @@ <pathelement location="lib/joal/linux/joal.jar"/> </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"> <mkdir dir="${build}"/> |