mirror of
				https://git.proxmox.com/git/mirror_edk2
				synced 2025-11-04 02:40:26 +00:00 
			
		
		
		
	As is requested in the BZ 2077, add two switches to support setting compression mode and dictionary size. (https://bugzilla.tianocore.org/show_bug.cgi?id=2077) Cc: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			852 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			852 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
## @file
 | 
						|
# Windows makefile for 'LzmaCompress' module build.
 | 
						|
#
 | 
						|
# Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
 | 
						|
# SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
#
 | 
						|
!INCLUDE ..\Makefiles\ms.common
 | 
						|
 | 
						|
APPNAME = LzmaCompress
 | 
						|
 | 
						|
LIBS = $(LIB_PATH)\Common.lib
 | 
						|
 | 
						|
SDK_C = Sdk\C
 | 
						|
 | 
						|
OBJECTS = \
 | 
						|
  LzmaCompress.obj \
 | 
						|
  $(SDK_C)\Alloc.obj \
 | 
						|
  $(SDK_C)\LzFind.obj \
 | 
						|
  $(SDK_C)\LzmaDec.obj \
 | 
						|
  $(SDK_C)\LzmaEnc.obj \
 | 
						|
  $(SDK_C)\7zFile.obj \
 | 
						|
  $(SDK_C)\7zStream.obj \
 | 
						|
  $(SDK_C)\Bra86.obj \
 | 
						|
  $(SDK_C)\LzFindMt.obj \
 | 
						|
  $(SDK_C)\Threads.obj
 | 
						|
 | 
						|
!INCLUDE ..\Makefiles\ms.app
 | 
						|
 | 
						|
all: $(BIN_PATH)\LzmaF86Compress.bat
 | 
						|
 | 
						|
$(BIN_PATH)\LzmaF86Compress.bat: LzmaF86Compress.bat
 | 
						|
  copy LzmaF86Compress.bat $(BIN_PATH)\LzmaF86Compress.bat /Y
 | 
						|
 | 
						|
cleanall: localCleanall
 | 
						|
 | 
						|
localCleanall:
 | 
						|
  del /f /q $(BIN_PATH)\LzmaF86Compress.bat > nul
 |