Several external projects (e.g. parsecvs) need libgit library and related header files. Signed-off-by: Dmitry V. Levin <ldv@xxxxxxxxxxxx> --- Makefile | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 51af531..d50e30b 100644 --- a/Makefile +++ b/Makefile @@ -143,6 +143,8 @@ STRIP ?= strip prefix = $(HOME) bindir = $(prefix)/bin +libdir = $(prefix)/lib +includedir = $(prefix)/include gitexecdir = $(bindir) sharedir = $(prefix)/share template_dir = $(sharedir)/git-core/templates @@ -702,6 +704,8 @@ ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG)) DESTDIR_SQ = $(subst ','\'',$(DESTDIR)) bindir_SQ = $(subst ','\'',$(bindir)) +libdir_SQ = $(subst ','\'',$(libdir)) +includedir_SQ = $(subst ','\'',$(includedir)) gitexecdir_SQ = $(subst ','\'',$(gitexecdir)) template_dir_SQ = $(subst ','\'',$(template_dir)) prefix_SQ = $(subst ','\'',$(prefix)) @@ -1017,6 +1021,13 @@ install-info: quick-install-doc: $(MAKE) -C Documentation quick-install +install-lib: $(LIB_FILE) + $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(libdir_SQ)' + $(INSTALL) -p -m644 $(LIB_FILE) '$(DESTDIR_SQ)$(libdir_SQ)/' + +install-include: $(LIB_H) + $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(includedir_SQ)/git' + $(INSTALL) -p -m644 $(LIB_H) '$(DESTDIR_SQ)$(includedir_SQ)/git/' ### Maintainer's dist rules -- ldv - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html