blob: b97eb6b1517fd9a921f00041b659e8c9cda1f1cc [file] [log] [blame]
<!--
Copyright (c) 2006, 2010 IBM Corporation and others.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
IBM Corporation - initial API and implementation
-->
<project name="UPC Parser" default="upc" basedir=".">
<description>Generates the UPC parser from LPG grammar files</description>
<import file="../../org.eclipse.cdt.core.lrparser/grammar/generate.xml" />
<property name="upc_location" value="../src/org/eclipse/cdt/internal/core/dom/parser/upc" />
<target name="upc">
<description>Generate the UPC parser</description>
<!-- Generate main parser -->
<antcall target="generate_upc">
<param name="grammar_name" value="UPCParser" />
</antcall>
<!-- Generate parser for disambiguating declarations vs expression statements -->
<antcall target="generate_upc">
<param name="grammar_name" value="UPCExpressionParser" />
</antcall>
<!-- Generate parser for disambiguating cast expressions vs binary expressions-->
<antcall target="generate_upc">
<param name="grammar_name" value="UPCNoCastExpressionParser" />
</antcall>
<!-- Generate parser for disambiguating sizeof expressions -->
<antcall target="generate_upc">
<param name="grammar_name" value="UPCSizeofExpressionParser" />
</antcall>
</target>
<target name="generate_upc">
<property name="lpg_include" value="${lpg_include_loc}/c99" />
<antcall target="generate">
<param name="grammar_dir" value="upc" />
<param name="output_dir" value="${upc_location}" />
<param name="grammar_name" value="${grammar_name}" />
</antcall>
</target>
<target name="clean_l_files">
<delete>
<fileset dir="${upc_location}" includes="**/*.l" />
</delete>
</target>
</project>