blob: 5ce56d3fe82f3741f58f2d36e949ed6bfccc056e [file] [log] [blame]
jljusten07a756b2007-10-17 01:54:36 +00001#
2# Copyright (c) 2006-2007, 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
15
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.
18
19#
20# PROPERTY Type Use Description
21# ---------------- -------- -------- -----------------------------------------------------------
22# ACTIVE_PLATFORM Filename Recommended Specify the WORKSPACE relative Path and Filename
jwang36106c6882007-12-25 09:23:17 +000023# of the platform description file that will be used for the
24# build. This line is required if and only if the current
25# working directory does not contain one or more description
26# files.
jljusten07a756b2007-10-17 01:54:36 +000027ACTIVE_PLATFORM = Nt32Pkg/Nt32Pkg.dsc
28
29# TARGET List Optional Zero or more of the following: DEBUG, RELEASE,
30# UserDefined; separated by a space character.
31# If the line is missing or no value is specified, all
jwang36106c6882007-12-25 09:23:17 +000032# valid targets specified in the platform description file
33# will attempt to be built. The following line will build all
34# platform targets.
jljusten07a756b2007-10-17 01:54:36 +000035TARGET = DEBUG
36
37# TARGET_ARCH List Optional What kind of architecture is the binary being target for.
38# One, or more, of the following, IA32, IPF, X64, EBC or ARM.
39# Multiple values can be specified on a single line, using
40# space charaters to separate the values. These are used
jwang36106c6882007-12-25 09:23:17 +000041# during the parsing of an platform description file,
42# restricting the build output target(s.)
jljusten07a756b2007-10-17 01:54:36 +000043# The Build Target ARCH is determined by a logical AND of:
jwang36106c6882007-12-25 09:23:17 +000044# platform BuildOptions: <SupportedArchitectures> tag
jljusten07a756b2007-10-17 01:54:36 +000045# If not specified, then all valid architectures specified
jwang36106c6882007-12-25 09:23:17 +000046# in the platform file, for which tools are available, will be
jljusten07a756b2007-10-17 01:54:36 +000047# built.
48TARGET_ARCH = IA32
49
50# TOOL_DEFINITION_FILE Filename Optional Specify the name of the filename to use for specifying
51# the tools to use for the build. If not specified,
52# tools_def.txt will be used for the build. This file
53# MUST be located in the WORKSPACE/Conf directory.
54TOOL_CHAIN_CONF = Conf/tools_def.txt
55
56# TAGNAME List Optional Specify the name(s) of the tools_def.txt TagName to use.
57# If not specified, all applicable TagName tools will be
58# used for the build. The list uses space character separation.
59TOOL_CHAIN_TAG = MYTOOLS
60
jwang362eab98c2008-12-31 05:53:26 +000061# MAX_CONCURRENT_THREAD_NUMBER NUMBER Optional The number of concurrent threads. Recommend to set this
62# value to one more than the number of your compurter
63# cores or CPUs. Less than 2 means disable multithread build.
jwang3604e031d2007-10-31 09:07:31 +000064MAX_CONCURRENT_THREAD_NUMBER = 1
jwang36e2336e32008-02-19 06:39:47 +000065
66# Build rules definition
67#
68#
69BUILD_RULE_CONF = Conf/build_rule.txt
70