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