mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 19:42:14 +00:00
GT-2662 removed obsolete ant build.xml for C Parser
This commit is contained in:
parent
ea55499623
commit
5252afbe28
@ -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>
|
Loading…
Reference in New Issue
Block a user