From 174ea72837225ea4f69b643afc7dbf81413d9a61 Mon Sep 17 00:00:00 2001 From: cbdev Date: Fri, 28 Mar 2025 12:55:31 +0100 Subject: Make makefile more compatible (h/t nimaje) --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d729bb2..86fb0e5 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,17 @@ CFLAGS += -fPIC LDFLAGS += -shared LDLIBS += -ldl -%.so : %.c +RM ?= rm -f + +.SUFFIXES: +.SUFFIXES: .c .so + +.c.so: $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) $(LDLIBS) all: slowloris.so clean: $(RM) slowloris.so + +.PHONY: all clean -- cgit v1.2.3