allwinner_a64/android/external/brotli/tests/Makefile
2018-08-08 16:14:42 +08:00

17 lines
260 B
Makefile

#brotli/tests
BROTLI = ..
all: test
test: deps
./compatibility_test.sh
./roundtrip_test.sh
deps :
$(MAKE) -C $(BROTLI) bro
clean :
rm -f testdata/*.{bro,unbro,uncompressed}
rm -f $(BROTLI)/{enc,dec,tools}/*.{un,}bro
$(MAKE) -C $(BROTLI)/tools clean