forked from phillipberndt/autorandr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
177 lines (146 loc) · 6.35 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
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
all:
@echo "Call \"make install\" to install this program."
@echo "Call \"make uninstall\" to remove this program."
@echo
@echo "The following components were autodetected and will be installed:"
@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)"
@echo
@echo "You can use the TARGETS variable to override this, but need to set"
@echo "the SYSTEMD_UNIT_DIR, PM_SLEEPHOOKS_DIR and UDEV_RULES_DIR variables"
@echo "in case they were not detected correctly."
@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
install_autorandr:
install -D -m 755 autorandr.py ${DESTDIR}${PREFIX}/bin/autorandr
uninstall_autorandr:
rm -f ${DESTDIR}${PREFIX}/bin/autorandr
# 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_COMPLETIONS_DIR}/autorandr
uninstall_bash_completion:
rm -f ${DESTDIR}/${BASH_COMPLETIONS_DIR}/autorandr
# Rules for autostart config
XDG_AUTOSTART_DIR=/etc/xdg/autostart
DEFAULT_TARGETS+=autostart_config
install_autostart_config:
install -D -m 644 contrib/etc/xdg/autostart/autorandr.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
ifneq ($(PREFIX),/usr/)
sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
endif
uninstall_autostart_config:
rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
# Rules for systemd
SYSTEMD_UNIT_DIR:=$(shell pkg-config --variable=systemdsystemunitdir systemd 2>/dev/null)
ifneq (,$(SYSTEMD_UNIT_DIR))
DEFAULT_TARGETS+=systemd
endif
install_systemd:
$(if $(SYSTEMD_UNIT_DIR),,$(error SYSTEMD_UNIT_DIR is not defined))
install -D -m 644 contrib/systemd/autorandr.service ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
ifneq ($(PREFIX),/usr/)
sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
endif
@echo
@echo "To activate the systemd unit, run this command as root:"
@echo " systemctl daemon-reload"
@echo " systemctl enable autorandr.service"
@echo
uninstall_systemd:
$(if $(SYSTEMD_UNIT_DIR),,$(error SYSTEMD_UNIT_DIR is not defined))
rm -f ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
# Rules for pmutils
PM_SLEEPHOOKS_DIR:=$(shell pkg-config --variable=pm_sleephooks pm-utils 2>/dev/null)
ifneq (,$(PM_SLEEPHOOKS_DIR))
ifeq (,$(SYSTEMD_UNIT_DIR))
DEFAULT_TARGETS+=pmutils
endif
endif
install_pmutils:
$(if $(PM_SLEEPHOOKS_DIR),,$(error PM_SLEEPHOOKS_DIR is not defined))
install -D -m 755 contrib/pm-utils/40autorandr ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
ifneq ($(PREFIX),/usr/)
sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
endif
uninstall_pmutils:
$(if $(PM_SLEEPHOOKS_DIR),,$(error PM_SLEEPHOOKS_DIR is not defined))
rm -f ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
# Rules for udev
UDEV_RULES_DIR:=$(shell pkg-config --variable=udevdir udev 2>/dev/null)/rules.d
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 --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"
@echo
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))
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)