]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blob - Makefile
Makefile: Do not use -D with install(1)
[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 ifneq ($(PREFIX),/usr/)
87         sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
88 endif
89         @echo
90         @echo "To activate the systemd unit, run this command as root:"
91         @echo "    systemctl daemon-reload"
92         @echo "    systemctl enable autorandr.service"
93         @echo
94
95 uninstall_systemd:
96         $(if $(SYSTEMD_UNIT_DIR),,$(error SYSTEMD_UNIT_DIR is not defined))
97         rm -f ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
98
99 # Rules for pmutils
100 PM_SLEEPHOOKS_DIR:=$(shell pkg-config --variable=pm_sleephooks pm-utils 2>/dev/null)
101 ifneq (,$(PM_SLEEPHOOKS_DIR))
102 ifeq (,$(SYSTEMD_UNIT_DIR))
103 DEFAULT_TARGETS+=pmutils
104 endif
105 endif
106
107 install_pmutils:
108         $(if $(PM_SLEEPHOOKS_DIR),,$(error PM_SLEEPHOOKS_DIR is not defined))
109         mkdir -p ${DESTDIR}/${PM_SLEEPHOOKS_DIR}
110         install -m 755 contrib/pm-utils/40autorandr ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
111 ifneq ($(PREFIX),/usr/)
112         sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
113 endif
114
115 uninstall_pmutils:
116         $(if $(PM_SLEEPHOOKS_DIR),,$(error PM_SLEEPHOOKS_DIR is not defined))
117         rm -f ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
118
119
120 # Rules for udev
121 UDEV_RULES_DIR:=$(shell pkg-config --variable=udevdir udev 2>/dev/null)/rules.d
122 ifneq (/rules.d,$(UDEV_RULES_DIR))
123 DEFAULT_TARGETS+=udev
124 endif
125
126 install_udev:
127         $(if $(UDEV_RULES_DIR),,$(error UDEV_RULES_DIR is not defined))
128         mkdir -p ${DESTDIR}/${UDEV_RULES_DIR}/
129         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
130         @echo
131         @echo "To activate the udev rules, run this command as root:"
132         @echo "    udevadm control --reload-rules"
133         @echo
134
135 uninstall_udev:
136         $(if $(UDEV_RULES_DIR),,$(error UDEV_RULES_DIR is not defined))
137         rm -f ${DESTDIR}/${UDEV_RULES_DIR}/40-monitor-hotplug.rules
138
139 # Rules for manpage
140 MANDIR:=${PREFIX}/share/man/man1
141 DEFAULT_TARGETS+=manpage
142
143 install_manpage:
144         mkdir -p ${DESTDIR}/${MANDIR}
145         cp autorandr.1 ${DESTDIR}/${MANDIR}
146
147 uninstall_manpage:
148         rm -f ${DESTDIR}/${MANDIR}/autorandr.1
149
150 # Rules for launcher
151 LAUNCHER_LDLIBS=$(shell pkg-config --libs pkg-config xcb xcb-randr 2>/dev/null)
152 ifneq (,$(LAUNCHER_LDLIBS))
153 CLEANUP_FILES+=contrib/autorandr_launcher/autorandr-launcher
154 LAUNCHER_CFLAGS=$(shell pkg-config --cflags pkg-config xcb xcb-randr 2>/dev/null)
155 contrib/autorandr_launcher/autorandr-launcher: contrib/autorandr_launcher/autorandr_launcher.c
156         $(CC) $(CFLAGS) $(LAUNCHER_CFLAGS) -o $@ $+ $(LDFLAGS) $(LAUNCHER_LDLIBS) $(LDLIBS)
157
158 install_launcher: contrib/autorandr_launcher/autorandr-launcher
159         mkdir -p ${DESTDIR}${PREFIX}/bin
160         install -m 755 contrib/autorandr_launcher/autorandr-launcher ${DESTDIR}${PREFIX}/bin/autorandr-launcher
161         mkdir -p ${DESTDIR}/${XDG_AUTOSTART_DIR}
162         install -m 644 contrib/etc/xdg/autostart/autorandr-launcher.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
163 ifneq ($(PREFIX),/usr/)
164         sed -i -re 's#/usr/bin/autorandr-launcher#$(subst #,\#,${PREFIX})/bin/autorandr-launcher#g' ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
165 endif
166 endif
167
168 uninstall_launcher:
169         rm -f ${DESTDIR}${PREFIX}/bin/autorandr-launcher
170         rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
171
172 TARGETS=$(DEFAULT_TARGETS)
173 install: $(patsubst %,install_%,$(TARGETS))
174 uninstall: $(patsubst %,uninstall_%,$(TARGETS))
175
176 deb:
177         ./contrib/packaging/debian/make_deb.sh
178
179 rpm:
180         spectool -g -R $(RPM_SPEC)
181         rpmbuild -ba $(RPM_SPEC)
182
183 clean:
184         rm -f $(CLEANUP_FILES)