diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-01-14 12:07:24 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-01-14 12:07:29 +0100 |
commit | c6b8bd77c0fe00dbc455b39208f15761178160a3 (patch) | |
tree | ea4a1ec60ea778e45c9b9a465599c1194036985a /Makefile | |
parent | 7adfef1680a7e8d93c29c0c15977a95febdcf473 (diff) |
Make dictionary functions static and include the .c file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 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 dict.o +OBJ = net.o hiredis.o sds.o async.o BINS = hiredis-example hiredis-test uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') @@ -45,11 +45,10 @@ all: ${DYLIBNAME} ${BINS} # Deps (use make dep to generate this) net.o: net.c fmacros.h net.h -async.o: async.c async.h hiredis.h sds.h util.h +async.o: async.c async.h hiredis.h sds.h util.h dict.c dict.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} |