dd23984c |
1 | # |
2 | # Copyright (c) 2006, Intel Corporation |
3 | # |
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 | # Filename: target.template |
13 | # |
14 | # ALL Paths are Relative to WORKSPACE |
de4bb9f6 |
15 | |
dd23984c |
16 | # Separate multiple LIST entries with a SINGLE SPACE character, do not use comma characters. |
17 | # Un-set an option by either commenting out the line, or not setting a value. |
de4bb9f6 |
18 | |
dd23984c |
19 | # |
20 | # PROPERTY Type Use Description |
21 | # ---------------- -------- -------- ----------------------------------------------------------- |
22 | # ACTIVE_PLATFORM Filename Recommended Specify the WORKSPACE relative Path and Filename |
23 | # of the platform FPD file that will be used for the build |
24 | # This line is required if and only if the current working |
25 | # directory does not contain one or more FPD files. |
26 | ACTIVE_PLATFORM = EdkNt32Pkg/Nt32.fpd |
27 | |
28 | # TARGET List Optional Zero or more of the following: DEBUG, RELEASE, |
29 | # UserDefined; separated by a space character. |
30 | # If the line is missing or no value is specified, all |
31 | # valid targets specified in the FPD file will attempt |
32 | # to be built. The following line will build all platform |
33 | # targets. |
de4bb9f6 |
34 | TARGET = |
dd23984c |
35 | |
36 | # TARGET_ARCH List Optional What kind of architecture is the binary being target for. |
37 | # One, or more, of the following, IA32, IA64, X64, EBC or ARM. |
38 | # Multiple values can be specified on a single line, using |
39 | # space charaters to separate the values. These are used |
40 | # during the parsing of an FPD file, restricting the build |
41 | # output target(s.) |
42 | # The Build Target ARCH is determined by a logical AND of: |
43 | # FPD BuildOptions: <SupportedArchitectures> tag |
44 | # If not specified, then all valid architectures specified |
45 | # in the FPD file, for which tools are available, will be |
46 | # built. |
df569f61 |
47 | TARGET_ARCH = IA32 |
dd23984c |
48 | |
49 | # TOOL_DEFINITION_FILE Filename Optional Specify the name of the filename to use for specifying |
50 | # the tools to use for the build. If not specified, |
51 | # tools_def.txt will be used for the build. This file |
52 | # MUST be located in the WORKSPACE/Tools/Conf directory. |
cfccc31e |
53 | TOOL_CHAIN_CONF = Tools/Conf/tools_def.txt |
dd23984c |
54 | |
55 | # TAGNAME List Optional Specify the name(s) of the tools_def.txt TagName to use. |
56 | # If not specified, all applicable TagName tools will be |
57 | # used for the build. The list uses space character separation. |
cfccc31e |
58 | TOOL_CHAIN_TAG = MSFT |
de4bb9f6 |
59 | |