]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/C/BrotliCompress/GNUmakefile
BaseTools GNUmakefile: Remove HOST_ARCH in every tool Makefile
[mirror_edk2.git] / BaseTools / Source / C / BrotliCompress / GNUmakefile
CommitLineData
87d97b6a
SB
1## @file\r
2# GNU/Linux makefile for 'Brotli' module build.\r
3#\r
d16e777a 4# Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>\r
87d97b6a
SB
5# This program and the accompanying materials\r
6# are licensed and made available under the terms and conditions of the BSD License\r
7# which accompanies this distribution. The full text of the license may be found at\r
8# http://opensource.org/licenses/bsd-license.php\r
9#\r
10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12#\r
87d97b6a
SB
13MAKEROOT ?= ..\r
14\r
15APPNAME = Brotli\r
16\r
17OBJECTS = \\r
18 tools/bro.o \\r
19 common/dictionary.o \\r
20 dec/bit_reader.o \\r
21 dec/decode.o \\r
22 dec/huffman.o \\r
23 dec/state.o \\r
24 enc/backward_references.o \\r
25 enc/bit_cost.o \\r
26 enc/block_splitter.o \\r
27 enc/brotli_bit_stream.o \\r
28 enc/cluster.o \\r
29 enc/compress_fragment.o \\r
30 enc/compress_fragment_two_pass.o \\r
31 enc/encode.o \\r
32 enc/entropy_encode.o \\r
33 enc/histogram.o \\r
34 enc/literal_cost.o \\r
35 enc/memory.o \\r
36 enc/metablock.o \\r
37 enc/static_dict.o \\r
38 enc/utf8_util.o\r
39\r
40include $(MAKEROOT)/Makefiles/app.makefile\r
41\r
42LIBS += -lm\r