]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blob - Makefile
Use add or remove instead of change
[deb_pkgs/autorandr.git] / Makefile
1 DESTDIR=/
2 PREFIX=/usr/
3 RPM_SPEC=contrib/packaging/rpm/autorandr.spec
4 CFLAGS?=-O2 -Wall
5 CLEANUP_FILES=
6
7 .PHONY: all install uninstall autorandr bash_completion autostart_config pmutils systemd udev
8
9 all:
10         @echo "Call \"make install\" to install this program."
11         @echo "Call \"make uninstall\" to remove this program."
12         @echo
13         @echo "The following components were autodetected and will be installed:"
14         @echo " "$(DEFAULT_TARGETS)
15         @echo
16         @echo "The following locations have been detected (from pkg-config):"
17         @echo " - BASH_COMPLETIONS_DIR: $(BASH_COMPLETIONS_DIR)"
18         @echo " - SYSTEMD_UNIT_DIR: $(SYSTEMD_UNIT_DIR)"
19         @echo " - UDEV_RULES_DIR: $(UDEV_RULES_DIR)"
20         @echo " - PM_SLEEPHOOKS_DIR: $(PM_SLEEPHOOKS_DIR)"
21         @echo
22         @echo "You can use the TARGETS variable to override this, but need to set"
23         @echo "the SYSTEMD_UNIT_DIR, PM_SLEEPHOOKS_DIR and UDEV_RULES_DIR variables"
24         @echo "in case they were not detected correctly."
25         @echo
26         @echo 'E.g. "make install TARGETS='autorandr pmutils' PM_UTILS_DIR=/etc/pm/sleep.d".'
27         @echo
28         @echo "An additional TARGETS variable \"launcher\" is available. This"
29         @echo "installs a launcher called \"autorandr_launcher\". The launcher"
30         @echo "is able to be run by the user and calls autorandr automatically"
31         @echo "without using udev rules. The launcher is an alternative to the"
32         @echo "udev/systemd setup that is more stable for some users."
33         @echo
34         @echo "The following additional targets are available:"
35         @echo
36         @echo "    make deb        creates a Debian package"
37         @echo "    make rpm        creates a RPM package"
38
39 # Rules for autorandr itself
40 DEFAULT_TARGETS=autorandr
41
42 install_autorandr:
43         mkdir -p ${DESTDIR}${PREFIX}/bin
44         install -m 755 autorandr.py ${DESTDIR}${PREFIX}/bin/autorandr
45
46 uninstall_autorandr:
47         rm -f ${DESTDIR}${PREFIX}/bin/autorandr
48
49 # Rules for bash-completion
50 BASH_COMPLETIONS_DIR:=$(shell pkg-config --variable=completionsdir bash-completion 2>/dev/null)
51 ifneq (,$(BASH_COMPLETIONS_DIR))
52 DEFAULT_TARGETS+=bash_completion
53 endif
54
55 install_bash_completion:
56         mkdir -p ${DESTDIR}/${BASH_COMPLETIONS_DIR}
57         install -m 644 contrib/bash_completion/autorandr ${DESTDIR}/${BASH_COMPLETIONS_DIR}/autorandr
58
59 uninstall_bash_completion:
60         rm -f ${DESTDIR}/${BASH_COMPLETIONS_DIR}/autorandr
61
62 # Rules for autostart config
63 XDG_AUTOSTART_DIR=/etc/xdg/autostart
64 DEFAULT_TARGETS+=autostart_config
65
66 install_autostart_config:
67         mkdir -p ${DESTDIR}/${XDG_AUTOSTART_DIR}
68         install -m 644 contrib/etc/xdg/autostart/autorandr.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
69 ifneq ($(PREFIX),/usr/)
70         sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
71 endif
72
73 uninstall_autostart_config:
74         rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
75
76 # Rules for systemd
77 SYSTEMD_UNIT_DIR:=$(shell pkg-config --variable=systemdsystemunitdir systemd 2>/dev/null)
78 ifneq (,$(SYSTEMD_UNIT_DIR))
79 DEFAULT_TARGETS+=systemd
80 endif
81
82 install_systemd:
83         $(if $(SYSTEMD_UNIT_DIR),,$(error SYSTEMD_UNIT_DIR is not defined))
84         mkdir -p ${DESTDIR}/${SYSTEMD_UNIT_DIR}
85         install -m 644 contrib/systemd/autorandr.service ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
86         install -m 644 contrib/systemd/autorandr-lid-listener.service ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr-lid-listener.service
87 ifneq ($(PREFIX),/usr/)
88         sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
89 endif
90         @echo
91         @echo "To activate the systemd units, run this command as root:"
92         @echo "    systemctl daemon-reload"
93         @echo "    systemctl enable autorandr.service"
94         @echo "    systemctl enable autorandr-lid-listener.service"
95         @echo
96
97 uninstall_systemd:
98         $(if $(SYSTEMD_UNIT_DIR),,$(error SYSTEMD_UNIT_DIR is not defined))
99         rm -f ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
100         rm -f ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr-lid-listener.service
101
102 # Rules for pmutils
103 PM_SLEEPHOOKS_DIR:=$(shell pkg-config --variable=pm_sleephooks pm-utils 2>/dev/null)
104 ifneq (,$(PM_SLEEPHOOKS_DIR))
105 ifeq (,$(SYSTEMD_UNIT_DIR))
106 DEFAULT_TARGETS+=pmutils
107 endif
108 endif
109
110 install_pmutils:
111         $(if $(PM_SLEEPHOOKS_DIR),,$(error PM_SLEEPHOOKS_DIR is not defined))
112         mkdir -p ${DESTDIR}/${PM_SLEEPHOOKS_DIR}
113         install -m 755 contrib/pm-utils/40autorandr ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
114 ifneq ($(PREFIX),/usr/)
115         sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
116 endif
117
118 uninstall_pmutils:
119         $(if $(PM_SLEEPHOOKS_DIR),,$(error PM_SLEEPHOOKS_DIR is not defined))
120         rm -f ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
121
122
123 # Rules for udev
124 UDEV_RULES_DIR:=$(shell pkg-config --variable=udevdir udev 2>/dev/null)/rules.d
125 ifneq (/rules.d,$(UDEV_RULES_DIR))
126 DEFAULT_TARGETS+=udev
127 endif
128
129 install_udev:
130         $(if $(UDEV_RULES_DIR),,$(error UDEV_RULES_DIR is not defined))
131         mkdir -p ${DESTDIR}/${UDEV_RULES_DIR}/
132         echo 'ACTION=="add|remove", SUBSYSTEM=="drm", RUN+="$(if $(findstring systemd, $(MAKECMDGOALS)),/bin/systemctl start --no-block autorandr.service,${PREFIX}/bin/autorandr --batch --change --default default)"' > ${DESTDIR}/${UDEV_RULES_DIR}/40-monitor-hotplug.rules
133         @echo
134         @echo "To activate the udev rules, run this command as root:"
135         @echo "    udevadm control --reload-rules"
136         @echo
137
138 uninstall_udev:
139         $(if $(UDEV_RULES_DIR),,$(error UDEV_RULES_DIR is not defined))
140         rm -f ${DESTDIR}/${UDEV_RULES_DIR}/40-monitor-hotplug.rules
141
142 # Rules for manpage
143 MANDIR:=${PREFIX}/share/man/man1
144 DEFAULT_TARGETS+=manpage
145
146 install_manpage:
147         mkdir -p ${DESTDIR}/${MANDIR}
148         cp autorandr.1 ${DESTDIR}/${MANDIR}
149
150 uninstall_manpage:
151         rm -f ${DESTDIR}/${MANDIR}/autorandr.1
152
153 # Rules for launcher
154 LAUNCHER_LDLIBS=$(shell pkg-config --libs pkg-config xcb xcb-randr 2>/dev/null)
155 ifneq (,$(LAUNCHER_LDLIBS))
156 CLEANUP_FILES+=contrib/autorandr_launcher/autorandr-launcher
157 LAUNCHER_CFLAGS=$(shell pkg-config --cflags pkg-config xcb xcb-randr 2>/dev/null)
158 contrib/autorandr_launcher/autorandr-launcher: contrib/autorandr_launcher/autorandr_launcher.c
159         $(CC) $(CFLAGS) $(LAUNCHER_CFLAGS) -o $@ $+ $(LDFLAGS) $(LAUNCHER_LDLIBS) $(LDLIBS)
160
161 install_launcher: contrib/autorandr_launcher/autorandr-launcher
162         mkdir -p ${DESTDIR}${PREFIX}/bin
163         install -m 755 contrib/autorandr_launcher/autorandr-launcher ${DESTDIR}${PREFIX}/bin/autorandr-launcher
164         mkdir -p ${DESTDIR}/${XDG_AUTOSTART_DIR}
165         install -m 644 contrib/etc/xdg/autostart/autorandr-launcher.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
166 ifneq ($(PREFIX),/usr/)
167         sed -i -re 's#/usr/bin/autorandr-launcher#$(subst #,\#,${PREFIX})/bin/autorandr-launcher#g' ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
168 endif
169 endif
170
171 uninstall_launcher:
172         rm -f ${DESTDIR}${PREFIX}/bin/autorandr-launcher
173         rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
174
175 TARGETS=$(DEFAULT_TARGETS)
176 install: $(patsubst %,install_%,$(TARGETS))
177 uninstall: $(patsubst %,uninstall_%,$(TARGETS))
178
179 deb:
180         ./contrib/packaging/debian/make_deb.sh
181
182 rpm:
183         spectool -g -R $(RPM_SPEC)
184         rpmbuild -ba $(RPM_SPEC)
185
186 clean:
187         rm -f $(CLEANUP_FILES)