]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CCode/Source/Pccts/build.xml
More moves for Tool Packages
[mirror_edk2.git] / Tools / CCode / Source / Pccts / build.xml
1 <?xml version="1.0" ?>
2 <!--
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 -->
12 <project default="GenTool" basedir=".">
13 <!--
14 EDK Pccts Tool
15 Copyright (c) 2006, Intel Corporation
16 <property name="ToolName" value="Pccts"/>
17 -->
18
19 <taskdef resource="cpptasks.tasks"/>
20 <typedef resource="cpptasks.types"/>
21 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
22
23 <target name="init">
24 <echo message="Building the EDK Pccts Tools"/>
25 </target>
26
27 <target name="GenTool" depends="init, Pccts">
28 <echo message="The EDK Pccts Tools build has completed!"/>
29 </target>
30
31 <target name="Pccts" depends="init">
32 <subant target="" inheritall="true">
33 <fileset dir="${PACKAGE_DIR}/Pccts/antlr" includes="build.xml"/>
34 </subant>
35 <subant target="" inheritall="true">
36 <fileset dir="${PACKAGE_DIR}/Pccts/dlg" includes="build.xml"/>
37 </subant>
38 </target>
39
40 <target name="clean">
41 <ant dir="${PACKAGE_DIR}/Pccts/antlr" target="clean" inheritAll="true"/>
42 <ant dir="${PACKAGE_DIR}/Pccts/dlg" target="clean" inheritAll="true"/>
43 </target>
44
45 <target name="cleanall">
46 <ant dir="${PACKAGE_DIR}/Pccts/antlr" target="cleanall" inheritAll="true"/>
47 <ant dir="${PACKAGE_DIR}/Pccts/dlg" target="cleanall" inheritAll="true"/>
48 </target>
49
50 </project>