mirror of
				https://github.com/acidanthera/audk.git
				synced 2025-10-31 19:23:54 +01:00 
			
		
		
		
	https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ## @file
 | |
| # Windows makefile for 'Brotli' module build.
 | |
| #
 | |
| # Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>
 | |
| # SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| #
 | |
| !INCLUDE ..\Makefiles\ms.common
 | |
| 
 | |
| INC = -I .\include $(INC)
 | |
| CFLAGS = $(CFLAGS) /W2
 | |
| 
 | |
| APPNAME = Brotli
 | |
| 
 | |
| #LIBS = $(LIB_PATH)\Common.lib
 | |
| 
 | |
| COMMON_OBJ = common\dictionary.obj common\transform.obj
 | |
| DEC_OBJ = \
 | |
|   dec\bit_reader.obj \
 | |
|   dec\decode.obj \
 | |
|   dec\huffman.obj \
 | |
|   dec\state.obj
 | |
| ENC_OBJ = \
 | |
|   enc\backward_references.obj \
 | |
|   enc\backward_references_hq.obj \
 | |
|   enc\bit_cost.obj \
 | |
|   enc\block_splitter.obj \
 | |
|   enc\brotli_bit_stream.obj \
 | |
|   enc\cluster.obj \
 | |
|   enc\compress_fragment.obj \
 | |
|   enc\compress_fragment_two_pass.obj \
 | |
|   enc\dictionary_hash.obj \
 | |
|   enc\encode.obj \
 | |
|   enc\encoder_dict.obj \
 | |
|   enc\entropy_encode.obj \
 | |
|   enc\histogram.obj \
 | |
|   enc\literal_cost.obj \
 | |
|   enc\memory.obj \
 | |
|   enc\metablock.obj \
 | |
|   enc\static_dict.obj \
 | |
|   enc\utf8_util.obj
 | |
| 
 | |
| OBJECTS = \
 | |
|   tools\brotli.obj \
 | |
|   $(COMMON_OBJ) \
 | |
|   $(DEC_OBJ) \
 | |
|   $(ENC_OBJ)
 | |
| 
 | |
| !INCLUDE ..\Makefiles\ms.app
 |