20 lines
558 B
Makefile
20 lines
558 B
Makefile
# Telepathy manager file
|
|
managerdir = $(datadir)/telepathy/managers
|
|
manager_DATA = matrix.manager
|
|
|
|
# Dbus service file
|
|
BUILT_FILES = $(service_in_files:.service.in=.service)
|
|
|
|
servicedir = $(DBUS_SERVICES_DIR)
|
|
service_in_files = org.freedesktop.Telepathy.ConnectionManager.matrix.service.in
|
|
service_DATA = $(BUILT_FILES)
|
|
CLEANFILES = $(BUILT_FILES)
|
|
|
|
# Rule to make the service file with libexecdir expanded
|
|
$(service_DATA): $(service_in_files) Makefile
|
|
@sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
|
|
|
|
EXTRA_DIST= \
|
|
${service_in_files} \
|
|
${manager_DATA}
|