brotli/tests/Makefile
Eugene Kliuchnikov 378485b097 Update build system. Now libraries are produced as build artifacts.
There are currently 3 ways to build:
* Easy: `./configure; make`
* Simple: use Bazel
* Portable: use premake5 to generate XCode / MSVS projects
2016-06-16 10:52:57 +02:00

18 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