You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|