]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/VfrCompile/build.xml
690d10ab8ea737a8855ec275de9cd1c6c4e5b9fa
[mirror_edk2.git] / Tools / Source / TianoTools / VfrCompile / 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 VfrCompile Tool
15 Copyright (c) 2006, Intel Corporation
16 -->
17 <property name="ToolName" value="VfrCompile"/>
18 <property name="FileSet" value="*.cpp"/>
19 <property name="FileSetPccts" value="ATokenBuffer.cpp DLexerBase.cpp AParser.cpp"/>
20 <taskdef resource="cpptasks.tasks"/>
21 <typedef resource="cpptasks.types"/>
22 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
23
24 <property environment="env"/>
25
26 <property name="LINK_OUTPUT_TYPE" value="static"/>
27 <property name="BUILD_DIR" value="${PACKAGE_DIR}/${ToolName}/tmp"/>
28
29 <target name="GenTool" depends="init, Antlr, Dlg, Tool">
30 <echo message="Building the EDK Tool: ${ToolName}"/>
31 </target>
32
33 <target name="init">
34 <echo message="The EDK Tool: ${ToolName}"/>
35 <mkdir dir="${BUILD_DIR}"/>
36 <if>
37 <equals arg1="${GCC}" arg2="cygwin"/>
38 <then>
39 <echo message="Cygwin Family"/>
40 <property name="ToolChain" value="gcc"/>
41 </then>
42 <elseif>
43 <os family="dos"/>
44 <then>
45 <echo message="Windows Family"/>
46 <property name="ToolChain" value="msvc"/>
47 </then>
48 </elseif>
49 <elseif>
50 <os family="unix"/>
51 <then>
52 <echo message="UNIX Family"/>
53 <property name="ToolChain" value="gcc"/>
54 </then>
55 </elseif>
56
57 <else>
58 <echo>
59 Unsupported Operating System
60 Please Contact Intel Corporation
61 </echo>
62 </else>
63 </if>
64 <if>
65 <equals arg1="${ToolChain}" arg2="msvc"/>
66 <then>
67 <property name="ext_static" value=".lib"/>
68 <property name="ext_dynamic" value=".dll"/>
69 <property name="ext_exe" value=".exe"/>
70 </then>
71 <elseif>
72 <equals arg1="${ToolChain}" arg2="gcc"/>
73 <then>
74 <property name="ext_static" value=".a"/>
75 <property name="ext_dynamic" value=".so"/>
76 <property name="ext_exe" value=""/>
77 </then>
78 </elseif>
79 </if>
80 <condition property="CheckDepends">
81 <uptodate targetfile="${WORKSPACE}/Tools/bin/VfrCompile${ext_exe}">
82 <srcfiles dir="${WORKSPACE}/Tools/Source/TianoTools/VfrCompile"
83 includes="EfiVfrParser.cpp DLGLexer.cpp VfrCompile.cpp VfrCompile.g VfrServices.cpp parser.dlg"/>
84 </uptodate>
85 </condition>
86
87 <condition property="gxx_extra_libs" value="stdc++ System gcc_s.10.4 gcc">
88 <os family="mac"/>
89 </condition>
90
91 <condition property="gxx_extra_libs" value="stdc++">
92 <os name="linux"/>
93 </condition>
94
95 <condition property="gxx_extra_libs" value="stdc++">
96 <os family="windows"/>
97 </condition>
98
99 </target>
100
101 <target name="Antlr" depends="init" unless="CheckDepends">
102 <exec dir="${basedir}/${ToolName}" executable="antlr" failonerror="TRUE">
103 <arg line="-CC -e3 -ck 3 -o . VfrCompile.g"/>
104 </exec>
105 </target>
106
107 <target name="Dlg" depends="Antlr" unless="CheckDepends">
108 <exec dir="${basedir}/${ToolName}" executable="dlg" failonerror="TRUE">
109 <arg line="-C2 -i -CC -o . parser.dlg"/>
110 </exec>
111 </target>
112
113 <target name="Tool" depends="init, Dlg">
114 <cc name="g++" objdir="${BUILD_DIR}"
115 outfile="${BIN_DIR}/${ToolName}"
116 outtype="executable"
117 optimize="speed">
118
119 <fileset dir="${basedir}/${ToolName}"
120 includes="${FileSet}" />
121
122 <fileset dir="${basedir}/Pccts/h"
123 includes="${FileSetPccts}" />
124
125 <includepath path="${env.WORKSPACE}/Tools/Source/TianoTools/Pccts/h"/>
126 <includepath path="${env.WORKSPACE}/MdePkg/Include"/>
127 <includepath path="${env.WORKSPACE}/MdePkg/Include/Ia32"/>
128 <includepath path="${env.WORKSPACE}/MdePkg/Include/Common"/>
129 <includepath path="${env.WORKSPACE}/MdePkg/Include/Protocol"/>
130 <includepath path="${PACKAGE_DIR}/Common"/>
131 <libset dir="${LIB_DIR}" libs="CommonTools"/>
132 <syslibset libs="${gxx_extra_libs}" if="gcc"/>
133 </cc>
134 </target>
135
136 <target name="clean" depends="init">
137 <echo message="Removing Intermediate Files Only"/>
138 <delete>
139 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
140 </delete>
141 </target>
142
143 <target name="cleanall" depends="init">
144 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
145 <delete dir="${BUILD_DIR}">
146 <fileset dir="${BIN_DIR}" includes="${ToolName}${ext_exe}"/>
147 </delete>
148 </target>
149
150 </project>