mirror of https://github.com/redis/redis.git
				
				
				
			Remove testmodule in src/modules/Makefile. (#9250)
src/modules make failed. As in #3718 testmodule.c was removed. But the makefile was not updated
This commit is contained in:
		
							parent
							
								
									e7ccdeebc9
								
							
						
					
					
						commit
						d54c9086c2
					
				| 
						 | 
					@ -13,7 +13,7 @@ endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.SUFFIXES: .c .so .xo .o
 | 
					.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:
 | 
					.c.xo:
 | 
				
			||||||
	$(CC) -I. $(CFLAGS) $(SHOBJ_CFLAGS) -fPIC -c $< -o $@
 | 
						$(CC) -I. $(CFLAGS) $(SHOBJ_CFLAGS) -fPIC -c $< -o $@
 | 
				
			||||||
| 
						 | 
					@ -58,10 +58,5 @@ helloacl.xo: ../redismodule.h
 | 
				
			||||||
helloacl.so: helloacl.xo
 | 
					helloacl.so: helloacl.xo
 | 
				
			||||||
	$(LD) -o $@ $< $(SHOBJ_LDFLAGS) $(LIBS) -lc
 | 
						$(LD) -o $@ $< $(SHOBJ_LDFLAGS) $(LIBS) -lc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
testmodule.xo: ../redismodule.h
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
testmodule.so: testmodule.xo
 | 
					 | 
				
			||||||
	$(LD) -o $@ $< $(SHOBJ_LDFLAGS) $(LIBS) -lc
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
clean:
 | 
					clean:
 | 
				
			||||||
	rm -rf *.xo *.so
 | 
						rm -rf *.xo *.so
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue