From d756f68a59d694a91c1882c782161a023ea67766 Mon Sep 17 00:00:00 2001 From: michael-grunder Date: Wed, 7 Sep 2022 15:04:37 -0700 Subject: Add libhv example to our standard Makefile See #904 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 6d7dd7c..b9783b7 100644 --- a/Makefile +++ b/Makefile @@ -180,6 +180,9 @@ hiredis-example-libevent-ssl: examples/example-libevent-ssl.c adapters/libevent. hiredis-example-libev: examples/example-libev.c adapters/libev.h $(STLIBNAME) $(CC) -o examples/$@ $(REAL_CFLAGS) -I. $< -lev $(STLIBNAME) $(REAL_LDFLAGS) +hiredis-example-libhv: examples/example-libhv.c adapters/libhv.h $(STLIBNAME) + $(CC) -o examples/$@ $(REAL_CFLAGS) -I. $< -lhv $(STLIBNAME) $(REAL_LDFLAGS) + hiredis-example-glib: examples/example-glib.c adapters/glib.h $(STLIBNAME) $(CC) -o examples/$@ $(REAL_CFLAGS) -I. $< $(shell pkg-config --cflags --libs glib-2.0) $(STLIBNAME) $(REAL_LDFLAGS) -- cgit v1.2.3