diff options
| author | michael-grunder <michael.grunder@gmail.com> | 2022-09-07 15:04:37 -0700 | 
|---|---|---|
| committer | Michael Grunder <michael.grunder@gmail.com> | 2022-09-07 15:20:28 -0700 | 
| commit | d756f68a59d694a91c1882c782161a023ea67766 (patch) | |
| tree | 309e964b2b47c5f9c1aee199bba9ccb8bcadcfc4 | |
| parent | a66916719b89f30c92afeb6e9ce5a4c3a4d4c552 (diff) | |
| download | hiredict-d756f68a59d694a91c1882c782161a023ea67766.tar.xz | |
Add libhv example to our standard Makefile
See #904
| -rw-r--r-- | Makefile | 3 | 
1 files changed, 3 insertions, 0 deletions
| @@ -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) | 
