summaryrefslogtreecommitdiff
path: root/test/benchmark/sources/tak/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'test/benchmark/sources/tak/build.xml')
-rw-r--r--test/benchmark/sources/tak/build.xml36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/benchmark/sources/tak/build.xml b/test/benchmark/sources/tak/build.xml
deleted file mode 100644
index 1fbef5e75d..0000000000
--- a/test/benchmark/sources/tak/build.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<project name="tak" default="run">
-
- <import file="../../predef.xml"/>
-
- <target name="init">
- <mkdir dir="${benchmark.classes.dir}/${ant.project.name}"/>
- </target>
-
- <!-- Compile the tak benchmark without optimizations -->
- <target name="compile-noopt"
- description="Compile the ${ant.project.name} benchmark with no optimizations">
- <compile-benchmark files="${benchmark.sources.dir}/${ant.project.name}/tak.scala"
- destination="${benchmark.classes.dir}/${ant.project.name}/noopt"/>
- </target>
-
- <!-- Compile the tak benchmark with optimizations -->
- <target name="compile-opt"
- description="Compile the ${ant.project.name} benchmark with opt">
- <compile-benchmark files="${benchmark.sources.dir}/${ant.project.name}/tak.scala"
- destination="${benchmark.classes.dir}/${ant.project.name}/opt"
- additionalArgs="-separate:no -Xinline"/>
- </target>
-
-
- <target name="run" depends="init,compile-noopt,compile-opt"
- description="Run this benchmark">
- <run-benchmark location="${benchmark.classes.dir}/${ant.project.name}/noopt"/>
- <run-benchmark location="${benchmark.classes.dir}/${ant.project.name}/opt"/>
- </target>
-
- <target name="clean.benchmark"
- description="Clean the object files for ${ant.project.name} benchmark">
- <delete dir="${benchmark.classes.dir}/${ant.project.name}"/>
- </target>
-
-</project>