mirror of
https://github.com/google/brotli.git
synced 2024-11-22 11:40:06 +00:00
13 lines
164 B
Makefile
13 lines
164 B
Makefile
#brotli/dec
|
|
|
|
include ../shared.mk
|
|
|
|
CPPFLAGS += -Wall
|
|
|
|
OBJS = bit_reader.o decode.o huffman.o safe_malloc.o state.o streams.o
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS)
|