From 266373b2834efa11b83e681bb211a0cd6c922eaa Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 23 Nov 2009 18:50:39 +0100 Subject: ae.c now supports multiple polling API modules, even if only ae_select.c is implemented currently. Also adding and removing an event is now O(1). --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9e687d25a..7d9bdc57c 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,8 @@ all: redis-server redis-benchmark redis-cli # Deps (use make dep to generate this) adlist.o: adlist.c adlist.h zmalloc.h -ae.o: ae.c ae.h zmalloc.h +ae.o: ae.c ae.h zmalloc.h ae_select.c +ae_select.o: ae_select.c anet.o: anet.c fmacros.h anet.h benchmark.o: benchmark.c fmacros.h ae.h anet.h sds.h adlist.h zmalloc.h dict.o: dict.c fmacros.h dict.h zmalloc.h @@ -33,7 +34,8 @@ lzf_c.o: lzf_c.c lzfP.h lzf_d.o: lzf_d.c lzfP.h pqsort.o: pqsort.c redis-cli.o: redis-cli.c fmacros.h anet.h sds.h adlist.h zmalloc.h -redis.o: redis.c fmacros.h ae.h sds.h anet.h dict.h adlist.h zmalloc.h lzf.h pqsort.h config.h +redis.o: redis.c fmacros.h config.h redis.h ae.h sds.h anet.h dict.h \ + adlist.h zmalloc.h lzf.h pqsort.h staticsymbols.h sds.o: sds.c sds.h zmalloc.h zmalloc.o: zmalloc.c config.h -- cgit v1.2.1