3152c609a9
qubes-rpc has its own Makefile that's responsible for building some executables. The root Makefile was installing qubes-rpc files. To make qubes-rpc a bit more indepdent from core-agent root Makefile and to ease potential maintainer work on packaging qubes-rpc separately, the installation has been moved to qubes-rpc Makefile. Moreover that should make the Makefiles easier to read and maintain.
15 lines
398 B
Makefile
15 lines
398 B
Makefile
KDESERVICEDIR ?= /usr/share/kde4/services
|
|
KDE5SERVICEDIR ?= /usr/share/kservices5/ServiceMenus
|
|
|
|
.PHONY: install install-kde4 install-kde5
|
|
|
|
install-kde4:
|
|
install -d $(DESTDIR)$(KDESERVICEDIR)
|
|
install -t $(DESTDIR)$(KDESERVICEDIR) -m 0644 *.desktop
|
|
|
|
install-kde5:
|
|
install -d $(DESTDIR)$(KDE5SERVICEDIR)
|
|
install -t $(DESTDIR)$(KDE5SERVICEDIR) -m 0644 *.desktop
|
|
|
|
install: install-kde4 install-kde5
|