diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2013-07-10 21:08:29 -0700 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2013-07-10 21:08:29 -0700 |
commit | a5e0de0d8587c6f42f0df475e01d19be5084a5fd (patch) | |
tree | 4568bbe03818628b71bf7937c14b4676b8bd9bee /Makefile | |
parent | bcf83543762577a9b0f5625c848b7061cc980f30 (diff) | |
parent | af9bf16953b2e559ec7ecd12a25d5ea97b879bb2 (diff) |
Merge branch 'example-ae'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |