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