summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2013-07-10 21:08:29 -0700
committerPieter Noordhuis <pcnoordhuis@gmail.com>2013-07-10 21:08:29 -0700
commita5e0de0d8587c6f42f0df475e01d19be5084a5fd (patch)
tree4568bbe03818628b71bf7937c14b4676b8bd9bee /Makefile
parentbcf83543762577a9b0f5625c848b7061cc980f30 (diff)
parentaf9bf16953b2e559ec7ecd12a25d5ea97b879bb2 (diff)
Merge branch 'example-ae'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 16b8767..aed1ec0 100644
--- a/Makefile
+++ b/Makefile
@@ -73,7 +73,7 @@ hiredis-example-ae:
@false
else
hiredis-example-ae: example-ae.c adapters/ae.h $(STLIBNAME)
- $(CC) -o $@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I$(AE_DIR) $(AE_DIR)/ae.o $(AE_DIR)/zmalloc.o example-ae.c $(STLIBNAME)
+ $(CC) -o $@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I$(AE_DIR) $(AE_DIR)/ae.o $(AE_DIR)/zmalloc.o $(AE_DIR)/../deps/jemalloc/lib/libjemalloc.a -pthread example-ae.c $(STLIBNAME)
endif
hiredis-%: %.o $(STLIBNAME)