1# IT WOULD BE FOOLISH TO USE COMPUTERS TO AUTOMATE REPETITIVE TASKS: 2# ENLIST EVERY USED HEADER AND SOURCE FILE MANUALLY! 3 4BROTLI_CLI_C = \ 5 c/tools/brotli.c 6 7BROTLI_COMMON_C = \ 8 c/common/constants.c \ 9 c/common/context.c \ 10 c/common/dictionary.c \ 11 c/common/platform.c \ 12 c/common/transform.c 13 14BROTLI_COMMON_H = \ 15 c/common/constants.h \ 16 c/common/context.h \ 17 c/common/dictionary.h \ 18 c/common/platform.h \ 19 c/common/transform.h \ 20 c/common/version.h 21 22BROTLI_DEC_C = \ 23 c/dec/bit_reader.c \ 24 c/dec/decode.c \ 25 c/dec/huffman.c \ 26 c/dec/state.c 27 28BROTLI_DEC_H = \ 29 c/dec/bit_reader.h \ 30 c/dec/huffman.h \ 31 c/dec/prefix.h \ 32 c/dec/state.h 33 34BROTLI_ENC_C = \ 35 c/enc/backward_references.c \ 36 c/enc/backward_references_hq.c \ 37 c/enc/bit_cost.c \ 38 c/enc/block_splitter.c \ 39 c/enc/brotli_bit_stream.c \ 40 c/enc/cluster.c \ 41 c/enc/command.c \ 42 c/enc/compress_fragment.c \ 43 c/enc/compress_fragment_two_pass.c \ 44 c/enc/dictionary_hash.c \ 45 c/enc/encode.c \ 46 c/enc/encoder_dict.c \ 47 c/enc/entropy_encode.c \ 48 c/enc/fast_log.c \ 49 c/enc/histogram.c \ 50 c/enc/literal_cost.c \ 51 c/enc/memory.c \ 52 c/enc/metablock.c \ 53 c/enc/static_dict.c \ 54 c/enc/utf8_util.c 55 56BROTLI_ENC_H = \ 57 c/enc/backward_references.h \ 58 c/enc/backward_references_hq.h \ 59 c/enc/backward_references_inc.h \ 60 c/enc/bit_cost.h \ 61 c/enc/bit_cost_inc.h \ 62 c/enc/block_encoder_inc.h \ 63 c/enc/block_splitter.h \ 64 c/enc/block_splitter_inc.h \ 65 c/enc/brotli_bit_stream.h \ 66 c/enc/cluster.h \ 67 c/enc/cluster_inc.h \ 68 c/enc/command.h \ 69 c/enc/compress_fragment.h \ 70 c/enc/compress_fragment_two_pass.h \ 71 c/enc/dictionary_hash.h \ 72 c/enc/encoder_dict.h \ 73 c/enc/entropy_encode.h \ 74 c/enc/entropy_encode_static.h \ 75 c/enc/fast_log.h \ 76 c/enc/find_match_length.h \ 77 c/enc/hash.h \ 78 c/enc/hash_composite_inc.h \ 79 c/enc/hash_forgetful_chain_inc.h \ 80 c/enc/hash_longest_match64_inc.h \ 81 c/enc/hash_longest_match_inc.h \ 82 c/enc/hash_longest_match_quickly_inc.h \ 83 c/enc/hash_rolling_inc.h \ 84 c/enc/hash_to_binary_tree_inc.h \ 85 c/enc/histogram.h \ 86 c/enc/histogram_inc.h \ 87 c/enc/literal_cost.h \ 88 c/enc/memory.h \ 89 c/enc/metablock.h \ 90 c/enc/metablock_inc.h \ 91 c/enc/params.h \ 92 c/enc/prefix.h \ 93 c/enc/quality.h \ 94 c/enc/ringbuffer.h \ 95 c/enc/static_dict.h \ 96 c/enc/static_dict_lut.h \ 97 c/enc/utf8_util.h \ 98 c/enc/write_bits.h 99 100BROTLI_INCLUDE = \ 101 c/include/brotli/decode.h \ 102 c/include/brotli/encode.h \ 103 c/include/brotli/port.h \ 104 c/include/brotli/types.h 105