mirror of
https://github.com/google/brotli.git
synced 2025-01-06 06:50:06 +00:00
4b2fd00e24
Remove safe_malloc.c since all the bounds checking is done inside decode.c now.
13 lines
148 B
Makefile
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)
|