mirror of
https://github.com/google/brotli.git
synced 2025-01-01 04:40:08 +00:00
12 lines
240 B
Makefile
12 lines
240 B
Makefile
#brotli/enc
|
|
|
|
include ../shared.mk
|
|
|
|
OBJS = 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 streams.o
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS) $(SO)
|
|
|