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