aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: a62db2d563a14b261c7ac241e41f9fa68052e997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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