]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/C/BrotliCompress/GNUmakefile
BaseTools: resolve initialization order errors in VfrFormPkg.h
[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
4# Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>\r
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
a9f6e0a4 13HOST_ARCH ?= IA32\r
87d97b6a
SB
14MAKEROOT ?= ..\r
15\r
16APPNAME = Brotli\r
17\r
18OBJECTS = \\r
19 tools/bro.o \\r
20 common/dictionary.o \\r
21 dec/bit_reader.o \\r
22 dec/decode.o \\r
23 dec/huffman.o \\r
24 dec/state.o \\r
25 enc/backward_references.o \\r
26 enc/bit_cost.o \\r
27 enc/block_splitter.o \\r
28 enc/brotli_bit_stream.o \\r
29 enc/cluster.o \\r
30 enc/compress_fragment.o \\r
31 enc/compress_fragment_two_pass.o \\r
32 enc/encode.o \\r
33 enc/entropy_encode.o \\r
34 enc/histogram.o \\r
35 enc/literal_cost.o \\r
36 enc/memory.o \\r
37 enc/metablock.o \\r
38 enc/static_dict.o \\r
39 enc/utf8_util.o\r
40\r
41include $(MAKEROOT)/Makefiles/app.makefile\r
42\r
43LIBS += -lm\r