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
13 lines
270 B
Makefile
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)
|