aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: 5d847e56798af895acf0deb1094ff7c604d644da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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)/c/{enc,dec,tools}/*.{un,}bro
	$(MAKE) -C $(BROTLI)/c/tools clean