summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Grunder <michael.grunder@gmail.com>2020-01-29 01:00:14 -0800
committerGitHub <noreply@github.com>2020-01-29 01:00:14 -0800
commit3421ac30932eed6d49405dd9b1b7438adc85a68e (patch)
tree9bf59489da4eb23fc6fa0c17ba8b7462546f6246
parent669ac9d0c843f9ccf07d4969ff6bff75fafee01f (diff)
parent3ae47397990c54594cf398ef66c87d0eca9c3ca9 (diff)
Merge pull request #756 from ch1aki/fix-make-install
install alloc.h
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 10a823c..2e9f445 100644
--- a/Makefile
+++ b/Makefile
@@ -238,7 +238,7 @@ $(SSL_PKGCONFNAME): hiredis.h
install: $(DYLIBNAME) $(STLIBNAME) $(PKGCONFNAME)
mkdir -p $(INSTALL_INCLUDE_PATH) $(INSTALL_INCLUDE_PATH)/adapters $(INSTALL_LIBRARY_PATH)
- $(INSTALL) hiredis.h async.h read.h sds.h $(INSTALL_INCLUDE_PATH)
+ $(INSTALL) hiredis.h async.h read.h sds.h alloc.h $(INSTALL_INCLUDE_PATH)
$(INSTALL) adapters/*.h $(INSTALL_INCLUDE_PATH)/adapters
$(INSTALL) $(DYLIBNAME) $(INSTALL_LIBRARY_PATH)/$(DYLIB_MINOR_NAME)
cd $(INSTALL_LIBRARY_PATH) && ln -sf $(DYLIB_MINOR_NAME) $(DYLIBNAME)