1#brotli/tests 2 3BROTLI = .. 4 5all: test 6 7test: deps 8 ./compatibility_test.sh 9 ./roundtrip_test.sh 10 11deps : 12 $(MAKE) -C $(BROTLI) brotli 13 14clean : 15 rm -f testdata/*.{br,unbr,uncompressed} 16 rm -f $(BROTLI)/{enc,dec,tools}/*.{un,}br 17 $(MAKE) -C $(BROTLI)/tools clean 18