summaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-03-26 19:11:51 +0100
committerMichael Bien <[email protected]>2010-03-26 19:11:51 +0100
commit92460344efc4a3c911e227a93983b8a531cf10b2 (patch)
tree16583825a54b94d15f491a976a393e9cc268099d /make/build.xml
parent8df26894b51fef9c5e88f42785089561dbd62895 (diff)
removed ant warnings:
-Warning: Reference antlr.classpath has not been set at runtime, but was found during runtime -duplicated project name
Diffstat (limited to 'make/build.xml')
-rwxr-xr-xmake/build.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/make/build.xml b/make/build.xml
index 7cce488..9460b3f 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -452,30 +452,30 @@
</copy>
<!-- Generate the Java files from the C grammar using ANTLR. -->
- <antcall target="generate.grammar">
+ <antcall target="generate.grammar" inheritRefs="true">
<param name="output.dir" value="${generated.java.from.c.grammar}" />
<param name="target" value="StdCParser.g" />
</antcall>
- <antcall target="generate.c.grammar.glib">
+ <antcall target="generate.c.grammar.glib" inheritRefs="true">
<param name="output.dir" value="${generated.java.from.c.grammar}" />
<param name="target" value="GnuCParser.g" />
<param name="glib" value="StdCParser.g" />
</antcall>
- <antcall target="generate.grammar">
+ <antcall target="generate.grammar" inheritRefs="true">
<param name="output.dir" value="${generated.java.from.c.grammar}" />
<param name="target" value="GnuCTreeParser.g" />
</antcall>
- <antcall target="generate.c.grammar.glib">
+ <antcall target="generate.c.grammar.glib" inheritRefs="true">
<param name="output.dir" value="${generated.java.from.c.grammar}" />
<param name="target" value="GnuCEmitter.g" />
<param name="glib" value="GnuCTreeParser.g" />
</antcall>
- <antcall target="generate.c.grammar.glib">
+ <antcall target="generate.c.grammar.glib" inheritRefs="true">
<param name="output.dir" value="${generated.java.from.c.grammar}" />
<param name="target" value="HeaderParser.g" />
<param name="glib" value="GnuCTreeParser.g" />
</antcall>
- <antcall target="generate.grammar">
+ <antcall target="generate.grammar" inheritRefs="true">
<param name="output.dir" value="${generated.java.from.j.grammar}" />
<param name="target" value="JavaParser.g" />
</antcall>