aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorCarsten Weisse <[email protected]>2004-09-08 20:18:02 +0000
committerCarsten Weisse <[email protected]>2004-09-08 20:18:02 +0000
commit80f6ade3cfac0fd4b2cfa118588fecb4fdb89f71 (patch)
tree31059b6d847a6b272f1ebeebef7f620571ca500e /build.xml
parent5291be91c139eccdab7a121d813331817cc6c424 (diff)
default target usage
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 7be47be..d87a0cf 100644
--- a/build.xml
+++ b/build.xml
@@ -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}"/>