gitweb on Svarog
projekti pod git sistemom za održavanje verzija -- projects under the git version control system
summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f4e5d42)
raw | patch | inline | side by side (parent: f4e5d42)
author | Doni Pracner <quinnuendo@gmail.com> | |
Wed, 3 Dec 2014 11:51:23 +0000 (12:51 +0100) | ||
committer | Doni Pracner <quinnuendo@gmail.com> | |
Wed, 3 Dec 2014 11:51:23 +0000 (12:51 +0100) |
build.xml | patch | blob | history |
diff --git a/build.xml b/build.xml
index c51b2abc3af31468097c7063692bd5b11fca81dc..f8bde044573c07a7805082aab73faef0bf643056 100644 (file)
--- a/build.xml
+++ b/build.xml
<target name="mj-decode" description="decode a MJ obj file given in ${filename}">
<echo message="${filename}" />
- <java classpath="${compiler.class.dir}:${compiler.class.jar}" classname="${compiler.classname.decoder}">
+ <java classpath="${compiler.class.dir}:${compiler.class.jar}"
+ classname="${compiler.classname.decoder}"
+ output="${filename}.decoded" >
<arg value="${filename}" />
</java>
</target>
- <target name="mj-decode-samples" description="decode all of the compiled samples and save into file 'decoded.txt'">
- <record name="${samples.temp.dir}/decoded.txt" emacsmode="true" loglevel="info"/>
+ <target name="mj-decode-samples" description="decode all of the obj files in ${samples.temp.dir}">
<foreach param="filename" target="mj-decode">
<path>
<fileset dir='${samples.temp.dir}'>
</fileset>
</path>
</foreach>
- <record name="${samples.temp.dir}/decoded.txt" action="stop"/>
</target>
<target name="mj-run" description="run a MJ obj file given in ${filename} with ${inputstring}">