1
0
mirror of https://github.com/MatMoul/g810-led.git synced 2025-04-04 15:21:45 +00:00

Makefile: install/uninstall systemd resume service

This commit is contained in:
Sebastian Schlicht 2018-11-28 13:53:32 +01:00
parent 67a36e2920
commit c8d920f3f5

View File

@ -70,7 +70,8 @@ setup:
@cp udev/$(PROGN).rules $(DESTDIR)/etc/udev/rules.d
@test -s /usr/bin/systemd-run && \
install -m 755 -d $(DESTDIR)$(SYSTEMDDIR)/system && \
cp systemd/$(PROGN)-reboot.service $(DESTDIR)$(SYSTEMDDIR)/system
cp systemd/$(PROGN)-reboot.service $(DESTDIR)$(SYSTEMDDIR)/system && \
cp systemd/$(PROGN)-resume.service $(DESTDIR)$(SYSTEMDDIR)/system
install-lib: lib
@install -m 755 -d $(libdir)
@ -90,7 +91,8 @@ install: setup
@$(PROGN) -p /etc/$(PROGN)/profile
@test -s /usr/bin/systemd-run && \
systemctl daemon-reload && \
systemctl enable $(PROGN)-reboot
systemctl enable $(PROGN)-reboot && \
systemctl enable $(PROGN)-resume
uninstall-lib:
@rm -f $(libdir)/lib$(PROGN).so*
@ -102,6 +104,8 @@ uninstall:
@test -s /usr/bin/systemd-run && \
systemctl disable $(PROGN)-reboot && \
rm $(SYSTEMDDIR)/system/$(PROGN)-reboot.service && \
systemctl disable $(PROGN)-resume && \
rm $(SYSTEMDDIR)/system/$(PROGN)-resume.service && \
systemctl daemon-reload && \
rm -R /etc/$(PROGN)