diff options
author | Matt Stancliff <matt@genges.com> | 2015-01-05 16:09:49 -0500 |
---|---|---|
committer | Matt Stancliff <matt@genges.com> | 2015-01-05 16:53:23 -0500 |
commit | dad05164231338092cdcbebf266f7101f53bc164 (patch) | |
tree | 1ba9ff122ec928e9e96d452042d0f0a3483b0ea4 | |
parent | 9abfdf940569fe6a7b34793e017c0de7f76ec48e (diff) |
Update dependency list in Makefile
-rw-r--r-- | Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -68,12 +68,13 @@ endif all: $(DYLIBNAME) $(STLIBNAME) $(PKGCONFNAME) # Deps (use make dep to generate this) -net.o: net.c fmacros.h net.h hiredis.h -async.o: async.c async.h hiredis.h sds.h dict.c dict.h -read.o: read.c read.h -hiredis.o: hiredis.c fmacros.h hiredis.h net.h sds.h +async.o: async.c fmacros.h async.h hiredis.h read.h sds.h net.h dict.c dict.h +dict.o: dict.c fmacros.h dict.h +hiredis.o: hiredis.c fmacros.h hiredis.h read.h sds.h net.h +net.o: net.c fmacros.h net.h hiredis.h read.h sds.h +read.o: read.c fmacros.h read.h sds.h sds.o: sds.c sds.h -test.o: test.c hiredis.h +test.o: test.c fmacros.h hiredis.h read.h sds.h $(DYLIBNAME): $(OBJ) $(DYLIB_MAKE_CMD) $(OBJ) |