bonasaurus1 / hobbes

an interpreted dynamic language. Philosophy: minimalist and sensible like Python, but everything's an object like Ruby and Smalltalk.

This URL has Read+Write access

hobbes / build.xml
100644 25 lines (24 sloc) 0.803 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<project name="Hobbes" default="compile_and_make_jar" basedir=".">
<property name="src" location="src"/>
<property name="build" location="build"/>
<target name="compile_and_make_jar">
<mkdir dir="${build}"/>
<antcall target="compile"/>
<antcall target="create_run_jar"/>
<delete dir="${build}"/>
</target>
<target name="compile">
<javac srcdir="${src}" destdir="${build}" debug="true"/>
</target>
<target name="create_run_jar">
<jar destfile="${basedir}/hobbes.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="hobbes.Main"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${build}"/>
</jar>
</target>
</project>