/
githubmirror
/
redis
Обзор
Документация
Войти
/
githubmirror
/
redis
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2.7
Makefile
16 строк
317 B
YaacovHazan
Add the option to build Redis with modules (#13524)
09 сен 2024, 15:47
Не верифицирован
09 сен 2024, 15:47
bf802b0
Код
Авторство
О чём код?
# Top level makefile, the real stuff is at ./src/Makefile and in ./modules/Makefile SUBDIRS = src ifeq ($(BUILD_WITH_MODULES), yes) SUBDIRS += modules endif default: all .DEFAULT: for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@; done install: for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@; done .PHONY: install