brotli/enc/Makefile
Zoltan Szabadka 534654def1 Add a faster but less dense compression mode.
The new mode can be used by setting the greedy_block_split
field of BrotliParams to true.

This commit moves all the meta-block processing code
into its own library and moves the meta-block encoding
code to brotli_bit_stream.cc from encode.cc
2015-03-27 14:20:35 +01:00

12 lines
212 B
Makefile

#brotli/enc
include ../shared.mk
OBJS = backward_references.o block_splitter.o brotli_bit_stream.o encode.o entropy_encode.o histogram.o literal_cost.o metablock.o
all : $(OBJS)
clean :
rm -f $(OBJS) $(SO)