mirror of
https://github.com/google/brotli.git
synced 2024-11-28 22:21:05 +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
|