GT-2662 removed obsolete ant build.xml for C Parser

This commit is contained in:
ghidra1 2019-10-18 14:35:27 -04:00
parent ea55499623
commit 5252afbe28

View File

@ -1,58 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- NOTE: All targets will be run indepently in the order specified -->
<project name="Ghidra" default="C Parser">
<!--
<property name="buildFile" value="scripts/buildGhidra.xml"/>
<property name="assemble" value="build"/>
-->
<target name="CPP Header">
<echo message="${basedir}" />
<exec executable="javacc"
failonerror="true" dir="${basedir}/CPP" output="CPPjavacc.out">
<!--
<arg value="-debug_parser" />
<arg value="-DEBUG_TOKEN_MANAGER" />
<arg value="-debug_lookahead" />
-->
<arg value="CPP.jj"/>
</exec>
</target>
<target name="C Parser">
<echo message="${basedir}" />
<exec executable="javacc"
failonerror="true" dir="${basedir}/C" output="Cjavacc.out">
<!--
<arg value="-debug_parser" />
<arg value="-DEBUG_TOKEN_MANAGER" />
<arg value="-debug_lookahead" />
-->
<arg value="C.jj"/>
</exec>
</target>
<target name="C++ Parser">
<echo message="${basedir}" />
<java classname="javacc" classpath="../../../../../../../Other/javacc-4.0/bin/lib/javacc.jar"
failonerror="true" fork="true" dir="${basedir}/cplusplus" output="C++javacc.out">
<!--
<arg value="-debug_parser" />
<arg value="-DEBUG_TOKEN_MANAGER" />
<arg value="-debug_lookahead" />
-->
<arg value="CPLUSPLUS.jj"/>
</java>
</target>
</project>