mirror of
https://github.com/seqizz/autorandr.git
synced 2024-09-07 10:30:28 +02:00
Clean up autorandr-launcher build process
This commit is contained in:
parent
9594b701d9
commit
09971ff36f
1 changed files with 14 additions and 5 deletions
19
Makefile
19
Makefile
|
@ -1,7 +1,8 @@
|
|||
DESTDIR=/
|
||||
PREFIX=/usr/
|
||||
RPM_SPEC=contrib/packaging/rpm/autorandr.spec
|
||||
CFLAGS=-O2
|
||||
CFLAGS?=-O2 -Wall
|
||||
CLEANUP_FILES=
|
||||
|
||||
.PHONY: all install uninstall autorandr bash_completion autostart_config pmutils systemd udev
|
||||
|
||||
|
@ -143,15 +144,20 @@ uninstall_manpage:
|
|||
mandb -q
|
||||
|
||||
# Rules for launcher
|
||||
LAUNCHER_FLAGS=$(shell pkg-config --libs --cflags pkg-config xcb xcb-randr 2>/dev/null)
|
||||
install_launcher:
|
||||
gcc -Wall $(CFLAGS) contrib/autorandr_launcher/autorandr_launcher.c -o contrib/autorandr_launcher/autorandr-launcher $(LAUNCHER_FLAGS)
|
||||
install -D -m 755 contrib/autorandr_launcher/autorandr-launcher ${DESTDIR}${PREFIX}/bin/autorandr-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
|
||||
|
@ -167,3 +173,6 @@ deb:
|
|||
rpm:
|
||||
spectool -g -R $(RPM_SPEC)
|
||||
rpmbuild -ba $(RPM_SPEC)
|
||||
|
||||
clean:
|
||||
rm -f $(CLEANUP_FILES)
|
||||
|
|
Loading…
Reference in a new issue