]>
Commit | Line | Data |
---|---|---|
1 | @REM ## @file\r | |
2 | @REM #\r | |
3 | @REM # Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>\r | |
4 | @REM #\r | |
5 | @REM # This program and the accompanying materials\r | |
6 | @REM # are licensed and made available under the terms and conditions of the BSD License\r | |
7 | @REM # which accompanies this distribution. The full text of the license may be found at\r | |
8 | @REM # http://opensource.org/licenses/bsd-license.php\r | |
9 | @REM # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
10 | @REM # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
11 | @REM #\r | |
12 | @REM #\r | |
13 | @REM ##\r | |
14 | \r | |
15 | \r | |
16 | @REM Read the variables from Conf/target.txt\r | |
17 | @REM Because we can't add '=' as a delimiter in 'for', each variable is read in 2 parts:\r | |
18 | @REM First we read the "= xyz" part of the variable assignation which we use, along with\r | |
19 | @REM the original equal sign for our first assignation. Then we trim any left whitespaces.\r | |
20 | @REM NB: default token delimiters for "for /f" are tab and space.\r | |
21 | \r | |
22 | @set CONFIG_FILE=%WORKSPACE%\Conf\target.txt\r | |
23 | \r | |
24 | @for /f "tokens=1*" %%i in ('type %CONFIG_FILE% ^| find "TOOL_CHAIN_TAG" ^| find /V "#"') do @set TOOL_CHAIN_TAG%%j\r | |
25 | @for /f "tokens=*" %%i in ("%TOOL_CHAIN_TAG%") do @set TOOL_CHAIN_TAG=%%i\r | |
26 | \r | |
27 | @for /f "tokens=1*" %%i in ('type %CONFIG_FILE% ^| find "TARGET" ^| find /V "#" ^| find /V "TARGET_ARCH"') do @set TARGET%%j\r | |
28 | @for /f "tokens=*" %%i in ("%TARGET%") do @set TARGET=%%i\r | |
29 | \r | |
30 | @for /f "tokens=1*" %%i in ('type %CONFIG_FILE% ^| find "TARGET_ARCH" ^|find /V "#"') do @set TARGET_ARCH%%j\r | |
31 | @for /f "tokens=*" %%i in ("%TARGET_ARCH%") do @set TARGET_ARCH=%%i\r | |
32 | \r | |
33 | \r | |
34 | @REM Set defaults if above variables are undefined in target.txt\r | |
35 | \r | |
36 | @if "%TOOL_CHAIN_TAG%%"=="" @set TOOL_CHAIN_TAG=MYTOOLS\r | |
37 | @if "%TARGET%"=="" @set TARGET=DEBUG\r | |
38 | @if "%TARGET_ARCH%"=="" @set TARGET_ARCH=IA32\r |