]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Tools/CodeTools/TianoTools/Pccts/build.xml
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / CodeTools / TianoTools / 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="cpptasks.tasks"/>\r
20 <typedef resource="cpptasks.types"/>\r
21 <taskdef resource="net/sf/antcontrib/antlib.xml"/>\r
22\r
23 <target name="init">\r
24 <echo message="Building the EDK Pccts Tools"/>\r
25 </target>\r
26\r
27 <target name="GenTool" depends="init, Pccts">\r
28 <echo message="The EDK Pccts Tools build has completed!"/>\r
29 </target>\r
30\r
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
38 </target>\r
39\r
40 <target name="clean">\r
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
45 <target name="cleanall">\r
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