aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2025-03-28 12:29:36 +0100
committercbdev <cb@cbcdn.com>2025-03-28 12:29:36 +0100
commit8b924f250dfe116b2c2d2019bd2cf4ab71cff6e7 (patch)
tree1f6149c3141d3928dbe8a1ad56a77d669866aaf1 /Makefile
parente45a0409039032c74b3aa851eb308a541264adcd (diff)
downloadpreload-slowloris-8b924f250dfe116b2c2d2019bd2cf4ab71cff6e7.tar.gz
preload-slowloris-8b924f250dfe116b2c2d2019bd2cf4ab71cff6e7.tar.bz2
preload-slowloris-8b924f250dfe116b2c2d2019bd2cf4ab71cff6e7.zip
Simplify makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 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: