summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-05-23 23:55:06 +0200
committerLennart Poettering <lennart@poettering.net>2011-06-21 19:29:44 +0200
commit202630822f52e06dce8404633407329c38099278 (patch)
tree3cc32d83d3659b4b182af66bad5ee877be95d90a /Makefile.am
parentf41607a6e10202003efe307eab975e8aca37d3de (diff)
logind: first version that compiles fine
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am24
1 files changed, 23 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 7ca0ae858f..79ccbbe6e6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -158,7 +158,8 @@ rootlibexec_PROGRAMS = \
systemd-ac-power \
systemd-detect-virt \
systemd-sysctl \
- systemd-hostnamed
+ systemd-hostnamed \
+ systemd-logind
if ENABLE_BINFMT
rootlibexec_PROGRAMS += \
@@ -806,6 +807,27 @@ systemd_hostnamed_LDADD = \
libsystemd-daemon.la \
$(DBUS_LIBS)
+systemd_logind_SOURCES = \
+ src/logind.c \
+ src/logind-device.c \
+ src/logind-seat.c \
+ src/logind-session.c \
+ src/logind-user.c \
+ src/dbus-common.c \
+ src/dbus-loop.c \
+ src/cgroup-util.c
+
+systemd_logind_CFLAGS = \
+ $(AM_CFLAGS) \
+ $(DBUS_CFLAGS) \
+ $(UDEV_CFLAGS)
+
+systemd_logind_LDADD = \
+ libsystemd-basic.la \
+ libsystemd-daemon.la \
+ $(DBUS_LIBS) \
+ $(UDEV_LIBS)
+
systemd_shutdown_SOURCES = \
src/mount-setup.c \
src/umount.c \