brotli/dec/Makefile
Zoltan Szabadka 4b2fd00e24 Use a single lookup table for insert/copy offsets and extra bits.
Remove safe_malloc.c since all the bounds checking is done inside
decode.c now.
2015-08-10 16:39:50 +02:00

13 lines
148 B
Makefile

#brotli/dec
include ../shared.mk
CFLAGS += -Wall
OBJS = bit_reader.o decode.o huffman.o state.o streams.o
all : $(OBJS)
clean :
rm -f $(OBJS)