mirror of
https://github.com/google/brotli.git
synced 2024-11-22 11:40:06 +00:00
03739d2b11
Update: * new CLI; bro -> brotli; + man page * JNI wrappers preparation (for bazel build) * add raw binary dictionary representation `dictionary.bin` * add ability to side-load brotli RFC dictionary * decoder persists last error now * fix `BrotliDecoderDecompress` documentation * go reader don't block until necessary * more consistent bazel target names * Java dictionary data compiled footprint reduced * Java tests refactoring
18 lines
260 B
Makefile
18 lines
260 B
Makefile
#brotli/tests
|
|
|
|
BROTLI = ..
|
|
|
|
all: test
|
|
|
|
test: deps
|
|
./compatibility_test.sh
|
|
./roundtrip_test.sh
|
|
|
|
deps :
|
|
$(MAKE) -C $(BROTLI) brotli
|
|
|
|
clean :
|
|
rm -f testdata/*.{br,unbr,uncompressed}
|
|
rm -f $(BROTLI)/{enc,dec,tools}/*.{un,}br
|
|
$(MAKE) -C $(BROTLI)/tools clean
|