summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/modules/common.mk
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/modules/common.mk
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/modules/common.mk')
-rw-r--r--examples/redis-unstable/modules/common.mk51
1 files changed, 0 insertions, 51 deletions
diff --git a/examples/redis-unstable/modules/common.mk b/examples/redis-unstable/modules/common.mk
deleted file mode 100644
index 7e6a975..0000000
--- a/examples/redis-unstable/modules/common.mk
+++ /dev/null
@@ -1,51 +0,0 @@
-PREFIX ?= /usr/local
-INSTALL_DIR ?= $(DESTDIR)$(PREFIX)/lib/redis/modules
-INSTALL ?= install
-
-# This logic *partially* follows the current module build system. It is a bit awkward and
-# should be changed if/when the modules' build process is refactored.
-
-ARCH_MAP_x86_64 := x64
-ARCH_MAP_i386 := x86
-ARCH_MAP_i686 := x86
-ARCH_MAP_aarch64 := arm64v8
-ARCH_MAP_arm64 := arm64v8
-
-OS := $(shell uname -s | tr '[:upper:]' '[:lower:]')
-ARCH := $(ARCH_MAP_$(shell uname -m))
-ifeq ($(ARCH),)
- $(error Unrecognized CPU architecture $(shell uname -m))
-endif
-
-FULL_VARIANT := $(OS)-$(ARCH)-release
-
-# Common rules for all modules, based on per-module configuration
-
-all: $(TARGET_MODULE)
-
-$(TARGET_MODULE): get_source
- $(MAKE) -C $(SRC_DIR)
- cp ${TARGET_MODULE} ./
-
-get_source: $(SRC_DIR)/.prepared
-
-$(SRC_DIR)/.prepared:
- mkdir -p $(SRC_DIR)
- git clone --recursive --depth 1 --branch $(MODULE_VERSION) $(MODULE_REPO) $(SRC_DIR)
- touch $@
-
-clean:
- -$(MAKE) -C $(SRC_DIR) clean
- -rm -f ./*.so
-
-distclean: clean
- -$(MAKE) -C $(SRC_DIR) distclean
-
-pristine:
- -rm -rf $(SRC_DIR)
-
-install: $(TARGET_MODULE)
- mkdir -p $(INSTALL_DIR)
- $(INSTALL) -m 0755 -D $(TARGET_MODULE) $(INSTALL_DIR)
-
-.PHONY: all clean distclean pristine install