brotli/Makefile
Eugene Kliuchnikov b32cefe160 Fix VS build problems:
* rename build -> buildfiles to avoid clashing with BUILD
* set binary mode for stdin/out in bro
* convert bro to C
2016-06-17 16:24:51 +02:00

13 lines
280 B
Makefile

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