Skip to content

Commit

Permalink
1.60: depends
Browse files Browse the repository at this point in the history
  • Loading branch information
zvezdochiot committed Mar 19, 2021
1 parent a7ba61a commit b0fc347
Show file tree
Hide file tree
Showing 5 changed files with 683 additions and 2,994 deletions.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
PROJECT=bcm
PROG=$(PROJECT)
TARGET=$(PROG)
SRCS= src
CXX=g++
CXXFLAGS=-Wall --std=c++11
LDFLAGS=-lsais -s
RM=rm -f

all: $(TARGET)

$(SRCS)/$(PROG).o: $(SRCS)/$(PROG).cpp
$(CXX) $(CXXFLAGS) -c -o $@ $^

$(PROG): $(SRCS)/$(PROG).o
$(CXX) $(CXXFLAGS) $^ -o $@ $(LDFLAGS)

clean:
$(RM) $(SRCS)/*.o $(PROG)
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BCM v1.60
# BCM

### Description
BCM is a high-performance file compressor that utilizes advanced context modeling techniques to achieve a very high compression ratio. All in all, it's like a big brother of the BZIP2.
Expand All @@ -14,6 +14,12 @@ BCM -9 | 20,789,667 bytes |

[1]:http://mattmahoney.net/dc/text.html

### Depends

Libsais:
* https://github.com/IlyaGrebnov/libsais
* https://github.com/FS-make-simple/libsais

### Author
Ilya Muravyov

Expand Down
Loading

0 comments on commit b0fc347

Please sign in to comment.