summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorErik Dubbelboer <erik@dubbelboer.com>2013-07-02 19:24:02 +0200
committerErik Dubbelboer <erik@dubbelboer.com>2013-07-02 19:24:02 +0200
commitfc55afb1b672bd3e4f47c3befdcf782013fedac3 (patch)
treed6814d0d039decb9ddf678bb53ea799a0bf3e9f4 /Makefile
parentbcf83543762577a9b0f5625c848b7061cc980f30 (diff)
Made example-ae work again
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)