]> git.saurik.com Git - redis.git/blobdiff - Makefile
epoll module for ae.c implemented. Some more testing needed
[redis.git] / Makefile
index 49d0cb3808b923cbaefd603fd7c39943c97feead..34b35f5767c188b63b8fe9e342bf8d3335a6be98 100644 (file)
--- 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_epoll.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
 
@@ -60,6 +62,9 @@ clean:
 dep:
        $(CC) -MM *.c
 
+staticsymbols:
+       tclsh utils/build-static-symbols.tcl > staticsymbols.h
+
 test:
        tclsh test-redis.tcl