X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Makefile;h=c53510b8075e0f68673b80f867e03ff46b2dbc6d;hb=a50b16aa1ad5a6819e902cc0570bbf18421563fc;hp=7125730d3bfe285ce6d70760e4d0bc3928ec8bea;hpb=20fe858e0852cf40dc9b7e045f9e66bebc4ca022;p=deb_pkgs%2Fautorandr.git diff --git a/Makefile b/Makefile index 7125730..c53510b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ DESTDIR=/ PREFIX=/usr/ +RPM_SPEC=contrib/packaging/rpm/autorandr.spec +CFLAGS?=-O2 -Wall +CLEANUP_FILES= .PHONY: all install uninstall autorandr bash_completion autostart_config pmutils systemd udev @@ -11,6 +14,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,9 +25,16 @@ 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. The launcher is an alternative to the" + @echo "udev/systemd setup that is more stable for some users." + @echo @echo "The following additional targets are available:" @echo @echo " make deb creates a Debian package" + @echo " make rpm creates a RPM package" # Rules for autorandr itself DEFAULT_TARGETS=autorandr @@ -34,18 +45,17 @@ install_autorandr: uninstall_autorandr: rm -f ${DESTDIR}${PREFIX}/bin/autorandr -# Rules for bash_completion -BASH_COMPLETION_DIR=/etc/bash_completion.d -HAVE_BASH_COMPLETION=$(shell [ -d /etc/bash_completion.d/ ] && echo "y") -ifeq ($(HAVE_BASH_COMPLETION),y) +# 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 @@ -104,14 +114,14 @@ uninstall_pmutils: # Rules for udev UDEV_RULES_DIR:=$(shell pkg-config --variable=udevdir udev 2>/dev/null)/rules.d -ifneq (,$(UDEV_RULES_DIR),y) +ifneq (/rules.d,$(UDEV_RULES_DIR)) DEFAULT_TARGETS+=udev endif install_udev: $(if $(UDEV_RULES_DIR),,$(error UDEV_RULES_DIR is not defined)) mkdir -p ${DESTDIR}/${UDEV_RULES_DIR}/ - echo 'ACTION=="change", SUBSYSTEM=="drm", RUN+="$(if $(findstring systemd, $(TARGETS)),/bin/systemctl start autorandr.service,${PREFIX}/bin/autorandr --batch --change --default default)"' > ${DESTDIR}/${UDEV_RULES_DIR}/40-monitor-hotplug.rules + echo 'ACTION=="change", SUBSYSTEM=="drm", RUN+="$(if $(findstring systemd, $(TARGETS)),/bin/systemctl start --no-block autorandr.service,${PREFIX}/bin/autorandr --batch --change --default default)"' > ${DESTDIR}/${UDEV_RULES_DIR}/40-monitor-hotplug.rules @echo @echo "To activate the udev rules, run this command as root:" @echo " udevadm control --reload-rules" @@ -121,6 +131,36 @@ 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 +LAUNCHER_LDLIBS=$(shell pkg-config --libs pkg-config xcb xcb-randr 2>/dev/null) +ifneq (,$(LAUNCHER_LDLIBS)) +CLEANUP_FILES+=contrib/autorandr_launcher/autorandr-launcher +LAUNCHER_CFLAGS=$(shell pkg-config --cflags pkg-config xcb xcb-randr 2>/dev/null) +contrib/autorandr_launcher/autorandr-launcher: contrib/autorandr_launcher/autorandr_launcher.c + $(CC) $(CFLAGS) $(LAUNCHER_CFLAGS) -o $@ $+ $(LDFLAGS) $(LAUNCHER_LDLIBS) $(LDLIBS) + +install_launcher: contrib/autorandr_launcher/autorandr-launcher + install -D -m 755 contrib/autorandr_launcher/autorandr-launcher ${DESTDIR}${PREFIX}/bin/autorandr-launcher + install -D -m 644 contrib/etc/xdg/autostart/autorandr-launcher.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop +ifneq ($(PREFIX),/usr/) + sed -i -re 's#/usr/bin/autorandr-launcher#$(subst #,\#,${PREFIX})/bin/autorandr-launcher#g' ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop +endif +endif + +uninstall_launcher: + rm -f ${DESTDIR}${PREFIX}/bin/autorandr-launcher + rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop TARGETS=$(DEFAULT_TARGETS) install: $(patsubst %,install_%,$(TARGETS)) @@ -128,3 +168,10 @@ uninstall: $(patsubst %,uninstall_%,$(TARGETS)) deb: ./contrib/packaging/debian/make_deb.sh + +rpm: + spectool -g -R $(RPM_SPEC) + rpmbuild -ba $(RPM_SPEC) + +clean: + rm -f $(CLEANUP_FILES)