-
Notifications
You must be signed in to change notification settings - Fork 24
/
build.xml
45 lines (37 loc) · 1.15 KB
/
build.xml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" ?>
<project name="FasterGC" default="compile">
<target name="init" >
<mkdir dir="build/classes" />
<mkdir dir="dist" />
</target>
<target name="compile" depends="init" >
<javac srcdir="src" destdir="build/classes" debug="on" debuglevel="lines,vars,source" source="1.6">
<classpath>
<pathelement location="extlibs/jargs.jar"/>
<pathelement location="extlibs/commons-io-1.4.jar"/>
<pathelement path="build/classes"/>
</classpath>
</javac>
</target>
<target name="clean" depends="init" >
<delete dir="build" />
<delete dir="dist" />
</target>
<target name="archive" depends="compile" >
<jar destfile="dist/FasterGC.jar">
<fileset dir="build/classes"/>
</jar>
</target>
<target name="runlevenshtein" depends="archive">
<exec executable="./runlevenshtein"/>
</target>
<target name="runsw" depends="archive">
<exec executable="./runsw"/>
</target>
<target name="runhamming" depends="archive">
<exec executable="./runhamming"/>
</target>
<target name="runaes" depends="archive">
<exec executable="./runaes"/>
</target>
</project>