From a211b960a7590910b46c1d59acaeda5e87b5b522 Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Sun, 16 Apr 2017 01:19:16 +0200 Subject: all: switch from session to system bus --- dbus/config/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 dbus/config/Makefile (limited to 'dbus/config/Makefile') diff --git a/dbus/config/Makefile b/dbus/config/Makefile new file mode 100644 index 0000000..99083ab --- /dev/null +++ b/dbus/config/Makefile @@ -0,0 +1,15 @@ +CONFIGFILES=$(wildcard *.conf) +INSTALLPATH=/etc/dbus-1/system.d + +all: + +install: ${CONFIGFILES} + @echo Installing DBus config files into ${INSTALLPATH}... + @mkdir -p ${INSTALLPATH} + @$(foreach file,${CONFIGFILES},install -m644 ${file} ${INSTALLPATH}/${file};) + +uninstall: + @echo Remove DBus config files from ${INSTALLPATH}... + @$(foreach file,${CONFIGFILES},rm -f ${INSTALLPATH}/${file};) + +.PHONY: all install uninstall -- cgit v1.2.3