mirror of
https://github.com/google/brotli.git
synced 2025-01-06 06:50:06 +00:00
20 lines
278 B
Makefile
20 lines
278 B
Makefile
|
#brotli/tests
|
||
|
|
||
|
include ../shared.mk
|
||
|
|
||
|
BROTLI = ..
|
||
|
|
||
|
all: test
|
||
|
|
||
|
test: deps
|
||
|
./compatibility_test.sh
|
||
|
./roundtrip_test.sh
|
||
|
|
||
|
deps :
|
||
|
make -C $(BROTLI)/tools
|
||
|
|
||
|
clean :
|
||
|
rm -f testdata/*.{bro,unbro,uncompressed}
|
||
|
rm -f $(BROTLI)/{enc,dec,tools}/*.{un,}bro
|
||
|
make -C $(BROTLI)/tools clean
|