]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/build.xml
Build the compress library on Linux and OS X.
[mirror_edk2.git] / Tools / Source / TianoTools / build.xml
1 <?xml version="1.0" encoding="utf-8" ?>
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="all" basedir=".">
13 <!-- Copyright (c) 2006, Intel Corporation -->
14 <!-- Filename: Tools/Source/build.xml -->
15
16 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
17 <property environment="env" />
18 <property name="WORKSPACE" value="${env.WORKSPACE}" />
19 <property name="WORKSPACE_DIR" value="${WORKSPACE}" />
20 <property name="PACKAGE" value="Tools" />
21 <property name="PACKAGE_DIR" value="${WORKSPACE}/Tools/Source/TianoTools" />
22 <property name="LIB_DIR" value="${PACKAGE_DIR}/Library" />
23 <property name="BIN_DIR" value="${WORKSPACE}/Tools/bin" />
24 <property name="BUILD_MODE" value="PACKAGE" />
25
26 <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml" />
27
28 <path id="classpath">
29 <fileset dir="${WORKSPACE}/Tools/Jars" includes="*.jar"/>
30 <fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>
31 </path>
32
33 <target name="all" depends="init, Tools" />
34
35 <target name="init">
36 <taskdef classpathref="classpath" resource="GenBuild.tasks" />
37 <taskdef classpathref="classpath" resource="net/sf/antcontrib/antlib.xml" />
38
39 <taskdef classpathref="classpath" resource="cpptasks.tasks"/>
40 <typedef classpathref="classpath" resource="cpptasks.types"/>
41
42 <mkdir dir="${BIN_DIR}" />
43 <mkdir dir="${LIB_DIR}" />
44 <if>
45 <os family="unix" />
46 <then>
47 <echo message="OS Family UNIX" />
48 </then>
49 <elseif>
50 <os family="dos" />
51 <then>
52 <echo message="OS Family DOS" />
53 </then>
54 </elseif>
55 <elseif>
56 <os family="mac" />
57 <then>
58 <echo message="OS Family OS X" />
59 </then>
60 </elseif>
61 <else>
62 <echo message="OS Family Unsupported" />
63 </else>
64 </if>
65
66 <ToolChainSetup confPath="${WORKSPACE_DIR}/Tools/Conf" />
67
68 <if>
69 <isset property="env.TOOL_CHAIN" />
70 <then>
71 <property name="ToolChain" value="${env.TOOL_CHAIN}"/>
72 <condition property="gcc">
73 <equals arg1="${ToolChain}" arg2="gcc"/>
74 </condition>
75 </then>
76 </if>
77
78 <condition property="linux" value="true">
79 <os name="Linux"/>
80 </condition>
81
82 <condition property="windows" value="true">
83 <os family="Windows"/>
84 </condition>
85
86 <condition property="OSX" value="true">
87 <os family="Mac"/>
88 </condition>
89
90 </target>
91
92 <target name="Libraries">
93 <subant target="" inheritall="true">
94 <fileset dir="${PACKAGE_DIR}"
95 includes="Common/build.xml CustomizedCompress/build.xml"/>
96 </subant>
97 </target>
98
99 <target name="Tools" depends="Libraries">
100 <subant target="" inheritall="true">
101 <fileset dir="${PACKAGE_DIR}" includes="*/build.xml"
102 excludes="Common/build.xml CustomizedCompress/build.xml"/>
103 </subant>
104 </target>
105
106 <target name="clean">
107 <subant target="clean" inheritall="true">
108 <fileset dir="${PACKAGE_DIR}" includes="*/build.xml"/>
109 </subant>
110 </target>
111
112 <target name="cleanall">
113 <subant target="cleanall" inheritall="true">
114 <fileset dir="${PACKAGE_DIR}" includes="*/build.xml"/>
115 </subant>
116 <delete dir="${LIB_DIR}"/>
117 </target>
118 </project>