Skip to content

Commit

Permalink
Added jar target to build.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
googlielmo committed Oct 30, 2008
1 parent ad8eb4d commit fb6a7f0
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
<project name="gleam" default="all">

<target name="jar">
<jar destfile="Gleam.jar" manifest="manifest">
<fileset dir="classes" />
<fileset dir=".">
<include name="bootstrap.scm" />
</fileset>
</jar>
</target>

<target name="all">
<mkdir dir="classes" />
<javac srcdir="gleam"
<javac srcdir="gleam"
destdir="classes"
fork="true"
target="1.4"
source="1.4"/>
<jar destfile="Gleam.jar" manifest="manifest">
<fileset dir="classes" />
<fileset dir=".">
<include name="bootstrap.scm" />
</fileset>
</jar>
source="1.4"/>
<antcall target="jar"></antcall>
</target>


</project>

0 comments on commit fb6a7f0

Please sign in to comment.