]> git.saurik.com Git - redis.git/commitdiff
Makefile dependencies updated
authorantirez <antirez@gmail.com>
Sat, 6 Jun 2009 06:24:23 +0000 (08:24 +0200)
committerantirez <antirez@gmail.com>
Sat, 6 Jun 2009 06:24:23 +0000 (08:24 +0200)
Makefile

index 00c0f226c69c33f08487307712b36659b626b314..f7c546470bca60c39e5e658a072801f63140ee6a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,16 +17,18 @@ CLIPRGNAME = redis-cli
 all: redis-server redis-benchmark redis-cli
 
 # Deps (use make dep to generate this)
-adlist.o: adlist.c adlist.h
-ae.o: ae.c ae.h
-anet.o: anet.c anet.h
-benchmark.o: benchmark.c ae.h anet.h sds.h adlist.h
-dict.o: dict.c dict.h
-redis-cli.o: redis-cli.c anet.h sds.h adlist.h
-redis.o: redis.c ae.h sds.h anet.h dict.h adlist.h zmalloc.c zmalloc.h
-sds.o: sds.c sds.h
-sha1.o: sha1.c sha1.h
-zmalloc.o: zmalloc.c
+adlist.o: adlist.c adlist.h zmalloc.h
+ae.o: ae.c ae.h zmalloc.h
+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
+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
+sds.o: sds.c sds.h zmalloc.h
+zmalloc.o: zmalloc.c config.h
 
 redis-server: $(OBJ)
        $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)