mirror of
https://github.com/google/brotli.git
synced 2025-01-15 02:40:05 +00:00
b32cefe160
* rename build -> buildfiles to avoid clashing with BUILD * set binary mode for stdin/out in bro * convert bro to C
13 lines
280 B
Makefile
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)
|