blob: 6736b3e93f3aed9b2105ead90a073c6a46b911f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
if INTERNAL_NET_DBUS
net_dbus_SUBDIRS = Net-DBus
endif
SUBDIRS = dispatcher services files Init Network Shares Time Users Utils po $(net_dbus_SUBDIRS)
modulesdir = $(scriptsdir)
modules_DATA = \
Platform.pm \
StbObject.pm \
GroupConfig.pm \
GroupsConfig.pm \
HostsConfig.pm \
IfacesConfig.pm \
NFSConfig.pm \
NTPConfig.pm \
ServicesConfig.pm \
SMBConfig.pm \
TimeConfig.pm \
UserConfig.pm \
UsersConfig.pm \
SelfConfig.pm
scripts = \
SystemToolsBackends.pl
scripts_SCRIPTS = $(scripts)
EXTRA_DIST = \
system-tools-backends-2.0.pc.in \
org.freedesktop.SystemToolsBackends.conf \
$(policy_in_files) \
org.freedesktop.SystemToolsBackends.service.in \
test-backends.in \
diagnostics.pl \
$(modules_DATA) \
README \
AUTHORS \
NEWS
CLEANFILES = \
test-backends \
SystemToolsBackends.pl \
system-tools-backends-2.0.pc \
org.freedesktop.SystemToolsBackends.service \
$(policy_DATA)
#DISTCLEANFILES =
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = system-tools-backends-2.0.pc
# Dbus service file
servicedir = $(DBUS_SERVICES_DIR)
service_DATA = org.freedesktop.SystemToolsBackends.service
# DBus system.d file
systemddir = $(DBUS_SYSTEMD_DIR)
systemd_DATA = org.freedesktop.SystemToolsBackends.conf
policy_in_files = org.freedesktop.SystemToolsBackends.policy.in
if HAVE_POLKIT
policydir = $(POLKIT_POLICY_DIR)
policy_DATA = $(policy_in_files:.policy.in=.policy)
@INTLTOOL_POLICY_RULE@
endif
|