]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/BrotliCompress/GNUmakefile
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / C / BrotliCompress / GNUmakefile
1 ## @file
2 # GNU/Linux makefile for 'Brotli' module build.
3 #
4 # Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>
5 # SPDX-License-Identifier: BSD-2-Clause-Patent
6 #
7 MAKEROOT ?= ..
8
9 APPNAME = Brotli
10
11 OBJECTS = \
12 tools/brotli.o \
13 common/dictionary.o \
14 common/transform.o \
15 dec/bit_reader.o \
16 dec/decode.o \
17 dec/huffman.o \
18 dec/state.o \
19 enc/backward_references.o \
20 enc/backward_references_hq.o \
21 enc/bit_cost.o \
22 enc/block_splitter.o \
23 enc/brotli_bit_stream.o \
24 enc/cluster.o \
25 enc/compress_fragment.o \
26 enc/compress_fragment_two_pass.o \
27 enc/dictionary_hash.o \
28 enc/encode.o \
29 enc/encoder_dict.o \
30 enc/entropy_encode.o \
31 enc/histogram.o \
32 enc/literal_cost.o \
33 enc/memory.o \
34 enc/metablock.o \
35 enc/static_dict.o \
36 enc/utf8_util.o
37
38 include $(MAKEROOT)/Makefiles/app.makefile
39
40 TOOL_INCLUDE = -I ./include
41 LIBS += -lm