X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Makefile;h=d8b27c6e5eac1ce9627e2cb224c3c2aa6473180e;hb=c58de9b13cf910d934960369241ac003c149f783;hp=ee4f94efec2e9dd16ed4b2941ff823a8ff978ad5;hpb=5ec2d52568d609f8a5e38999b1de05b4d96bde46;p=deb_pkgs%2Fautorandr.git diff --git a/Makefile b/Makefile index ee4f94e..d8b27c6 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ DESTDIR=/ PREFIX=/usr/ +RPM_SPEC=contrib/packaging/rpm/autorandr.spec .PHONY: all install uninstall autorandr bash_completion autostart_config pmutils systemd udev @@ -11,6 +12,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)" @@ -21,6 +23,11 @@ all: @echo @echo 'E.g. "make install TARGETS='autorandr pmutils' PM_UTILS_DIR=/etc/pm/sleep.d".' @echo + @echo "An additional TARGETS variable \"launcher\" is available. This" + @echo "installs a launcher called \"autorandr_launcher\". The launcher" + @echo "is able to be run by the user and calls autorandr automatically" + @echo "without using udev rules." + @echo @echo "The following additional targets are available:" @echo @echo " make deb creates a Debian package" @@ -34,17 +41,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 +127,24 @@ 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 +MANDIR:=${PREFIX}/share/man/man1 +DEFAULT_TARGETS+=manpage + +install_manpage: + mkdir -p ${DESTDIR}/${MANDIR} + cp autorandr.1 ${DESTDIR}/${MANDIR} + +uninstall_manpage: + rm -f ${DESTDIR}/${MANDIR}/autorandr.1 + +# Rules for launcher +install_launcher: + gcc -Wall contrib/autorandr_launcher/autorandr_launcher.c -o contrib/autorandr_launcher/autorandr_launcher -lxcb -lxcb-randr + install -D -m 755 contrib/autorandr_launcher/autorandr_launcher ${DESTDIR}${PREFIX}/bin/autorandr_launcher + +uninstall_launcher: + rm -f ${DESTDIR}${PREFIX}/bin/autorandr_launcher TARGETS=$(DEFAULT_TARGETS) install: $(patsubst %,install_%,$(TARGETS)) @@ -127,3 +152,7 @@ uninstall: $(patsubst %,uninstall_%,$(TARGETS)) deb: ./contrib/packaging/debian/make_deb.sh + +rpm: + spectool -g -R $(RPM_SPEC) + rpmbuild -ba $(RPM_SPEC)