mirror of
https://github.com/v12-security/pocs.git
synced 2026-05-26 16:40:48 +00:00
12 lines
187 B
Makefile
12 lines
187 B
Makefile
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
|