.PHONY: install
install: all notmuch.1.gz
- mkdir -p $(DESTDIR)$(prefix)/share/man/man1
- install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/
+ mkdir -p $(DESTDIR)$(mandir)/man1
+ install -m0644 notmuch.1.gz $(DESTDIR)$(mandir)/man1/
mkdir -p $(DESTDIR)$(prefix)/bin/
install notmuch-shared $(DESTDIR)$(prefix)/bin/notmuch
ifeq ($(MAKECMDGOALS), install)
--libdir=DIR Install libraries to DIR [PREFIX/lib]
--includedir=DIR Install header files to DIR [PREFIX/include]
+ --mandir=DIR Install man pages to DIR [PREFIX/share/man]
Additional options are accepted for compatibility with other
configure-script calling conventions, but don't do anything yet:
LIBDIR="${option#*=}"
elif [ "${option%%=*}" = '--includedir' ] ; then
INCLUDEDIR="${option#*=}"
+ elif [ "${option%%=*}" = '--mandir' ] ; then
+ MANDIR="${option#*=}"
elif [ "${option%%=*}" = '--build' ] ; then
build_option="${option#*=}"
case ${build_option} in
# The directory to which header files should be installed
includedir = ${INCLUDEDIR:=\$(prefix)/lib}
+# The directory to which man pages should be installed
+mandir = ${MANDIR:=\$(prefix)/share/man}
+
# The directory to which emacs lisp files should be installed
emacs_lispdir=${emacs_lispdir}