From 4e8c8e74ee7727e1b2b671504fabd72e7e96dbdf Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Fri, 31 Dec 2010 12:51:35 +0100 Subject: Replace zmalloc with regular malloc --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ca3404a..4be2a1d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Copyright (C) 2010 Salvatore Sanfilippo # 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} -- cgit v1.2.3