mirror of
https://github.com/google/brotli.git
synced 2024-12-02 07:40:09 +00:00
15 lines
321 B
Makefile
15 lines
321 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
|
|
OBJS = $(OBJS_NODICT) dictionary.o
|
|
|
|
nodict : $(OBJS_NODICT)
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS) $(SO)
|
|
|