diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-31 21:20:47 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-31 21:20:47 +0100 |
commit | 0152f128072c0fe6b9c64cc50758192d2940f7cd (patch) | |
tree | 6ad207078f41520b0c446a519c33f579bdd932bb /Makefile | |
parent | 9c7c602cc90aa70e0d0a3169aeb5f88589bcfa2b (diff) |
Extracted code to support callbacks in an asynchronous context
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ # Copyright (C) 2010 Salvatore Sanfilippo <antirez at gmail dot com> # This file is released under the BSD license, see the COPYING file -OBJ = anet.o hiredis.o sds.o +OBJ = anet.o hiredis.o sds.o async.o BINS = hiredis-example hiredis-test uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') @@ -41,6 +41,7 @@ test.o: test.c hiredis.h sds.h hiredis.o: hiredis.c hiredis.h sds.h anet.h sds.o: sds.c sds.h hiredis.o: hiredis.c hiredis.h sds.h anet.h +async.o: async.c async.h hiredis.h sds.h util.h ${DYLIBNAME}: ${OBJ} ${DYLIB_MAKE_CMD} |