diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-12-31 12:51:35 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-12-31 15:49:26 +0100 |
commit | 4e8c8e74ee7727e1b2b671504fabd72e7e96dbdf (patch) | |
tree | b492f18c3158db0ade4f793d3dfe9bd67f1b98b4 /Makefile | |
parent | 5703dfc30692c400fef086c1492424d005c6b20c (diff) |
Replace zmalloc with regular malloc
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 = net.o hiredis.o sds.o async.o +OBJ = net.o hiredis.o sds.o async.o dict.o BINS = hiredis-example hiredis-test uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') @@ -49,6 +49,7 @@ async.o: async.c async.h hiredis.h sds.h util.h example.o: example.c hiredis.h hiredis.o: hiredis.c hiredis.h net.h sds.h util.h sds.o: sds.c sds.h +dict.o: dict.c dict.h test.o: test.c hiredis.h ${DYLIBNAME}: ${OBJ} |