Remove broken Makefiles.

Makefiles will be added together with a command-line interface in a
later commit.
This commit is contained in:
Zoltan Szabadka 2014-10-14 13:39:48 +02:00
parent e8d668f873
commit fe6e9b0148
2 changed files with 0 additions and 21 deletions

View File

@ -1,10 +0,0 @@
#brotli/dec
include ../../shared.mk
OBJS = bit_reader.o decode.o huffman.o safe_malloc.o streams.o
all : $(OBJS)
clean :
rm -f $(OBJS)

View File

@ -1,11 +0,0 @@
#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)