]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/C/LzmaCompress/LzmaF86Compress.bat
BaseTools: Clear build versions to sync with buildtools/BaseTools
[mirror_edk2.git] / BaseTools / Source / C / LzmaCompress / LzmaF86Compress.bat
CommitLineData
64b2609f
LG
1@REM\r
2@REM This script will exec LzmaCompress tool with --f86 option that enables converter for x86 code.\r
3@REM\r
4@REM Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>\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\r
10@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12@REM\r
13\r
14@echo off\r
15@setlocal\r
16\r
17:Begin\r
18if "%1"=="" goto End\r
19if "%1"=="-e" (\r
20 set FLAG=--f86\r
21)\r
22if "%1"=="-d" (\r
23 set FLAG=--f86\r
24)\r
25set ARGS=%ARGS% %1\r
26shift\r
27goto Begin\r
28\r
29:End\r
30LzmaCompress %ARGS% %FLAG%\r
31@echo on\r