mirror of
https://github.com/google/brotli.git
synced 2025-01-06 06:50:06 +00:00
14 lines
341 B
Makefile
14 lines
341 B
Makefile
#brotli/enc
|
|
|
|
include ../shared.mk
|
|
|
|
OBJS = backward_references.o block_splitter.o brotli_bit_stream.o \
|
|
compress_fragment.o compress_fragment_two_pass.o encode.o \
|
|
encode_parallel.o entropy_encode.o histogram.o literal_cost.o \
|
|
metablock.o static_dict.o streams.o utf8_util.o
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS) $(SO)
|
|
|