From: antirez Date: Sat, 6 Jun 2009 06:24:23 +0000 (+0200) Subject: Makefile dependencies updated X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/9e9c0ce1702db12a71bef5ef877b5bf97c3c935e Makefile dependencies updated --- diff --git a/Makefile b/Makefile index 00c0f226..f7c54647 100644 --- 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)