summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2010-10-31 21:20:47 +0100
committerPieter Noordhuis <pcnoordhuis@gmail.com>2010-10-31 21:20:47 +0100
commit0152f128072c0fe6b9c64cc50758192d2940f7cd (patch)
tree6ad207078f41520b0c446a519c33f579bdd932bb /Makefile
parent9c7c602cc90aa70e0d0a3169aeb5f88589bcfa2b (diff)
Extracted code to support callbacks in an asynchronous context
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3c1b651..ad8acaa 100644
--- a/Makefile
+++ b/Makefile
@@ -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}