mirror of
https://github.com/google/brotli.git
synced 2024-11-22 19:50:06 +00:00
12 lines
200 B
Makefile
12 lines
200 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
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS) $(SO)
|
|
|