From d54c9086c267d20bb6981f5a60f589e93b662d62 Mon Sep 17 00:00:00 2001 From: Huang Zhw Date: Mon, 19 Jul 2021 13:23:25 +0800 Subject: [PATCH] Remove testmodule in src/modules/Makefile. (#9250) src/modules make failed. As in #3718 testmodule.c was removed. But the makefile was not updated --- src/modules/Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/modules/Makefile b/src/modules/Makefile index 5e012d6f1..3db19e79a 100644 --- a/src/modules/Makefile +++ b/src/modules/Makefile @@ -13,7 +13,7 @@ endif .SUFFIXES: .c .so .xo .o -all: helloworld.so hellotype.so helloblock.so testmodule.so hellocluster.so hellotimer.so hellodict.so hellohook.so helloacl.so +all: helloworld.so hellotype.so helloblock.so hellocluster.so hellotimer.so hellodict.so hellohook.so helloacl.so .c.xo: $(CC) -I. $(CFLAGS) $(SHOBJ_CFLAGS) -fPIC -c $< -o $@ @@ -58,10 +58,5 @@ helloacl.xo: ../redismodule.h helloacl.so: helloacl.xo $(LD) -o $@ $< $(SHOBJ_LDFLAGS) $(LIBS) -lc -testmodule.xo: ../redismodule.h - -testmodule.so: testmodule.xo - $(LD) -o $@ $< $(SHOBJ_LDFLAGS) $(LIBS) -lc - clean: rm -rf *.xo *.so