]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Bin/Win32/LzmaF86Compress.bat
215472163d9b28d8a410bd9e76f95f890d7942ef
[mirror_edk2.git] / BaseTools / Bin / Win32 / LzmaF86Compress.bat
1 @REM
2 @REM Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>
3 @REM This program and the accompanying materials
4 @REM are licensed and made available under the terms and conditions of the BSD License
5 @REM which accompanies this distribution. The full text of the license may be found at
6 @REM http://opensource.org/licenses/bsd-license.php
7 @REM
8 @REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
9 @REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
10 @REM
11
12 @echo off
13 @setlocal
14
15 :Begin
16 if "%1"=="" goto End
17 if "%1"=="-e" (
18 set FLAG=--f86
19 )
20 if "%1"=="-d" (
21 set FLAG=--f86
22 )
23 set ARGS=%ARGS% %1
24 shift
25 goto Begin
26
27 :End
28 LzmaCompress %ARGS% %FLAG%
29 @echo on