aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
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