This commit is contained in:
stong 2026-05-18 14:55:24 +09:00
parent a82f4368ab
commit 8a0604c676
10 changed files with 1137 additions and 0 deletions

12
terramaster/rce/Makefile Normal file
View file

@ -0,0 +1,12 @@
CC := aarch64-linux-gnu-gcc
CFLAGS := -shared -fPIC -nostartfiles
.PHONY: all clean
all: module.so
module.so: module.c redismodule.h
$(CC) $(CFLAGS) -o $@ $<
clean:
rm -f module.so