]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/C/BrotliCompress/Makefile
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / C / BrotliCompress / Makefile
CommitLineData
87d97b6a
SB
1## @file\r
2# Windows makefile for 'Brotli' module build.\r
3#\r
dd4f667e 4# Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>\r
2e351cbe 5# SPDX-License-Identifier: BSD-2-Clause-Patent\r
87d97b6a
SB
6#\r
7!INCLUDE ..\Makefiles\ms.common\r
8\r
dd4f667e 9INC = -I .\include $(INC)\r
87d97b6a
SB
10CFLAGS = $(CFLAGS) /W2\r
11\r
12APPNAME = Brotli\r
13\r
14#LIBS = $(LIB_PATH)\Common.lib\r
15\r
dd4f667e 16COMMON_OBJ = common\dictionary.obj common\transform.obj\r
87d97b6a
SB
17DEC_OBJ = \\r
18 dec\bit_reader.obj \\r
19 dec\decode.obj \\r
20 dec\huffman.obj \\r
21 dec\state.obj\r
22ENC_OBJ = \\r
23 enc\backward_references.obj \\r
dd4f667e 24 enc\backward_references_hq.obj \\r
87d97b6a
SB
25 enc\bit_cost.obj \\r
26 enc\block_splitter.obj \\r
27 enc\brotli_bit_stream.obj \\r
28 enc\cluster.obj \\r
29 enc\compress_fragment.obj \\r
30 enc\compress_fragment_two_pass.obj \\r
dd4f667e 31 enc\dictionary_hash.obj \\r
87d97b6a 32 enc\encode.obj \\r
dd4f667e 33 enc\encoder_dict.obj \\r
87d97b6a
SB
34 enc\entropy_encode.obj \\r
35 enc\histogram.obj \\r
36 enc\literal_cost.obj \\r
37 enc\memory.obj \\r
38 enc\metablock.obj \\r
39 enc\static_dict.obj \\r
40 enc\utf8_util.obj\r
41\r
42OBJECTS = \\r
dd4f667e 43 tools\brotli.obj \\r
87d97b6a
SB
44 $(COMMON_OBJ) \\r
45 $(DEC_OBJ) \\r
46 $(ENC_OBJ)\r
47\r
48!INCLUDE ..\Makefiles\ms.app\r