mirror of
https://github.com/google/brotli.git
synced 2024-11-22 19:50:06 +00:00
4c37566f4b
Move utf8 heuristics functions to their own file.
15 lines
333 B
Makefile
15 lines
333 B
Makefile
#brotli/enc
|
|
|
|
include ../shared.mk
|
|
|
|
OBJS_NODICT = backward_references.o block_splitter.o brotli_bit_stream.o encode.o encode_parallel.o entropy_encode.o histogram.o literal_cost.o metablock.o static_dict.o streams.o utf8_util.o
|
|
OBJS = $(OBJS_NODICT) dictionary.o
|
|
|
|
nodict : $(OBJS_NODICT)
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS) $(SO)
|
|
|