mirror of
https://github.com/google/brotli.git
synced 2024-11-26 13:20:06 +00:00
65d655dad5
This also fixes two "comparison between signed and unsigned" warnings.
13 lines
156 B
Makefile
13 lines
156 B
Makefile
#brotli/dec
|
|
|
|
include ../shared.mk
|
|
|
|
CPPFLAGS += -Wall
|
|
|
|
OBJS = bit_reader.o decode.o huffman.o safe_malloc.o streams.o
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS)
|