]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Tools/bin/build.bat
Added -e and -emacs to support no leading task name in each line of log on screen
[mirror_edk2.git] / Tools / bin / build.bat
... / ...
CommitLineData
1@REM\r
2@REM Copyright (c) 2006, Intel Corporation\r
3@REM All rights reserved. This program and the accompanying materials\r
4@REM are licensed and made available under the terms and conditions of the BSD License\r
5@REM which accompanies this distribution. The full text of the license may be found at\r
6@REM http://opensource.org/licenses/bsd-license.php\r
7@REM \r
8@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
9@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
10@REM\r
11@echo off\r
12\r
13set _ARGS= \r
14:check_arg\r
15if ""%1""=="""" goto arg_end\r
16if ""%1""==""-q"" goto ant_arg\r
17if ""%1""==""-v"" goto ant_arg\r
18if ""%1""==""-d"" goto ant_arg\r
19if ""%1""==""-e"" goto ant_arg\r
20if ""%1""==""-emacs"" goto ant_arg\r
21\r
22goto ant_target\r
23\r
24:ant_arg \r
25 set _ARGS=%_ARGS% %1\r
26 shift\r
27 goto check_arg\r
28\r
29:ant_target\r
30 set _ARGS=%_ARGS% -DBUILD_TARGET=%1\r
31 shift\r
32 goto check_arg\r
33\r
34:arg_end\r
35ant -logger org.tianocore.build.global.GenBuildLogger -f %WORKSPACE%/build.xml %_ARGS%\r
36\r
37set _ARGS=\r
38@echo on\r
39\r