]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blobdiff - Makefile
Added target manpage to Makefile
[deb_pkgs/autorandr.git] / Makefile
index ee4f94efec2e9dd16ed4b2941ff823a8ff978ad5..872c4cc2c9e4bd9626ddc1483395d5e40f5a2a74 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@ all:
        @echo " "$(DEFAULT_TARGETS)
        @echo
        @echo "The following locations have been detected (from pkg-config):"
+       @echo " - BASH_COMPLETIONS_DIR: $(BASH_COMPLETIONS_DIR)"
        @echo " - SYSTEMD_UNIT_DIR: $(SYSTEMD_UNIT_DIR)"
        @echo " - UDEV_RULES_DIR: $(UDEV_RULES_DIR)"
        @echo " - PM_SLEEPHOOKS_DIR: $(PM_SLEEPHOOKS_DIR)"
@@ -34,17 +35,17 @@ install_autorandr:
 uninstall_autorandr:
        rm -f ${DESTDIR}${PREFIX}/bin/autorandr
 
-# Rules for bash_completion
-BASH_COMPLETION_DIR:=$(shell pkg-config --variable=completionsdir bash-completion 2>/dev/null)
-ifneq (,$(BASH_COMPLETION_DIR))
+# Rules for bash-completion
+BASH_COMPLETIONS_DIR:=$(shell pkg-config --variable=completionsdir bash-completion 2>/dev/null)
+ifneq (,$(BASH_COMPLETIONS_DIR))
 DEFAULT_TARGETS+=bash_completion
 endif
 
 install_bash_completion:
-       install -D -m 644 contrib/bash_completion/autorandr ${DESTDIR}/${BASH_COMPLETION_DIR}/autorandr
+       install -D -m 644 contrib/bash_completion/autorandr ${DESTDIR}/${BASH_COMPLETIONS_DIR}/autorandr
 
 uninstall_bash_completion:
-       rm -f ${DESTDIR}/${BASH_COMPLETION_DIR}/autorandr
+       rm -f ${DESTDIR}/${BASH_COMPLETIONS_DIR}/autorandr
 
 # Rules for autostart config
 XDG_AUTOSTART_DIR=/etc/xdg/autostart
@@ -120,6 +121,18 @@ uninstall_udev:
        $(if $(UDEV_RULES_DIR),,$(error UDEV_RULES_DIR is not defined))
        rm -f ${DESTDIR}/${UDEV_RULES_DIR}/40-monitor-hotplug.rules
 
+# Rules for manpage
+MANPAGES_DIR:=/usr/share/man/man1
+DEFAULT_TARGETS+=manpage
+
+install_manpage:
+       mkdir -p ${MANPAGES_DIR}
+       cp autorandr.1 ${MANPAGES_DIR}
+       mandb -qp
+
+uninstall_manpage:
+       rm -f ${MANPAGES_DIR}/autorandr.1
+       mandb -q
 
 TARGETS=$(DEFAULT_TARGETS)
 install: $(patsubst %,install_%,$(TARGETS))