]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/CCode/Source/Pccts/build.xml
Fixed all scripts to use new directory layout.
[mirror_edk2.git] / Tools / CCode / Source / Pccts / build.xml
CommitLineData
878ddf1f 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
878ddf1f 16 <property name="ToolName" value="Pccts"/>\r
af1dd46d 17-->\r
878ddf1f 18\r
19 <taskdef resource="cpptasks.tasks"/>\r
20 <typedef resource="cpptasks.types"/>\r
21 <taskdef resource="net/sf/antcontrib/antlib.xml"/>\r
22\r
878ddf1f 23 <target name="init">\r
af1dd46d 24 <echo message="Building the EDK Pccts Tools"/>\r
25 </target>\r
878ddf1f 26\r
af1dd46d 27 <target name="GenTool" depends="init, Pccts">\r
28 <echo message="The EDK Pccts Tools build has completed!"/>\r
878ddf1f 29 </target>\r
30\r
af1dd46d 31 <target name="Pccts" depends="init">\r
32 <subant target="" inheritall="true">\r
33 <fileset dir="${PACKAGE_DIR}/Pccts/antlr" includes="build.xml"/>\r
34 </subant>\r
35 <subant target="" inheritall="true">\r
36 <fileset dir="${PACKAGE_DIR}/Pccts/dlg" includes="build.xml"/>\r
37 </subant>\r
878ddf1f 38 </target>\r
39\r
af1dd46d 40 <target name="clean">\r
878ddf1f 41 <ant dir="${PACKAGE_DIR}/Pccts/antlr" target="clean" inheritAll="true"/>\r
42 <ant dir="${PACKAGE_DIR}/Pccts/dlg" target="clean" inheritAll="true"/>\r
43 </target>\r
44\r
af1dd46d 45 <target name="cleanall">\r
878ddf1f 46 <ant dir="${PACKAGE_DIR}/Pccts/antlr" target="cleanall" inheritAll="true"/>\r
47 <ant dir="${PACKAGE_DIR}/Pccts/dlg" target="cleanall" inheritAll="true"/>\r
48 </target>\r
49\r
50</project>\r