]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CCode/Source/Pccts/build.xml
Standardized property name WORKSPACE and fixed cleanall messages.
[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="net/sf/antcontrib/antlib.xml"/>
20
21 <target name="init">
22 <echo message="Building the EDK Pccts Tools"/>
23 </target>
24
25 <target name="GenTool" depends="init, Pccts">
26 <echo message="The EDK Pccts Tools build has completed!"/>
27 </target>
28
29 <target name="Pccts" depends="init">
30 <subant target="" inheritall="true">
31 <fileset dir="${PACKAGE_DIR}/Pccts/antlr" includes="build.xml"/>
32 </subant>
33 <subant target="" inheritall="true">
34 <fileset dir="${PACKAGE_DIR}/Pccts/dlg" includes="build.xml"/>
35 </subant>
36 </target>
37
38 <target name="clean">
39 <ant dir="${PACKAGE_DIR}/Pccts/antlr" target="clean" inheritAll="true"/>
40 <ant dir="${PACKAGE_DIR}/Pccts/dlg" target="clean" inheritAll="true"/>
41 </target>
42
43 <target name="cleanall">
44 <echo message="Removing Object Files and the Executables from the package: Pccts"/>
45 <ant dir="${PACKAGE_DIR}/Pccts/antlr" target="cleanall" inheritAll="true"/>
46 <ant dir="${PACKAGE_DIR}/Pccts/dlg" target="cleanall" inheritAll="true"/>
47 </target>
48
49 </project>