diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-11-01 11:11:43 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-11-01 11:11:43 +0100 |
commit | b028dda3593598ab7664c2d70846c50405b534ad (patch) | |
tree | b2fd4636ef143c78d31686b27e0d0d67c51c331a /Makefile | |
parent | e16340f2dba2df4e997a0f4f03b197cc814ab9fa (diff) | |
download | hiredict-b028dda3593598ab7664c2d70846c50405b534ad.tar.xz |
Return from getCallback if there is no reply
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,10 +58,10 @@ dynamic: ${DYLIBNAME} static: ${STLIBNAME} # Binaries: -hiredis-example-libevent: ${DYLIBNAME} +hiredis-example-libevent: example-libevent.o ${DYLIBNAME} $(CC) -o $@ $(CCOPT) $(DEBUG) -L. -lhiredis -levent -Wl,-rpath,. example-libevent.c -hiredis-example-libev: ${DYLIBNAME} +hiredis-example-libev: example-libev.o ${DYLIBNAME} $(CC) -o $@ $(CCOPT) $(DEBUG) -L. -lhiredis -lev -Wl,-rpath,. example-libev.c hiredis-%: %.o ${DYLIBNAME} |