32 lines
862 B
Text
32 lines
862 B
Text
|
Index: deps/Makefile
|
||
|
--- deps/Makefile.orig
|
||
|
+++ deps/Makefile
|
||
|
@@ -49,19 +49,16 @@ ifeq ($(BUILD_TLS),yes)
|
||
|
endif
|
||
|
|
||
|
hiredis: .make-prerequisites
|
||
|
- @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR)
|
||
|
cd hiredis && $(MAKE) static $(HIREDIS_MAKE_FLAGS)
|
||
|
|
||
|
.PHONY: hiredis
|
||
|
|
||
|
linenoise: .make-prerequisites
|
||
|
- @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR)
|
||
|
cd linenoise && $(MAKE)
|
||
|
|
||
|
.PHONY: linenoise
|
||
|
|
||
|
hdr_histogram: .make-prerequisites
|
||
|
- @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR)
|
||
|
cd hdr_histogram && $(MAKE)
|
||
|
|
||
|
.PHONY: hdr_histogram
|
||
|
@@ -85,7 +82,6 @@ AR=ar
|
||
|
ARFLAGS=rc
|
||
|
|
||
|
lua: .make-prerequisites
|
||
|
- @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR)
|
||
|
cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" AR="$(AR) $(ARFLAGS)"
|
||
|
|
||
|
.PHONY: lua
|