]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/BrotliCompress/GNUmakefile
BaseTools: Make brotli a submodule
[mirror_edk2.git] / BaseTools / Source / C / BrotliCompress / GNUmakefile
index fdf713e8b236beee2b8791f6e04a162664f3c46f..9544837263ca64b40a635028078ff330933fe33e 100644 (file)
@@ -1,7 +1,7 @@
 ## @file\r
 # GNU/Linux makefile for 'Brotli' module build.\r
 #\r
-# Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>\r
+# Copyright (c) 2017 - 2020, Intel Corporation. All rights reserved.<BR>\r
 # SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 MAKEROOT ?= ..\r
@@ -9,33 +9,33 @@ MAKEROOT ?= ..
 APPNAME = Brotli\r
 \r
 OBJECTS = \\r
-  tools/brotli.o \\r
-  common/dictionary.o \\r
-  common/transform.o \\r
-  dec/bit_reader.o \\r
-  dec/decode.o \\r
-  dec/huffman.o \\r
-  dec/state.o \\r
-  enc/backward_references.o \\r
-  enc/backward_references_hq.o \\r
-  enc/bit_cost.o \\r
-  enc/block_splitter.o \\r
-  enc/brotli_bit_stream.o \\r
-  enc/cluster.o \\r
-  enc/compress_fragment.o \\r
-  enc/compress_fragment_two_pass.o \\r
-  enc/dictionary_hash.o \\r
-  enc/encode.o \\r
-  enc/encoder_dict.o \\r
-  enc/entropy_encode.o \\r
-  enc/histogram.o \\r
-  enc/literal_cost.o \\r
-  enc/memory.o \\r
-  enc/metablock.o \\r
-  enc/static_dict.o \\r
-  enc/utf8_util.o\r
+  brotli/c/tools/brotli.o \\r
+  brotli/c/common/dictionary.o \\r
+  brotli/c/common/transform.o \\r
+  brotli/c/dec/bit_reader.o \\r
+  brotli/c/dec/decode.o \\r
+  brotli/c/dec/huffman.o \\r
+  brotli/c/dec/state.o \\r
+  brotli/c/enc/backward_references.o \\r
+  brotli/c/enc/backward_references_hq.o \\r
+  brotli/c/enc/bit_cost.o \\r
+  brotli/c/enc/block_splitter.o \\r
+  brotli/c/enc/brotli_bit_stream.o \\r
+  brotli/c/enc/cluster.o \\r
+  brotli/c/enc/compress_fragment.o \\r
+  brotli/c/enc/compress_fragment_two_pass.o \\r
+  brotli/c/enc/dictionary_hash.o \\r
+  brotli/c/enc/encode.o \\r
+  brotli/c/enc/encoder_dict.o \\r
+  brotli/c/enc/entropy_encode.o \\r
+  brotli/c/enc/histogram.o \\r
+  brotli/c/enc/literal_cost.o \\r
+  brotli/c/enc/memory.o \\r
+  brotli/c/enc/metablock.o \\r
+  brotli/c/enc/static_dict.o \\r
+  brotli/c/enc/utf8_util.o\r
 \r
 include $(MAKEROOT)/Makefiles/app.makefile\r
 \r
-TOOL_INCLUDE = -I ./include\r
+TOOL_INCLUDE = -I ./brotli/c/include\r
 LIBS += -lm\r