brotli/dec/Makefile
2015-03-20 16:13:15 +01:00

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)