From 8b924f250dfe116b2c2d2019bd2cf4ab71cff6e7 Mon Sep 17 00:00:00 2001 From: cbdev Date: Fri, 28 Mar 2025 12:29:36 +0100 Subject: Simplify makefile --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index fa8e2fb..d729bb2 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,9 @@ CFLAGS += -fPIC LDFLAGS += -shared LDLIBS += -ldl -%.so :: %.c +%.so : %.c $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) $(LDLIBS) -slowloris.so: slowloris.c - all: slowloris.so clean: -- cgit v1.2.3