/
githubmirror
/
redis
Обзор
Документация
Войти
/
githubmirror
/
redis
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.8.0
Makefile
19 строк
426 B
YaacovHazan
Prevent building with modules on 32-bit systems (#14618)
11 дек 2025, 12:04
Не верифицирован
11 дек 2025, 12:04
ec84bd6
Код
Авторство
О чём код?
# Top level makefile, the real stuff is at ./src/Makefile and in ./modules/Makefile SUBDIRS = src ifeq ($(BUILD_WITH_MODULES), yes) ifeq ($(MAKECMDGOALS),32bit) $(error BUILD_WITH_MODULES=yes is not supported on 32 bit systems) endif 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