mirror of
https://github.com/google/brotli.git
synced 2024-11-27 22:00:10 +00:00
92e3023914
* Reduce memory usage * Update API documentation * Remove deprecated API * Move non-API declatarions from decode.h * Remove streams * Add more debug logging * Fix shift in BrotliBitReaderUnload * Allocate ringbuffer at later stages * Sort / fix includes * Fix whitespaces * Eliminate dead code * Drive-by code simplifications
13 lines
151 B
Makefile
13 lines
151 B
Makefile
#brotli/dec
|
|
|
|
include ../shared.mk
|
|
|
|
CFLAGS += -Wall
|
|
|
|
OBJS = bit_reader.o decode.o dictionary.o huffman.o state.o
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS)
|