]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/BrotliCompress/Makefile
BaseTools: Update Brotli Compress to the latest one 1.0.6
[mirror_edk2.git] / BaseTools / Source / C / BrotliCompress / Makefile
1 ## @file
2 # Windows makefile for 'Brotli' module build.
3 #
4 # Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>
5 # This program and the accompanying materials
6 # are licensed and made available under the terms and conditions of the BSD License
7 # which accompanies this distribution. The full text of the license may be found at
8 # http://opensource.org/licenses/bsd-license.php
9 #
10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 #
13 !INCLUDE ..\Makefiles\ms.common
14
15 INC = -I .\include $(INC)
16 CFLAGS = $(CFLAGS) /W2
17
18 APPNAME = Brotli
19
20 #LIBS = $(LIB_PATH)\Common.lib
21
22 COMMON_OBJ = common\dictionary.obj common\transform.obj
23 DEC_OBJ = \
24 dec\bit_reader.obj \
25 dec\decode.obj \
26 dec\huffman.obj \
27 dec\state.obj
28 ENC_OBJ = \
29 enc\backward_references.obj \
30 enc\backward_references_hq.obj \
31 enc\bit_cost.obj \
32 enc\block_splitter.obj \
33 enc\brotli_bit_stream.obj \
34 enc\cluster.obj \
35 enc\compress_fragment.obj \
36 enc\compress_fragment_two_pass.obj \
37 enc\dictionary_hash.obj \
38 enc\encode.obj \
39 enc\encoder_dict.obj \
40 enc\entropy_encode.obj \
41 enc\histogram.obj \
42 enc\literal_cost.obj \
43 enc\memory.obj \
44 enc\metablock.obj \
45 enc\static_dict.obj \
46 enc\utf8_util.obj
47
48 OBJECTS = \
49 tools\brotli.obj \
50 $(COMMON_OBJ) \
51 $(DEC_OBJ) \
52 $(ENC_OBJ)
53
54 !INCLUDE ..\Makefiles\ms.app