12 lines
192 B
Makefile
12 lines
192 B
Makefile
|
|
#brotli/enc
|
||
|
|
|
||
|
|
include ../../shared.mk
|
||
|
|
|
||
|
|
OBJS = backward_references.o block_splitter.o encode.o entropy_encode.o histogram.o literal_cost.o prefix.o
|
||
|
|
|
||
|
|
all : $(OBJS)
|
||
|
|
|
||
|
|
clean :
|
||
|
|
rm -f $(OBJS) $(SO)
|
||
|
|
|