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:
parent
67a36e2920
commit
c8d920f3f5
8
makefile
8
makefile
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user