mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D3417 Update the brotli submodule to the latest commit (f4153a0) so that the build isn't broken in GCC 11 compilers. Signed-off-by: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Yuwei Chen <yuwei.chen@intel.com> Cc: Pedro Falcato <pedro.falcato@gmail.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
49 lines
1.4 KiB
Makefile
49 lines
1.4 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 = BrotliCompress
|
|
|
|
OBJECTS = \
|
|
BrotliCompress.o \
|
|
brotli/c/common/platform.o \
|
|
brotli/c/common/shared_dictionary.o \
|
|
brotli/c/common/constants.o \
|
|
brotli/c/common/context.o \
|
|
brotli/c/enc/command.o \
|
|
brotli/c/enc/compound_dictionary.o \
|
|
brotli/c/enc/fast_log.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
|