mirror of
https://github.com/MatMoul/g810-led.git
synced 2024-12-23 09:16:11 +00:00
Split file installation and loading commands
To ease packaging, the new setup rule only copies files to the correct location. The install rules perform the commands to load the newly installed files.
This commit is contained in:
parent
1eb4902437
commit
596bc731cf
28
makefile
28
makefile
@ -25,31 +25,23 @@ debug: bin/$(PROGN)
|
|||||||
clean:
|
clean:
|
||||||
@rm -rf bin
|
@rm -rf bin
|
||||||
|
|
||||||
install:
|
setup:
|
||||||
@install -m 755 -d \
|
@install -m 755 -d $(DESTDIR)/etc/udev/rules.d $(DESTDIR)/usr/bin
|
||||||
$(DESTDIR)/etc/udev/rules.d \
|
|
||||||
$(DESTDIR)/usr/bin
|
|
||||||
@cp bin/$(PROGN) $(DESTDIR)/usr/bin
|
@cp bin/$(PROGN) $(DESTDIR)/usr/bin
|
||||||
@test -s $(DESTDIR)/usr/bin/g410-led || ln -s /usr/bin/$(PROGN) $(DESTDIR)/usr/bin/g410-led
|
@test -s $(DESTDIR)/usr/bin/g410-led || ln -s /usr/bin/$(PROGN) $(DESTDIR)/usr/bin/g410-led
|
||||||
@test -s $(DESTDIR)/usr/bin/g610-led || ln -s /usr/bin/$(PROGN) $(DESTDIR)/usr/bin/g610-led
|
@test -s $(DESTDIR)/usr/bin/g610-led || ln -s /usr/bin/$(PROGN) $(DESTDIR)/usr/bin/g610-led
|
||||||
@test -s $(DESTDIR)/usr/bin/g910-led || ln -s /usr/bin/$(PROGN) $(DESTDIR)/usr/bin/g910-led
|
@test -s $(DESTDIR)/usr/bin/g910-led || ln -s /usr/bin/$(PROGN) $(DESTDIR)/usr/bin/g910-led
|
||||||
|
|
||||||
@cp udev/$(PROGN).rules $(DESTDIR)/etc/udev/rules.d
|
@cp udev/$(PROGN).rules $(DESTDIR)/etc/udev/rules.d
|
||||||
@udevadm control --reload-rules
|
@install -m 755 -d $(DESTDIR)/etc/$(PROGN)/samples $(DESTDIR)$(SYSTEMDDIR)/system
|
||||||
|
@cp sample_profiles/* $(DESTDIR)/etc/$(PROGN)/samples
|
||||||
|
@cp $(DESTDIR)/etc/$(PROGN)/samples/group_keys $(DESTDIR)/etc/$(PROGN)/profile
|
||||||
|
@cp $(DESTDIR)/etc/$(PROGN)/samples/all_off $(DESTDIR)/etc/$(PROGN)/reboot
|
||||||
|
@cp systemd/$(PROGN).service $(DESTDIR)$(SYSTEMDDIR)/system
|
||||||
|
@cp systemd/$(PROGN)-reboot.service $(DESTDIR)$(SYSTEMDDIR)/system
|
||||||
|
|
||||||
|
install: setup
|
||||||
|
@udevadm control --reload-rules
|
||||||
@test -s /usr/bin/systemd-run && \
|
@test -s /usr/bin/systemd-run && \
|
||||||
install -m 755 -d \
|
|
||||||
$(DESTDIR)/etc/$(PROGN)/samples \
|
|
||||||
$(DESTDIR)$(SYSTEMDDIR)/system && \
|
|
||||||
cp sample_profiles/* $(DESTDIR)/etc/$(PROGN)/samples && \
|
|
||||||
test -s $(DESTDIR)/etc/$(PROGN)/profile || \
|
|
||||||
cp $(DESTDIR)/etc/$(PROGN)/samples/group_keys $(DESTDIR)/etc/$(PROGN)/profile
|
|
||||||
@test -s /usr/bin/systemd-run && \
|
|
||||||
test -s $(DESTDIR)/etc/$(PROGN)/reboot || \
|
|
||||||
cp $(DESTDIR)/etc/$(PROGN)/samples/all_off $(DESTDIR)/etc/$(PROGN)/reboot
|
|
||||||
@test -s /usr/bin/systemd-run && \
|
|
||||||
cp systemd/$(PROGN).service $(DESTDIR)$(SYSTEMDDIR)/system && \
|
|
||||||
cp systemd/$(PROGN)-reboot.service $(DESTDIR)$(SYSTEMDDIR)/system && \
|
|
||||||
systemctl daemon-reload && \
|
systemctl daemon-reload && \
|
||||||
systemctl start $(PROGN) && \
|
systemctl start $(PROGN) && \
|
||||||
systemctl enable $(PROGN) && \
|
systemctl enable $(PROGN) && \
|
||||||
|
Loading…
Reference in New Issue
Block a user