mirror of https://mirror.osredm.com/root/redis.git
17 lines
317 B
Makefile
17 lines
317 B
Makefile
# 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
|