X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=Makefile.am;h=a94d2a7f7d31dc1567f38966655ee1bb01f307c3;hp=872bcc255c69177c48d8ac42a833aa8ff0a11060;hb=177b3ffedbfc1aea839324edeb1f35a1a754ef5b;hpb=3eb4d9a214a09883e50ce557b36c7903406d7ef8 diff --git a/Makefile.am b/Makefile.am index 872bcc255..a94d2a7f7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -106,14 +106,13 @@ rootbin_PROGRAMS = \ systemd-notify \ systemd-ask-password \ systemd-tty-ask-password-agent \ - systemd-tmpfiles - -rootsbin_PROGRAMS = \ + systemd-tmpfiles \ systemd-machine-id-setup bin_PROGRAMS = \ systemd-cgls \ - systemd-stdio-bridge + systemd-stdio-bridge \ + systemd-nspawn if HAVE_GTK bin_PROGRAMS += \ @@ -144,11 +143,14 @@ rootlibexec_PROGRAMS = \ systemd-detect-virt \ systemd-sysctl +systemgenerator_PROGRAMS = \ + systemd-getty-generator + if HAVE_LIBCRYPTSETUP rootlibexec_PROGRAMS += \ systemd-cryptsetup -systemgenerator_PROGRAMS = \ +systemgenerator_PROGRAMS += \ systemd-cryptsetup-generator endif @@ -227,7 +229,6 @@ dist_systemunit_DATA = \ units/sigpwr.target \ units/sockets.target \ units/swap.target \ - units/dbus.target \ units/systemd-initctl.socket \ units/systemd-logger.socket \ units/systemd-shutdownd.socket \ @@ -261,6 +262,7 @@ dist_systemunit_DATA = \ nodist_systemunit_DATA = \ units/getty@.service \ units/serial-getty@.service \ + units/console-shell.service \ units/graphical.target \ units/remote-fs.target \ units/multi-user.target \ @@ -305,6 +307,7 @@ nodist_userunit_DATA = \ EXTRA_DIST = \ units/getty@.service.m4 \ units/serial-getty@.service.m4 \ + units/console-shell.service.m4 \ units/graphical.target.m4 \ units/multi-user.target.m4 \ units/remote-fs.target.m4 \ @@ -356,6 +359,11 @@ dist_systemunit_DATA += \ units/fedora/halt-local.service endif +if TARGET_FRUGALWARE +dist_systemunit_DATA += \ + units/frugalware/display-manager.service +endif + if HAVE_PLYMOUTH dist_systemunit_DATA += \ units/plymouth-start.service \ @@ -492,6 +500,7 @@ EXTRA_DIST += \ ${libsystemd_core_la_SOURCES:.c=.h} \ ${libsystemd_daemon_la_SOURCES:.c=.h} \ src/macro.h \ + src/def.h \ src/ioprio.h \ src/missing.h \ src/list.h \ @@ -515,6 +524,7 @@ MANPAGES = \ man/systemctl.1 \ man/systemadm.1 \ man/systemd-cgls.1 \ + man/systemd-nspawn.1 \ man/systemd-tmpfiles.8 \ man/systemd-notify.1 \ man/sd_notify.3 \ @@ -855,6 +865,16 @@ systemd_cryptsetup_generator_CFLAGS = \ systemd_cryptsetup_generator_LDADD = \ libsystemd-basic.la +systemd_getty_generator_SOURCES = \ + src/getty-generator.c \ + src/unit-name.c + +systemd_getty_generator_CFLAGS = \ + $(AM_CFLAGS) + +systemd_getty_generator_LDADD = \ + libsystemd-basic.la + systemd_user_sessions_SOURCES = \ src/user-sessions.c \ src/cgroup-util.c @@ -983,6 +1003,17 @@ systemd_cgls_CFLAGS = \ systemd_cgls_LDADD = \ libsystemd-basic.la +systemd_nspawn_SOURCES = \ + src/nspawn.c \ + src/cgroup-util.c + +systemd_nspawn_CFLAGS = \ + $(AM_CFLAGS) + +systemd_nspawn_LDADD = \ + libsystemd-basic.la \ + libsystemd-daemon.la + systemd_stdio_bridge_SOURCES = \ src/bridge.c