chiark / gitweb /
Need to use #elif defined(DEBIAN) here...
[elogind.git] / Makefile.am
index 0ac6b1acea4d7dac552dd1a4fabeb8ab06bf204a..70a6c190f9bff588901b477100e35b48abfc4c44 100644 (file)
@@ -92,7 +92,9 @@ rootlibexec_PROGRAMS = \
        systemd-remount-api-vfs \
        systemd-kmsg-syslogd \
        systemd-vconsole-setup \
-       systemd-reply-password
+       systemd-reply-password \
+       systemd-readahead-collect \
+       systemd-readahead-replay
 
 noinst_PROGRAMS = \
        test-engine \
@@ -419,6 +421,7 @@ MANPAGES = \
        man/systemd-cgls.1 \
        man/systemd-notify.1 \
        man/sd_notify.3 \
+       man/sd_readahead.3 \
        man/sd_booted.3 \
        man/sd_listen_fds.3 \
        man/sd_is_fifo.3 \
@@ -699,6 +702,30 @@ systemd_reply_password_SOURCES = \
 systemd_reply_password_LDADD = \
        libsystemd-basic.la
 
+systemd_readahead_collect_SOURCES = \
+       src/readahead-collect.c \
+       src/sd-daemon.c \
+       src/readahead-common.c
+
+systemd_readahead_collect_CFLAGS = \
+       $(UDEV_CFLAGS)
+
+systemd_readahead_collect_LDADD = \
+       libsystemd-basic.la \
+       $(UDEV_LIBS)
+
+systemd_readahead_replay_SOURCES = \
+       src/readahead-replay.c \
+       src/sd-daemon.c \
+       src/readahead-common.c
+
+systemd_readahead_replay_CFLAGS = \
+       $(UDEV_CFLAGS)
+
+systemd_readahead_replay_LDADD = \
+       libsystemd-basic.la \
+       $(UDEV_LIBS)
+
 systemd_cgls_SOURCES = \
        src/cgls.c \
        src/cgroup-show.c \