summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-05-24 04:20:35 +0200
committerLennart Poettering <lennart@poettering.net>2011-06-21 19:29:44 +0200
commit5eda94dda25bccda928c4b33c790dbe748573a22 (patch)
treedd5402db68b03e448873b97c3c2e0cd9582272db /Makefile.am
parent90821c935e5f4258dc21fc515cf721beb0914a85 (diff)
logind: implement ACL management
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am24
1 files changed, 21 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 79ccbbe6e6..f455f21109 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -159,7 +159,8 @@ rootlibexec_PROGRAMS = \
systemd-detect-virt \
systemd-sysctl \
systemd-hostnamed \
- systemd-logind
+ systemd-logind \
+ systemd-uaccess
if ENABLE_BINFMT
rootlibexec_PROGRAMS += \
@@ -813,6 +814,7 @@ systemd_logind_SOURCES = \
src/logind-seat.c \
src/logind-session.c \
src/logind-user.c \
+ src/logind-acl.c \
src/dbus-common.c \
src/dbus-loop.c \
src/cgroup-util.c
@@ -820,13 +822,29 @@ systemd_logind_SOURCES = \
systemd_logind_CFLAGS = \
$(AM_CFLAGS) \
$(DBUS_CFLAGS) \
- $(UDEV_CFLAGS)
+ $(UDEV_CFLAGS) \
+ $(ACL_CFLAGS)
systemd_logind_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la \
$(DBUS_LIBS) \
- $(UDEV_LIBS)
+ $(UDEV_LIBS) \
+ $(ACL_LIBS)
+
+systemd_uaccess_SOURCES = \
+ src/uaccess.c \
+ src/logind-acl.c
+
+systemd_uaccess_CFLAGS = \
+ $(AM_CFLAGS) \
+ $(UDEV_CFLAGS) \
+ $(ACL_CFLAGS)
+
+systemd_uaccess_LDADD = \
+ libsystemd-basic.la \
+ $(UDEV_LIBS) \
+ $(ACL_LIBS)
systemd_shutdown_SOURCES = \
src/mount-setup.c \