mirror of
				https://github.com/acidanthera/audk.git
				synced 2025-10-31 19:23:54 +01:00 
			
		
		
		
	Use submodule way to access brotli in BaseTools based on brotli version 666c3280cc11dc433c303d79a83d4ffbdd12cc8d. REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2558 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>
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ## @file
 | |
| # GNU/Linux makefile for 'Brotli' module build.
 | |
| #
 | |
| # Copyright (c) 2017 - 2020, Intel Corporation. All rights reserved.<BR>
 | |
| # SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| #
 | |
| MAKEROOT ?= ..
 | |
| 
 | |
| APPNAME = Brotli
 | |
| 
 | |
| OBJECTS = \
 | |
|   brotli/c/tools/brotli.o \
 | |
|   brotli/c/common/dictionary.o \
 | |
|   brotli/c/common/transform.o \
 | |
|   brotli/c/dec/bit_reader.o \
 | |
|   brotli/c/dec/decode.o \
 | |
|   brotli/c/dec/huffman.o \
 | |
|   brotli/c/dec/state.o \
 | |
|   brotli/c/enc/backward_references.o \
 | |
|   brotli/c/enc/backward_references_hq.o \
 | |
|   brotli/c/enc/bit_cost.o \
 | |
|   brotli/c/enc/block_splitter.o \
 | |
|   brotli/c/enc/brotli_bit_stream.o \
 | |
|   brotli/c/enc/cluster.o \
 | |
|   brotli/c/enc/compress_fragment.o \
 | |
|   brotli/c/enc/compress_fragment_two_pass.o \
 | |
|   brotli/c/enc/dictionary_hash.o \
 | |
|   brotli/c/enc/encode.o \
 | |
|   brotli/c/enc/encoder_dict.o \
 | |
|   brotli/c/enc/entropy_encode.o \
 | |
|   brotli/c/enc/histogram.o \
 | |
|   brotli/c/enc/literal_cost.o \
 | |
|   brotli/c/enc/memory.o \
 | |
|   brotli/c/enc/metablock.o \
 | |
|   brotli/c/enc/static_dict.o \
 | |
|   brotli/c/enc/utf8_util.o
 | |
| 
 | |
| include $(MAKEROOT)/Makefiles/app.makefile
 | |
| 
 | |
| TOOL_INCLUDE = -I ./brotli/c/include
 | |
| LIBS += -lm
 |