mirror of
https://github.com/google/brotli.git
synced 2024-11-22 11:40:06 +00:00
378485b097
There are currently 3 ways to build: * Easy: `./configure; make` * Simple: use Bazel * Portable: use premake5 to generate XCode / MSVS projects
18 lines
260 B
Makefile
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
|