brotli/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

13 lines
270 B
Makefile

include build/gmake/config.make
TARGETS=all clean brotli_common brotli_dec brotli_enc bro help
.PHONY: $(TARGETS) install
$(TARGETS):
@${MAKE} -C build/gmake $@
install:
@echo "copy include and libraries to $(prefix)"
$(error Installation is not implemented yet)