2010-02-03 16:21:48 +03:00
# This file is part of systemd.
#
2011-12-31 09:02:42 +04:00
# Copyright 2011 Lennart Poettering
# Copyright 2011 Kay Sievers
2010-02-03 16:21:48 +03:00
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# systemd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with systemd; If not, see <http://www.gnu.org/licenses/>.
ACLOCAL_AMFLAGS = -I m4
2011-07-11 20:01:28 +04:00
SUBDIRS = po
2012-01-03 23:51:38 +04:00
LIBSYSTEMD_LOGIN_CURRENT = 1
LIBSYSTEMD_LOGIN_REVISION = 0
LIBSYSTEMD_LOGIN_AGE = 1
2011-07-15 00:50:01 +04:00
2011-07-15 01:06:31 +04:00
LIBSYSTEMD_DAEMON_CURRENT = 0
LIBSYSTEMD_DAEMON_REVISION = 0
LIBSYSTEMD_DAEMON_AGE = 0
2011-12-30 20:50:37 +04:00
LIBSYSTEMD_ID128_CURRENT = 0
LIBSYSTEMD_ID128_REVISION = 0
LIBSYSTEMD_ID128_AGE = 0
LIBSYSTEMD_JOURNAL_CURRENT = 0
LIBSYSTEMD_JOURNAL_REVISION = 0
LIBSYSTEMD_JOURNAL_AGE = 0
2010-06-02 02:35:58 +04:00
# Dirs of external packages
2010-06-07 06:14:39 +04:00
dbuspolicydir = @dbuspolicydir@
dbussessionservicedir = @dbussessionservicedir@
dbussystemservicedir = @dbussystemservicedir@
dbusinterfacedir = @dbusinterfacedir@
2010-05-16 01:06:41 +04:00
udevrulesdir = @udevrulesdir@
2010-06-22 01:27:18 +04:00
pamlibdir = @pamlibdir@
pkgconfigdatadir = $( datadir) /pkgconfig
2011-07-26 23:44:37 +04:00
pkgconfiglibdir = $( libdir) /pkgconfig
2010-09-17 03:26:29 +04:00
polkitpolicydir = $( datadir) /polkit-1/actions
2010-11-11 23:28:33 +03:00
bashcompletiondir = $( sysconfdir) /bash_completion.d
2010-02-13 03:07:02 +03:00
2010-06-02 02:35:58 +04:00
# Our own, non-special dirs
2010-05-16 01:06:41 +04:00
pkgsysconfdir = $( sysconfdir) /systemd
2011-04-05 04:49:49 +04:00
userunitdir = $( prefix) /lib/systemd/user
2011-04-25 23:38:21 +04:00
tmpfilesdir = $( prefix) /lib/tmpfiles.d
2012-01-14 03:37:35 +04:00
sysctldir = $( prefix) /lib/sysctl.d
2010-11-16 00:12:41 +03:00
usergeneratordir = $( pkglibexecdir) /user-generators
2011-07-15 00:50:01 +04:00
pkgincludedir = $( includedir) /systemd
2010-06-02 02:35:58 +04:00
# And these are the special ones for /
2012-01-05 03:40:39 +04:00
rootprefix = @rootprefix@
rootbindir = $( rootprefix) /bin
rootlibexecdir = $( rootprefix) /lib/systemd
2011-04-05 04:52:21 +04:00
systemgeneratordir = $( rootlibexecdir) /system-generators
systemshutdowndir = $( rootlibexecdir) /system-shutdown
2012-01-05 03:40:39 +04:00
systemunitdir = $( rootprefix) /lib/systemd/system
2010-04-13 07:18:12 +04:00
2011-12-31 09:02:42 +04:00
CLEANFILES =
EXTRA_DIST =
INSTALL_EXEC_HOOKS =
UNINSTALL_EXEC_HOOKS =
INSTALL_DATA_HOOKS =
2011-12-31 12:17:48 +04:00
pkginclude_HEADERS =
2011-12-31 20:06:09 +04:00
lib_LTLIBRARIES =
pkgconfiglib_DATA =
2011-12-31 09:02:42 +04:00
polkitpolicy_in_files =
2010-02-03 16:21:48 +03:00
AM_CPPFLAGS = \
2010-09-21 23:25:44 +04:00
-include $( top_builddir) /config.h \
2010-07-07 03:10:27 +04:00
-DSYSTEM_CONFIG_FILE= \" $( pkgsysconfdir) /system.conf\" \
2010-02-13 03:07:02 +03:00
-DSYSTEM_CONFIG_UNIT_PATH= \" $( pkgsysconfdir) /system\" \
2010-04-13 07:18:12 +04:00
-DSYSTEM_DATA_UNIT_PATH= \" $( systemunitdir) \" \
2010-04-07 17:35:01 +04:00
-DSYSTEM_SYSVINIT_PATH= \" $( SYSTEM_SYSVINIT_PATH) \" \
2010-04-07 17:39:28 +04:00
-DSYSTEM_SYSVRCND_PATH= \" $( SYSTEM_SYSVRCND_PATH) \" \
2010-11-16 00:12:41 +03:00
-DUSER_CONFIG_FILE= \" $( pkgsysconfdir) /user.conf\" \
-DUSER_CONFIG_UNIT_PATH= \" $( pkgsysconfdir) /user\" \
-DUSER_DATA_UNIT_PATH= \" $( userunitdir) \" \
2010-11-11 05:04:45 +03:00
-DSYSTEMD_CGROUP_AGENT_PATH= \" $( rootlibexecdir) /systemd-cgroups-agent\" \
2010-06-02 02:40:10 +04:00
-DSYSTEMD_BINARY_PATH= \" $( rootbindir) /systemd\" \
2010-10-07 15:24:41 +04:00
-DSYSTEMD_SHUTDOWN_BINARY_PATH= \" $( rootlibexecdir) /systemd-shutdown\" \
2010-06-18 22:01:01 +04:00
-DSYSTEMCTL_BINARY_PATH= \" $( rootbindir) /systemctl\" \
2010-10-26 07:29:39 +04:00
-DSYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH= \" $( rootbindir) /systemd-tty-ask-password-agent\" \
2011-04-04 00:09:25 +04:00
-DSYSTEMD_STDIO_BRIDGE_BINARY_PATH= \" $( bindir) /systemd-stdio-bridge\" \
2012-01-05 03:40:39 +04:00
-DROOTPREFIX= \" $( rootprefix) \" \
2011-04-01 17:25:46 +04:00
-DRUNTIME_DIR= \" /run\" \
2010-08-14 21:17:37 +04:00
-DRANDOM_SEED= \" $( localstatedir) /lib/random-seed\" \
2010-11-08 07:02:45 +03:00
-DSYSTEMD_CRYPTSETUP_PATH= \" $( rootlibexecdir) /systemd-cryptsetup\" \
2010-11-11 23:28:33 +03:00
-DSYSTEM_GENERATOR_PATH= \" $( systemgeneratordir) \" \
2010-11-16 00:12:41 +03:00
-DUSER_GENERATOR_PATH= \" $( usergeneratordir) \" \
2011-02-15 02:30:11 +03:00
-DSYSTEM_SHUTDOWN_PATH= \" $( systemshutdowndir) \" \
2011-12-31 06:59:54 +04:00
-DSYSTEMD_KBD_MODEL_MAP= \" $( pkgdatadir) /kbd-model-map\" \
2011-12-31 22:35:52 +04:00
-I $( top_srcdir) /src \
-I $( top_srcdir) /src/readahead \
2012-01-04 00:08:28 +04:00
-I $( top_srcdir) /src/login \
2012-01-05 19:01:58 +04:00
-I $( top_srcdir) /src/journal \
-I $( top_srcdir) /src/systemd
2010-02-03 16:21:48 +03:00
2010-09-21 02:07:09 +04:00
i f T A R G E T _ G E N T O O
AM_CPPFLAGS += \
-DKBD_LOADKEYS= \" /usr/bin/loadkeys\" \
-DKBD_SETFONT= \" /usr/bin/setfont\" \
-DDEFAULT_FONT= \" LatArCyrHeb-16\"
e l s e
2010-10-07 21:00:23 +04:00
i f T A R G E T _ A R C H
AM_CPPFLAGS += \
-DKBD_LOADKEYS= \" /usr/bin/loadkeys\" \
-DKBD_SETFONT= \" /usr/bin/setfont\" \
-DDEFAULT_FONT= \" LatArCyrHeb-16\"
e l s e
2010-11-29 16:42:10 +03:00
i f T A R G E T _ F R U G A L W A R E
AM_CPPFLAGS += \
-DKBD_LOADKEYS= \" /usr/bin/loadkeys\" \
-DKBD_SETFONT= \" /usr/bin/setfont\" \
-DDEFAULT_FONT= \" LatArCyrHeb-16\"
e l s e
2011-03-08 21:47:29 +03:00
i f T A R G E T _ M A N D R I V A
AM_CPPFLAGS += \
-DKBD_LOADKEYS= \" /bin/loadkeys\" \
-DKBD_SETFONT= \" /bin/setfont\" \
-DDEFAULT_FONT= \" LatArCyrHeb-16\"
e l s e
2011-04-19 23:37:51 +04:00
i f T A R G E T _ M E E G O
AM_CPPFLAGS += \
-DKBD_LOADKEYS= \" /bin/loadkeys\" \
-DKBD_SETFONT= \" /bin/setfont\" \
-DDEFAULT_FONT= \" LatArCyrHeb-16\"
e l s e
2011-05-06 11:19:08 +04:00
i f T A R G E T _ A N G S T R O M
AM_CPPFLAGS += \
-DKBD_LOADKEYS= \" /usr/bin/loadkeys\" \
-DKBD_SETFONT= \" /usr/bin/setfont\" \
-DDEFAULT_FONT= \" LatArCyrHeb-16\"
e l s e
2011-12-31 21:06:44 +04:00
i f T A R G E T _ M A G E I A
2010-09-21 02:07:09 +04:00
AM_CPPFLAGS += \
-DKBD_LOADKEYS= \" /bin/loadkeys\" \
-DKBD_SETFONT= \" /bin/setfont\" \
2011-12-31 21:06:44 +04:00
-DDEFAULT_FONT= \" LatArCyrHeb-16\"
2011-10-28 21:16:33 +04:00
e l s e
AM_CPPFLAGS += \
-DKBD_LOADKEYS= \" /bin/loadkeys\" \
-DKBD_SETFONT= \" /bin/setfont\" \
2011-12-31 21:06:44 +04:00
-DDEFAULT_FONT= \" latarcyrheb-sun16\"
2011-10-28 21:16:33 +04:00
e n d i f
2010-09-21 02:07:09 +04:00
e n d i f
2010-10-07 21:00:23 +04:00
e n d i f
2010-11-29 16:42:10 +03:00
e n d i f
2011-03-08 21:47:29 +03:00
e n d i f
2011-04-19 23:37:51 +04:00
e n d i f
2011-05-06 11:19:08 +04:00
e n d i f
2010-09-21 02:07:09 +04:00
2010-06-02 02:35:58 +04:00
rootbin_PROGRAMS = \
2010-06-02 02:42:36 +04:00
systemd \
2010-06-18 00:50:06 +04:00
systemctl \
2010-09-17 03:26:29 +04:00
systemd-notify \
2010-10-25 22:35:17 +04:00
systemd-ask-password \
2011-02-13 16:04:57 +03:00
systemd-tty-ask-password-agent \
2011-03-14 20:17:28 +03:00
systemd-tmpfiles \
2011-12-31 11:36:52 +04:00
systemd-machine-id-setup
2010-05-11 00:07:25 +04:00
2010-06-02 02:35:58 +04:00
bin_PROGRAMS = \
2011-03-12 03:03:13 +03:00
systemd-cgls \
2011-03-14 20:17:28 +03:00
systemd-stdio-bridge \
2011-04-04 00:09:25 +04:00
systemd-nspawn
2011-03-14 04:40:36 +03:00
2011-03-31 05:25:30 +04:00
dist_bin_SCRIPTS = \
2011-04-04 00:09:25 +04:00
src/systemd-analyze
2011-03-31 05:25:30 +04:00
2010-06-16 03:58:50 +04:00
i f H A V E _ G T K
bin_PROGRAMS += \
2010-09-17 03:26:29 +04:00
systemadm \
2010-10-22 18:38:14 +04:00
systemd-gnome-ask-password-agent
2010-05-11 00:07:25 +04:00
e n d i f
2010-03-31 18:29:55 +04:00
2010-06-02 02:35:58 +04:00
rootlibexec_PROGRAMS = \
2010-04-05 00:53:42 +04:00
systemd-cgroups-agent \
2010-08-11 03:43:23 +04:00
systemd-initctl \
2010-08-14 21:17:37 +04:00
systemd-update-utmp \
2010-08-17 05:29:46 +04:00
systemd-shutdownd \
2010-10-07 15:24:41 +04:00
systemd-shutdown \
2010-08-20 05:26:15 +04:00
systemd-modules-load \
2010-08-21 05:57:47 +04:00
systemd-remount-api-vfs \
2010-09-23 17:01:41 +04:00
systemd-reply-password \
2010-10-19 23:19:12 +04:00
systemd-fsck \
2010-11-08 08:43:33 +03:00
systemd-timestamp \
2010-11-18 23:52:26 +03:00
systemd-ac-power \
2011-02-21 23:48:59 +03:00
systemd-detect-virt \
2011-12-31 11:36:52 +04:00
systemd-sysctl
2010-02-03 16:21:48 +03:00
2011-03-15 02:44:13 +03:00
systemgenerator_PROGRAMS = \
2011-04-04 00:09:25 +04:00
systemd-getty-generator
2011-03-15 02:44:13 +03:00
2010-02-03 16:21:48 +03:00
noinst_PROGRAMS = \
test-engine \
2010-04-22 00:15:06 +04:00
test-job-type \
2010-05-09 20:02:38 +04:00
test-ns \
2010-06-16 07:10:31 +04:00
test-loopback \
2010-08-19 05:02:22 +04:00
test-hostname \
2010-06-22 01:27:18 +04:00
test-daemon \
2010-07-21 04:57:35 +04:00
test-cgroup \
2010-11-14 21:58:33 +03:00
test-env-replace \
2011-07-15 00:50:01 +04:00
test-strv \
2011-12-31 11:53:06 +04:00
test-install
2010-06-22 01:27:18 +04:00
2010-07-07 03:10:27 +04:00
dist_pkgsysconf_DATA = \
2011-06-29 03:47:55 +04:00
src/system.conf \
2011-12-31 09:02:42 +04:00
src/user.conf
2010-07-07 03:10:27 +04:00
2010-05-16 01:06:41 +04:00
dist_dbuspolicy_DATA = \
2011-12-31 09:02:42 +04:00
src/org.freedesktop.systemd1.conf
2010-04-10 20:51:07 +04:00
2010-06-07 06:14:39 +04:00
dist_dbussystemservice_DATA = \
2011-12-31 09:02:42 +04:00
src/org.freedesktop.systemd1.service
2010-06-07 06:14:39 +04:00
2010-05-16 01:06:41 +04:00
dist_udevrules_DATA = \
2011-12-31 06:59:54 +04:00
src/71-seat.rules
2010-04-10 21:18:21 +04:00
2011-06-29 06:14:43 +04:00
nodist_udevrules_DATA = \
2011-12-31 06:59:54 +04:00
src/73-seat-late.rules \
src/99-systemd.rules
2011-06-29 06:14:43 +04:00
2010-06-07 06:14:39 +04:00
dbusinterface_DATA = \
2010-05-23 05:45:33 +04:00
org.freedesktop.systemd1.Manager.xml \
org.freedesktop.systemd1.Job.xml \
org.freedesktop.systemd1.Unit.xml \
org.freedesktop.systemd1.Service.xml \
org.freedesktop.systemd1.Socket.xml \
2010-05-24 03:45:54 +04:00
org.freedesktop.systemd1.Timer.xml \
2010-05-23 05:45:33 +04:00
org.freedesktop.systemd1.Target.xml \
org.freedesktop.systemd1.Device.xml \
org.freedesktop.systemd1.Mount.xml \
org.freedesktop.systemd1.Automount.xml \
org.freedesktop.systemd1.Snapshot.xml \
2010-05-24 07:25:33 +04:00
org.freedesktop.systemd1.Swap.xml \
2011-08-25 02:45:26 +04:00
org.freedesktop.systemd1.Path.xml
2010-05-23 05:45:33 +04:00
add bash completion for systemctl --system
I've been playing recently with systemd on Arch, and had much fun. But
soon, alas, my fingers started to ache from repeatedly writing
systemctl restart some-long-service.service. So, I wrote a completion
script. I figured other people may want to use it, so I prepared a
patch against systemd-git (attached).
There are some notes/disclaimers, however:
- It requires bash>=4.0, sed, grep and awk. A bash-completion package
is not strictly needed; sourcing the file is enough.
- It wouldn't work properly with --session, as I had no way to test it.
- It uses the output of systemctl list-units directly when that's
enough, but also runs systemctl show when completing on some verbs
(for example, to check for AllowIsolate=yes). This /may/ be somewhat
slow once there are many units, since it calls a dbus method on each
one. Is there a faster way to have that information?
- The code is perhaps a bit long and messy; honestly, I blame the tool ;)
One way to improve on the situation is to integrate some completion
code in systemctl itself, the way e.g. gdbus, gsettings and django do
it. This will allow for finer grained and faster completions, and it
won't be necessary to keep the verb/option tables in sync with some
other file. But it does mean adding all of this code in C. If this is
acceptable, I'll try to have a go at it.
Finally, a couple of completion tips I run into:
- If you alias systemctl to, say, sctl, you get completions on that
too by running to following command:
complete -F _systemctl sctl
- Add the following line to your .inputrc, to have the completion show
after only a single tab press:
set show-all-if-ambiguous on
It makes the shell quite more pleasant.
Hope it's good enough!
Ran
2010-11-09 02:03:27 +03:00
dist_bashcompletion_DATA = \
2011-11-02 12:48:51 +04:00
src/systemd-bash-completion.sh
add bash completion for systemctl --system
I've been playing recently with systemd on Arch, and had much fun. But
soon, alas, my fingers started to ache from repeatedly writing
systemctl restart some-long-service.service. So, I wrote a completion
script. I figured other people may want to use it, so I prepared a
patch against systemd-git (attached).
There are some notes/disclaimers, however:
- It requires bash>=4.0, sed, grep and awk. A bash-completion package
is not strictly needed; sourcing the file is enough.
- It wouldn't work properly with --session, as I had no way to test it.
- It uses the output of systemctl list-units directly when that's
enough, but also runs systemctl show when completing on some verbs
(for example, to check for AllowIsolate=yes). This /may/ be somewhat
slow once there are many units, since it calls a dbus method on each
one. Is there a faster way to have that information?
- The code is perhaps a bit long and messy; honestly, I blame the tool ;)
One way to improve on the situation is to integrate some completion
code in systemctl itself, the way e.g. gdbus, gsettings and django do
it. This will allow for finer grained and faster completions, and it
won't be necessary to keep the verb/option tables in sync with some
other file. But it does mean adding all of this code in C. If this is
acceptable, I'll try to have a go at it.
Finally, a couple of completion tips I run into:
- If you alias systemctl to, say, sctl, you get completions on that
too by running to following command:
complete -F _systemctl sctl
- Add the following line to your .inputrc, to have the completion show
after only a single tab press:
set show-all-if-ambiguous on
It makes the shell quite more pleasant.
Hope it's good enough!
Ran
2010-11-09 02:03:27 +03:00
2010-09-29 00:32:53 +04:00
dist_tmpfiles_DATA = \
tmpfiles.d/systemd.conf \
2011-08-07 02:48:27 +04:00
tmpfiles.d/tmp.conf \
2010-09-29 00:32:53 +04:00
tmpfiles.d/x11.conf
2011-04-02 03:08:31 +04:00
i f H A V E _ S Y S V _ C O M P A T
dist_tmpfiles_DATA += \
2011-04-04 00:09:25 +04:00
tmpfiles.d/legacy.conf
2011-04-02 03:08:31 +04:00
e n d i f
2010-05-16 01:06:41 +04:00
dist_systemunit_DATA = \
2011-03-18 06:59:05 +03:00
units/graphical.target \
units/multi-user.target \
2010-04-13 07:18:12 +04:00
units/emergency.service \
2010-07-13 01:49:20 +04:00
units/emergency.target \
2010-10-29 06:09:36 +04:00
units/sysinit.target \
2010-06-04 20:43:40 +04:00
units/basic.target \
2010-05-17 03:34:36 +04:00
units/getty.target \
units/halt.target \
2010-10-14 02:57:52 +04:00
units/kexec.target \
2010-05-16 22:49:41 +04:00
units/local-fs.target \
2011-12-31 06:59:54 +04:00
units/local-fs-pre.target \
2011-06-15 00:01:44 +04:00
units/remote-fs.target \
2011-12-31 06:59:54 +04:00
units/remote-fs-pre.target \
2010-05-16 22:49:41 +04:00
units/network.target \
units/nss-lookup.target \
2010-05-25 00:30:54 +04:00
units/mail-transfer-agent.target \
2010-09-14 02:22:47 +04:00
units/http-daemon.target \
2010-05-17 03:34:36 +04:00
units/poweroff.target \
units/reboot.target \
units/rescue.target \
2010-05-17 00:50:02 +04:00
units/rpcbind.target \
2011-04-06 21:18:11 +04:00
units/time-sync.target \
2010-05-16 22:49:41 +04:00
units/shutdown.target \
2010-10-14 05:07:36 +04:00
units/final.target \
2010-07-10 04:41:06 +04:00
units/umount.target \
2010-05-16 22:49:41 +04:00
units/sigpwr.target \
units/sockets.target \
units/swap.target \
2010-04-13 07:18:12 +04:00
units/systemd-initctl.socket \
2010-08-16 17:37:52 +04:00
units/systemd-shutdownd.socket \
2010-10-20 19:48:01 +04:00
units/syslog.socket \
2010-05-18 05:10:17 +04:00
units/dev-hugepages.mount \
units/dev-mqueue.mount \
2011-09-13 19:01:56 +04:00
units/sys-kernel-config.mount \
2010-05-18 05:10:17 +04:00
units/sys-kernel-debug.mount \
2010-05-23 03:56:54 +04:00
units/sys-kernel-security.mount \
2011-09-22 05:00:04 +04:00
units/sys-fs-fuse-connections.mount \
2010-07-13 04:16:44 +04:00
units/var-run.mount \
2011-03-07 19:38:15 +03:00
units/media.mount \
2010-08-20 05:27:23 +04:00
units/remount-rootfs.service \
2010-07-13 04:16:44 +04:00
units/printer.target \
2011-02-09 23:07:28 +03:00
units/sound.target \
2010-07-16 23:38:56 +04:00
units/bluetooth.target \
2010-09-21 17:07:43 +04:00
units/smartcard.target \
2010-10-20 01:45:18 +04:00
units/systemd-tmpfiles-clean.timer \
2010-10-25 23:02:01 +04:00
units/quotaon.service \
2010-10-26 06:40:32 +04:00
units/systemd-ask-password-wall.path \
2011-03-18 07:01:30 +03:00
units/systemd-ask-password-console.path \
2011-12-31 11:36:52 +04:00
units/syslog.target
2010-04-13 07:18:12 +04:00
2011-04-04 00:09:25 +04:00
i f H A V E _ S Y S V _ C O M P A T
dist_systemunit_DATA += \
units/var-lock.mount
e n d i f
2010-06-24 06:22:22 +04:00
nodist_systemunit_DATA = \
2010-05-17 03:34:36 +04:00
units/getty@.service \
2010-08-25 05:09:57 +04:00
units/serial-getty@.service \
2011-04-04 00:09:25 +04:00
units/console-shell.service \
2010-05-16 21:09:22 +04:00
units/systemd-initctl.service \
2010-08-16 17:37:52 +04:00
units/systemd-shutdownd.service \
2010-08-19 04:03:03 +04:00
units/systemd-modules-load.service \
2010-08-20 05:26:15 +04:00
units/systemd-remount-api-vfs.service \
2010-08-11 06:38:55 +04:00
units/systemd-update-utmp-runlevel.service \
units/systemd-update-utmp-shutdown.service \
2010-10-19 00:38:41 +04:00
units/systemd-tmpfiles-setup.service \
units/systemd-tmpfiles-clean.service \
2010-10-25 23:02:01 +04:00
units/systemd-ask-password-wall.service \
2010-11-18 07:22:25 +03:00
units/systemd-ask-password-console.service \
2010-11-18 23:52:26 +03:00
units/systemd-sysctl.service \
2010-10-14 04:58:37 +04:00
units/halt.service \
units/poweroff.service \
units/reboot.service \
2010-10-20 01:45:18 +04:00
units/kexec.service \
units/fsck@.service \
2010-10-20 02:13:23 +04:00
units/fsck-root.service \
2011-06-30 04:18:01 +04:00
units/rescue.service \
2011-12-31 06:59:54 +04:00
units/user@.service
2010-05-16 01:06:41 +04:00
2010-11-16 00:12:41 +03:00
dist_userunit_DATA = \
units/user/default.target \
units/user/exit.target
2010-05-20 04:30:49 +04:00
2010-11-16 00:12:41 +03:00
nodist_userunit_DATA = \
units/user/exit.service
2010-05-17 04:17:22 +04:00
2011-12-31 09:02:42 +04:00
EXTRA_DIST += \
2010-05-17 03:34:36 +04:00
units/getty@.service.m4 \
2010-08-25 05:09:57 +04:00
units/serial-getty@.service.m4 \
2011-04-04 00:09:25 +04:00
units/console-shell.service.m4 \
2010-10-29 06:09:36 +04:00
units/rescue.service.m4 \
2010-04-13 07:18:12 +04:00
units/systemd-initctl.service.in \
2010-08-16 17:37:52 +04:00
units/systemd-shutdownd.service.in \
2010-08-19 04:03:03 +04:00
units/systemd-modules-load.service.in \
2010-08-20 05:26:15 +04:00
units/systemd-remount-api-vfs.service.in \
2010-08-11 06:38:55 +04:00
units/systemd-update-utmp-runlevel.service.in \
units/systemd-update-utmp-shutdown.service.in \
2010-10-19 00:38:41 +04:00
units/systemd-tmpfiles-setup.service.in \
units/systemd-tmpfiles-clean.service.in \
2010-10-25 23:02:01 +04:00
units/systemd-ask-password-wall.service.in \
2010-11-18 07:22:25 +03:00
units/systemd-ask-password-console.service.in \
2010-11-18 23:52:26 +03:00
units/systemd-sysctl.service.in \
2010-10-14 04:58:37 +04:00
units/halt.service.in \
units/poweroff.service.in \
units/reboot.service.in \
2010-10-14 02:57:52 +04:00
units/kexec.service.in \
2010-11-16 00:12:41 +03:00
units/user/exit.service.in \
2010-10-20 01:45:18 +04:00
units/fsck@.service.in \
units/fsck-root.service.in \
2011-07-15 03:47:47 +04:00
units/user@.service.in \
2012-01-07 04:36:36 +04:00
src/systemd.pc.in \
2011-03-12 03:15:30 +03:00
introspect.awk \
2011-07-25 22:24:58 +04:00
src/73-seat-late.rules.in \
2011-12-31 06:59:54 +04:00
src/99-systemd.rules.in \
man/custom-html.xsl
2010-04-10 20:51:07 +04:00
2010-05-17 03:34:36 +04:00
i f T A R G E T _ F E D O R A
dist_systemunit_DATA += \
units/fedora/prefdm.service \
units/fedora/rc-local.service \
2011-02-08 20:47:32 +03:00
units/fedora/halt-local.service
2011-12-02 13:18:46 +04:00
systemgenerator_PROGRAMS += \
systemd-rc-local-generator
2011-02-08 20:47:32 +03:00
e n d i f
2011-03-08 21:47:29 +03:00
i f T A R G E T _ M A N D R I V A
dist_systemunit_DATA += \
units/mandriva/prefdm.service \
units/fedora/rc-local.service \
units/fedora/halt-local.service
2011-12-02 13:18:46 +04:00
systemgenerator_PROGRAMS += \
systemd-rc-local-generator
2011-03-08 21:47:29 +03:00
e n d i f
2011-03-09 02:49:47 +03:00
i f T A R G E T _ F R U G A L W A R E
dist_systemunit_DATA += \
units/frugalware/display-manager.service
e n d i f
2011-07-07 16:56:30 +04:00
i f T A R G E T _ S U S E
dist_systemunit_DATA += \
units/suse/rc-local.service \
units/suse/halt-local.service
2011-12-02 13:18:46 +04:00
systemgenerator_PROGRAMS += \
systemd-rc-local-generator
2011-07-07 16:56:30 +04:00
e n d i f
2011-10-28 21:16:33 +04:00
i f T A R G E T _ M A G E I A
dist_systemunit_DATA += \
units/mageia/prefdm.service \
units/fedora/rc-local.service \
units/fedora/halt-local.service
2011-12-02 13:18:46 +04:00
systemgenerator_PROGRAMS += \
systemd-rc-local-generator
2011-10-28 21:16:33 +04:00
e n d i f
2011-02-08 20:47:32 +03:00
i f H A V E _ P L Y M O U T H
dist_systemunit_DATA += \
units/plymouth-start.service \
units/plymouth-read-write.service \
units/plymouth-quit.service \
2011-02-24 04:32:50 +03:00
units/plymouth-quit-wait.service \
2011-02-08 20:47:32 +03:00
units/plymouth-reboot.service \
units/plymouth-kexec.service \
units/plymouth-poweroff.service \
2011-02-24 04:32:50 +03:00
units/plymouth-halt.service \
units/systemd-ask-password-plymouth.path
nodist_systemunit_DATA += \
units/systemd-ask-password-plymouth.service
EXTRA_DIST += \
units/systemd-ask-password-plymouth.service.in
2010-05-17 03:34:36 +04:00
e n d i f
2010-06-18 01:33:21 +04:00
dist_doc_DATA = \
README \
2010-06-22 07:39:35 +04:00
LICENSE \
2011-12-31 19:55:36 +04:00
DISTRO_PORTING
2010-06-18 01:33:21 +04:00
2010-06-22 01:27:18 +04:00
pkgconfigdata_DATA = \
2012-01-07 04:36:36 +04:00
src/systemd.pc
2011-07-26 23:44:37 +04:00
2011-07-12 03:11:27 +04:00
# First passed through sed, followed by intltool
polkitpolicy_in_in_files = \
src/org.freedesktop.systemd1.policy.in.in
nodist_polkitpolicy_DATA = \
2011-12-31 06:59:54 +04:00
$( polkitpolicy_in_files:.policy.in= .policy) \
$( polkitpolicy_in_in_files:.policy.in.in= .policy)
2011-07-12 03:11:27 +04:00
EXTRA_DIST += \
2011-12-31 06:59:54 +04:00
$( polkitpolicy_in_files) \
$( polkitpolicy_in_in_files)
2011-07-12 03:11:27 +04:00
2011-07-11 20:01:28 +04:00
@ I N T L T O O L _ P O L I C Y _ R U L E @
2011-04-16 04:02:54 +04:00
2010-06-18 02:44:57 +04:00
noinst_LTLIBRARIES = \
libsystemd-basic.la \
2011-07-15 01:06:31 +04:00
libsystemd-core.la
2010-06-18 02:44:57 +04:00
libsystemd_basic_la_SOURCES = \
2010-09-21 23:25:44 +04:00
src/util.c \
2011-12-31 06:59:54 +04:00
src/virt.c \
2010-08-12 00:58:34 +04:00
src/label.c \
2010-09-21 23:25:44 +04:00
src/hashmap.c \
src/set.c \
src/strv.c \
src/conf-parser.c \
src/socket-util.c \
src/log.c \
2011-02-15 02:30:11 +03:00
src/ratelimit.c \
src/exit-status.c
2010-02-03 16:21:48 +03:00
2010-08-11 03:43:23 +04:00
libsystemd_basic_la_CFLAGS = \
$( AM_CFLAGS) \
$( SELINUX_CFLAGS)
libsystemd_basic_la_LIBADD = \
2011-07-28 06:02:32 +04:00
$( SELINUX_LIBS) \
$( CAP_LIBS)
2010-08-11 03:43:23 +04:00
2010-06-18 02:44:57 +04:00
libsystemd_core_la_SOURCES = \
2010-05-16 20:45:24 +04:00
src/unit.c \
2010-09-21 23:25:44 +04:00
src/job.c \
src/manager.c \
2010-06-15 16:45:15 +04:00
src/path-lookup.c \
2010-09-21 23:25:44 +04:00
src/load-fragment.c \
src/service.c \
src/automount.c \
src/mount.c \
src/swap.c \
src/device.c \
src/target.c \
src/snapshot.c \
src/socket.c \
src/timer.c \
2010-05-24 07:25:33 +04:00
src/path.c \
2010-09-21 23:25:44 +04:00
src/load-dropin.c \
src/execute.c \
2010-10-08 18:06:23 +04:00
src/utmp-wtmp.c \
2010-09-21 23:25:44 +04:00
src/dbus.c \
src/dbus-manager.c \
src/dbus-unit.c \
src/dbus-job.c \
2010-05-16 20:45:24 +04:00
src/dbus-service.c \
src/dbus-socket.c \
2010-05-24 03:45:54 +04:00
src/dbus-timer.c \
2010-05-16 20:45:24 +04:00
src/dbus-target.c \
src/dbus-mount.c \
src/dbus-automount.c \
src/dbus-swap.c \
src/dbus-snapshot.c \
src/dbus-device.c \
src/dbus-execute.c \
2010-05-24 07:25:33 +04:00
src/dbus-path.c \
2010-05-16 20:45:24 +04:00
src/cgroup.c \
src/mount-setup.c \
src/hostname-setup.c \
2010-10-27 07:47:02 +04:00
src/selinux-setup.c \
2010-05-16 20:45:24 +04:00
src/loopback-setup.c \
2010-05-22 02:29:53 +04:00
src/kmod-setup.c \
2010-09-16 03:57:42 +04:00
src/locale-setup.c \
2011-03-04 23:53:19 +03:00
src/machine-id-setup.c \
2010-05-16 20:45:24 +04:00
src/specifier.c \
src/unit-name.c \
src/fdset.c \
2010-06-16 17:41:29 +04:00
src/namespace.c \
2010-06-22 01:27:18 +04:00
src/tcpwrap.c \
2010-10-13 04:15:41 +04:00
src/cgroup-util.c \
2011-04-16 03:54:49 +04:00
src/condition.c \
2011-12-31 06:59:54 +04:00
src/dbus-common.c \
src/sd-daemon.c \
src/install.c \
src/cgroup-attr.c \
src/sd-id128.c
2010-02-03 16:21:48 +03:00
2011-08-01 02:43:05 +04:00
nodist_libsystemd_core_la_SOURCES = \
2011-12-31 06:59:54 +04:00
src/load-fragment-gperf.c \
src/load-fragment-gperf-nulstr.c
2011-08-01 02:43:05 +04:00
2011-08-01 19:09:38 +04:00
EXTRA_DIST += \
2011-12-31 06:59:54 +04:00
src/load-fragment-gperf.gperf.m4
2011-08-01 19:09:38 +04:00
2010-06-18 02:44:57 +04:00
libsystemd_core_la_CFLAGS = \
$( AM_CFLAGS) \
$( DBUS_CFLAGS) \
2010-08-11 03:43:23 +04:00
$( UDEV_CFLAGS) \
$( LIBWRAP_CFLAGS) \
$( PAM_CFLAGS) \
$( AUDIT_CFLAGS)
2010-06-18 02:44:57 +04:00
libsystemd_core_la_LIBADD = \
libsystemd-basic.la \
$( DBUS_LIBS) \
$( UDEV_LIBS) \
$( LIBWRAP_LIBS) \
2010-07-23 01:01:25 +04:00
$( PAM_LIBS) \
2011-07-28 06:02:32 +04:00
$( AUDIT_LIBS) \
$( CAP_LIBS)
2010-06-18 02:44:57 +04:00
2010-07-06 07:06:40 +04:00
# This is needed because automake is buggy in how it generates the
2011-12-31 22:59:09 +04:00
# rules for C programs, but not Vala programs. We therefore can't
2010-07-06 07:06:40 +04:00
# list the .h files as dependencies if we want make dist to work.
2010-05-10 03:17:49 +04:00
EXTRA_DIST += \
2012-01-05 20:00:46 +04:00
src/util.h \
src/virt.h \
src/label.h \
src/hashmap.h \
src/set.h \
src/strv.h \
src/conf-parser.h \
src/socket-util.h \
src/log.h \
src/ratelimit.h \
src/exit-status.h \
src/unit.h \
src/job.h \
src/manager.h \
src/path-lookup.h \
src/load-fragment.h \
src/service.h \
src/automount.h \
src/mount.h \
src/swap.h \
src/device.h \
src/target.h \
src/snapshot.h \
src/socket.h \
src/timer.h \
src/path.h \
src/load-dropin.h \
src/execute.h \
src/utmp-wtmp.h \
src/dbus.h \
src/dbus-manager.h \
src/dbus-unit.h \
src/dbus-job.h \
src/dbus-service.h \
src/dbus-socket.h \
src/dbus-timer.h \
src/dbus-target.h \
src/dbus-mount.h \
src/dbus-automount.h \
src/dbus-swap.h \
src/dbus-snapshot.h \
src/dbus-device.h \
src/dbus-execute.h \
src/dbus-path.h \
src/cgroup.h \
src/mount-setup.h \
src/hostname-setup.h \
src/selinux-setup.h \
src/loopback-setup.h \
src/kmod-setup.h \
src/locale-setup.h \
src/machine-id-setup.h \
src/specifier.h \
src/unit-name.h \
src/fdset.h \
src/namespace.h \
src/tcpwrap.h \
src/cgroup-util.h \
src/condition.h \
src/dbus-common.h \
src/install.h \
src/cgroup-attr.h \
2010-05-16 20:45:24 +04:00
src/macro.h \
2011-04-04 00:09:25 +04:00
src/def.h \
2010-05-16 20:45:24 +04:00
src/ioprio.h \
src/missing.h \
src/list.h \
src/securebits.h \
src/linux/auto_dev-ioctl.h \
2010-09-28 20:49:02 +04:00
src/linux/fanotify.h \
2010-05-16 20:45:24 +04:00
src/initreq.h \
2010-07-06 07:06:40 +04:00
src/special.h \
2010-07-08 04:43:18 +04:00
src/dbus-common.h \
2010-07-08 08:08:32 +04:00
src/bus-errors.h \
2010-08-11 06:38:55 +04:00
src/cgroup-show.h \
2010-08-16 17:37:52 +04:00
src/build.h \
2010-09-28 20:49:02 +04:00
src/shutdownd.h \
2010-10-13 15:55:06 +04:00
src/umount.h \
2011-07-12 02:47:50 +04:00
src/ask-password-api.h \
2011-12-31 06:59:54 +04:00
src/pager.h \
src/sysfs-show.h \
src/polkit.h \
src/dbus-loop.h \
src/spawn-agent.h \
2012-01-05 07:00:48 +04:00
src/acl-util.h \
src/logs-show.h
2010-06-24 06:22:22 +04:00
MANPAGES = \
2010-06-24 02:11:04 +04:00
man/systemd.1 \
2010-06-24 06:22:22 +04:00
man/systemctl.1 \
man/systemadm.1 \
2010-07-08 23:01:42 +04:00
man/systemd-cgls.1 \
2011-03-15 22:51:41 +03:00
man/systemd-nspawn.1 \
2011-02-13 17:08:15 +03:00
man/systemd-tmpfiles.8 \
2010-06-24 07:17:02 +04:00
man/systemd-notify.1 \
2010-06-24 06:22:22 +04:00
man/systemd.unit.5 \
man/systemd.service.5 \
2010-07-02 01:49:50 +04:00
man/systemd.socket.5 \
2010-07-02 02:29:15 +04:00
man/systemd.mount.5 \
2010-07-02 03:17:55 +04:00
man/systemd.automount.5 \
2010-07-02 03:33:54 +04:00
man/systemd.swap.5 \
2010-07-02 04:14:13 +04:00
man/systemd.timer.5 \
2010-07-02 04:38:30 +04:00
man/systemd.path.5 \
2010-07-02 04:55:34 +04:00
man/systemd.target.5 \
2010-07-02 05:28:33 +04:00
man/systemd.device.5 \
2010-07-02 05:51:29 +04:00
man/systemd.snapshot.5 \
2010-07-03 01:24:38 +04:00
man/systemd.exec.5 \
2010-06-24 06:22:22 +04:00
man/daemon.7 \
2010-06-23 03:49:57 +04:00
man/runlevel.8 \
2010-06-24 02:11:04 +04:00
man/telinit.8 \
man/halt.8 \
man/shutdown.8 \
2010-07-07 03:38:56 +04:00
man/pam_systemd.8 \
2010-11-04 23:31:07 +03:00
man/systemd.conf.5 \
2010-11-21 18:29:56 +03:00
man/tmpfiles.d.5 \
2010-11-21 21:12:44 +03:00
man/hostname.5 \
2011-12-31 06:59:54 +04:00
man/timezone.5 \
2011-03-04 23:53:19 +03:00
man/machine-id.5 \
2010-11-21 22:05:51 +03:00
man/locale.conf.5 \
2010-11-21 22:41:00 +03:00
man/os-release.5 \
2011-12-31 06:59:54 +04:00
man/machine-info.5 \
2011-04-04 05:36:42 +04:00
man/modules-load.d.5 \
2011-04-08 19:57:17 +04:00
man/sysctl.d.5 \
2011-12-31 19:55:36 +04:00
man/systemd-ask-password.1
2010-06-24 06:22:22 +04:00
MANPAGES_ALIAS = \
man/reboot.8 \
man/poweroff.8 \
2011-12-31 19:55:36 +04:00
man/init.1
2010-06-24 06:22:22 +04:00
man/reboot.8 : man /halt .8
man/poweroff.8 : man /halt .8
man/init.1 : man /systemd .1
dist_man_MANS = \
$( MANPAGES) \
$( MANPAGES_ALIAS)
2010-05-18 00:45:52 +04:00
nodist_man_MANS = \
2010-05-17 00:45:11 +04:00
man/systemd.special.7
2010-05-16 01:06:41 +04:00
2010-06-24 06:22:22 +04:00
XML_FILES = \
${ patsubst %.1,%.xml, ${ patsubst %.3,%.xml, ${ patsubst %.5,%.xml, ${ patsubst %.7,%.xml, ${ patsubst %.8,%.xml, $( MANPAGES) } } } } }
XML_IN_FILES = \
${ patsubst %.1,%.xml.in, ${ patsubst %.3,%.xml.in, ${ patsubst %.5,%.xml.in, ${ patsubst %.7,%.xml.in, ${ patsubst %.8,%.xml.in, $( nodist_man_MANS) } } } } }
2010-05-18 00:45:52 +04:00
dist_noinst_DATA = \
2010-06-24 06:22:22 +04:00
${ XML_FILES : .xml=.html }
2010-05-16 01:06:41 +04:00
2010-05-18 00:45:52 +04:00
nodist_noinst_DATA = \
2010-06-24 06:22:22 +04:00
${ XML_IN_FILES : .xml.in=.html }
2010-05-16 01:06:41 +04:00
EXTRA_DIST += \
2010-06-24 06:22:22 +04:00
$( XML_FILES) \
$( XML_IN_FILES) \
${ nodist_man_MANS : =.in } \
${ XML_IN_FILES : .xml.in=.html.in }
2010-05-16 01:06:41 +04:00
2010-02-03 16:21:48 +03:00
systemd_SOURCES = \
2010-05-16 20:45:24 +04:00
src/main.c
2010-02-03 16:21:48 +03:00
2010-06-16 03:58:50 +04:00
systemd_CFLAGS = \
$( AM_CFLAGS) \
2010-02-03 16:21:48 +03:00
$( DBUS_CFLAGS) \
2010-07-12 20:16:44 +04:00
$( UDEV_CFLAGS)
2010-02-03 16:21:48 +03:00
systemd_LDADD = \
2010-06-18 02:44:57 +04:00
libsystemd-core.la
2010-02-03 16:21:48 +03:00
test_engine_SOURCES = \
2010-05-16 20:45:24 +04:00
src/test-engine.c
2010-02-03 16:21:48 +03:00
2010-06-16 03:58:50 +04:00
test_engine_CFLAGS = $( systemd_CFLAGS)
2010-02-03 16:21:48 +03:00
test_engine_LDADD = $( systemd_LDADD)
test_job_type_SOURCES = \
2010-06-03 05:01:12 +04:00
src/test-job-type.c
2010-02-03 16:21:48 +03:00
2010-06-16 03:58:50 +04:00
test_job_type_CFLAGS = $( systemd_CFLAGS)
2010-02-03 16:21:48 +03:00
test_job_type_LDADD = $( systemd_LDADD)
2010-04-22 00:15:06 +04:00
test_ns_SOURCES = \
2010-06-18 02:44:57 +04:00
src/test-ns.c
2010-04-22 00:15:06 +04:00
2010-06-16 03:58:50 +04:00
test_ns_CFLAGS = $( systemd_CFLAGS)
2010-04-22 00:15:06 +04:00
test_ns_LDADD = $( systemd_LDADD)
2010-05-09 20:02:38 +04:00
test_loopback_SOURCES = \
2010-05-16 20:45:24 +04:00
src/test-loopback.c \
src/loopback-setup.c
2010-05-09 20:02:38 +04:00
2010-06-18 02:44:57 +04:00
test_loopback_LDADD = \
libsystemd-basic.la
2010-08-19 05:02:22 +04:00
test_hostname_SOURCES = \
src/test-hostname.c \
src/hostname-setup.c
test_hostname_LDADD = \
libsystemd-basic.la
2010-06-16 07:10:31 +04:00
test_daemon_SOURCES = \
2010-11-26 22:25:00 +03:00
src/test-daemon.c
2010-05-09 20:02:38 +04:00
2010-06-18 02:44:57 +04:00
test_daemon_LDADD = \
2010-11-26 22:25:00 +03:00
libsystemd-basic.la \
libsystemd-daemon.la
2010-06-18 02:44:57 +04:00
2010-06-22 01:27:18 +04:00
test_cgroup_SOURCES = \
src/test-cgroup.c \
src/cgroup-util.c
test_cgroup_LDADD = \
2010-07-12 20:16:44 +04:00
libsystemd-basic.la
2010-06-22 01:27:18 +04:00
2010-07-21 04:57:35 +04:00
test_env_replace_SOURCES = \
src/test-env-replace.c
test_env_replace_LDADD = \
libsystemd-basic.la
2010-11-14 21:58:33 +03:00
test_strv_SOURCES = \
2011-01-07 01:51:52 +03:00
src/test-strv.c \
2011-01-08 04:34:55 +03:00
src/specifier.c
2010-11-14 21:58:33 +03:00
test_strv_LDADD = \
libsystemd-basic.la
2011-07-22 06:21:18 +04:00
test_install_SOURCES = \
src/test-install.c \
2011-12-31 06:59:54 +04:00
src/install.c \
src/path-lookup.c \
src/unit-name.c
2011-07-22 06:21:18 +04:00
test_install_CFLAGS = \
$( AM_CFLAGS) \
2011-12-31 06:59:54 +04:00
$( DBUS_CFLAGS)
2011-07-22 06:21:18 +04:00
test_install_LDADD = \
libsystemd-basic.la
2011-12-31 11:36:52 +04:00
systemd_initctl_SOURCES = \
src/initctl.c \
src/dbus-common.c
systemd_initctl_CFLAGS = \
$( AM_CFLAGS) \
$( DBUS_CFLAGS)
systemd_initctl_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la \
$( DBUS_LIBS)
systemd_update_utmp_SOURCES = \
src/update-utmp.c \
src/dbus-common.c \
src/utmp-wtmp.c
systemd_update_utmp_CFLAGS = \
$( AM_CFLAGS) \
$( DBUS_CFLAGS) \
$( AUDIT_CFLAGS)
systemd_update_utmp_LDADD = \
libsystemd-basic.la \
$( DBUS_LIBS) \
$( AUDIT_LIBS)
systemd_shutdownd_SOURCES = \
src/utmp-wtmp.c \
src/shutdownd.c
2011-12-21 05:40:59 +04:00
2011-12-31 11:36:52 +04:00
systemd_shutdownd_CFLAGS = \
$( AM_CFLAGS)
systemd_shutdownd_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la
2011-12-31 12:17:48 +04:00
systemd_shutdown_SOURCES = \
src/mount-setup.c \
src/umount.c \
src/shutdown.c
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_shutdown_CFLAGS = \
2011-12-31 11:53:06 +04:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
$( UDEV_CFLAGS)
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_shutdown_LDADD = \
libsystemd-basic.la \
$( UDEV_LIBS)
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_modules_load_SOURCES = \
src/modules-load.c
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_modules_load_LDADD = \
2011-12-31 11:53:06 +04:00
libsystemd-basic.la
2011-12-31 12:17:48 +04:00
systemd_tmpfiles_SOURCES = \
src/tmpfiles.c
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_tmpfiles_LDADD = \
libsystemd-basic.la
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_machine_id_setup_SOURCES = \
src/machine-id-setup.c \
src/machine-id-main.c \
src/sd-id128.c
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_machine_id_setup_LDADD = \
libsystemd-basic.la
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_sysctl_SOURCES = \
src/sysctl.c
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_sysctl_LDADD = \
libsystemd-basic.la
2011-12-31 11:53:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_fsck_SOURCES = \
src/fsck.c \
src/dbus-common.c
2011-10-07 23:06:39 +04:00
2011-12-31 12:17:48 +04:00
systemd_fsck_CFLAGS = \
2011-10-08 01:03:07 +04:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
$( UDEV_CFLAGS) \
$( DBUS_CFLAGS)
2011-10-07 23:06:39 +04:00
2011-12-31 12:17:48 +04:00
systemd_fsck_LDADD = \
2011-10-07 23:06:39 +04:00
libsystemd-basic.la \
2011-12-31 12:17:48 +04:00
$( UDEV_LIBS) \
$( DBUS_LIBS)
2011-12-21 05:40:59 +04:00
2011-12-31 12:17:48 +04:00
systemd_timestamp_SOURCES = \
src/timestamp.c
2011-12-21 05:40:59 +04:00
2011-12-31 12:17:48 +04:00
systemd_timestamp_LDADD = \
2011-12-31 11:36:52 +04:00
libsystemd-basic.la
2010-02-03 16:21:48 +03:00
2011-12-31 12:17:48 +04:00
systemd_ac_power_SOURCES = \
src/ac-power.c
2010-04-05 00:53:42 +04:00
2011-12-31 12:17:48 +04:00
systemd_ac_power_CFLAGS = \
$( AM_CFLAGS) \
$( UDEV_CFLAGS)
2010-04-05 00:53:42 +04:00
2011-12-31 12:17:48 +04:00
systemd_ac_power_LDADD = \
libsystemd-basic.la \
$( UDEV_LIBS)
2010-04-05 00:53:42 +04:00
2011-12-31 12:17:48 +04:00
systemd_detect_virt_SOURCES = \
src/detect-virt.c
2010-08-11 03:43:23 +04:00
2011-12-31 12:17:48 +04:00
systemd_detect_virt_LDADD = \
libsystemd-basic.la
2011-12-31 11:36:52 +04:00
2011-12-31 12:17:48 +04:00
systemd_getty_generator_SOURCES = \
src/getty-generator.c \
src/unit-name.c
2010-08-16 17:37:52 +04:00
2011-12-31 12:17:48 +04:00
systemd_getty_generator_LDADD = \
libsystemd-basic.la
2011-12-31 11:36:52 +04:00
2011-12-31 12:17:48 +04:00
systemd_rc_local_generator_SOURCES = \
src/rc-local-generator.c
2011-12-31 11:36:52 +04:00
2011-12-31 12:17:48 +04:00
systemd_rc_local_generator_LDADD = \
libsystemd-basic.la
2011-12-31 11:36:52 +04:00
2011-12-31 12:17:48 +04:00
systemd_remount_api_vfs_SOURCES = \
src/remount-api-vfs.c \
src/mount-setup.c \
src/exit-status.c
2011-12-31 10:40:31 +04:00
2011-12-31 12:17:48 +04:00
systemd_remount_api_vfs_LDADD = \
libsystemd-basic.la
2011-12-31 10:40:31 +04:00
2011-12-31 12:17:48 +04:00
systemd_cgroups_agent_SOURCES = \
src/cgroups-agent.c \
src/dbus-common.c
2011-04-16 04:02:54 +04:00
2011-12-31 12:17:48 +04:00
systemd_cgroups_agent_CFLAGS = \
2011-04-16 04:02:54 +04:00
$( AM_CFLAGS) \
$( DBUS_CFLAGS)
2011-12-31 12:17:48 +04:00
systemd_cgroups_agent_LDADD = \
2011-04-16 04:02:54 +04:00
libsystemd-basic.la \
$( DBUS_LIBS)
2011-12-31 12:17:48 +04:00
systemctl_SOURCES = \
src/systemctl.c \
src/utmp-wtmp.c \
2011-12-31 06:59:54 +04:00
src/dbus-common.c \
2011-12-31 12:17:48 +04:00
src/path-lookup.c \
src/cgroup-show.c \
src/cgroup-util.c \
src/exit-status.c \
src/unit-name.c \
src/pager.c \
src/install.c \
2012-01-04 00:08:28 +04:00
src/spawn-agent.c \
2012-01-05 07:00:48 +04:00
src/logs-show.c
2011-06-15 17:37:39 +04:00
2011-12-31 12:17:48 +04:00
systemctl_CFLAGS = \
2011-06-15 17:37:39 +04:00
$( AM_CFLAGS) \
$( DBUS_CFLAGS)
2011-12-31 12:17:48 +04:00
systemctl_LDADD = \
2011-06-15 17:37:39 +04:00
libsystemd-basic.la \
libsystemd-daemon.la \
2012-01-04 00:08:28 +04:00
libsystemd-journal.la \
2012-01-10 10:26:30 +04:00
libsystemd-id128.la \
2011-06-15 17:37:39 +04:00
$( DBUS_LIBS)
2011-12-31 12:17:48 +04:00
systemd_notify_SOURCES = \
src/notify.c \
2011-12-31 22:35:52 +04:00
src/readahead/sd-readahead.c
2011-12-31 09:50:34 +04:00
2011-12-31 12:17:48 +04:00
systemd_notify_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la
2011-12-31 10:21:37 +04:00
2011-12-31 12:17:48 +04:00
systemd_ask_password_SOURCES = \
src/ask-password.c \
src/ask-password-api.c
2011-12-31 10:21:37 +04:00
2011-12-31 12:17:48 +04:00
systemd_ask_password_LDADD = \
libsystemd-basic.la
2011-12-31 10:21:37 +04:00
2011-12-31 12:17:48 +04:00
systemd_reply_password_SOURCES = \
src/reply-password.c
2011-12-31 10:21:37 +04:00
2011-12-31 12:17:48 +04:00
systemd_reply_password_LDADD = \
libsystemd-basic.la
2011-12-31 09:50:34 +04:00
2011-12-31 12:17:48 +04:00
systemd_cgls_SOURCES = \
src/cgls.c \
src/cgroup-show.c \
src/cgroup-util.c \
src/pager.c
2011-12-31 09:20:34 +04:00
2011-12-31 12:17:48 +04:00
systemd_cgls_LDADD = \
libsystemd-basic.la
2011-12-31 09:20:34 +04:00
2011-12-31 12:17:48 +04:00
systemd_nspawn_SOURCES = \
src/nspawn.c \
src/cgroup-util.c \
src/loopback-setup.c
2011-12-31 09:20:34 +04:00
2011-12-31 12:17:48 +04:00
systemd_nspawn_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la
2011-12-31 09:20:34 +04:00
2011-12-31 12:17:48 +04:00
systemd_stdio_bridge_SOURCES = \
src/bridge.c
2011-12-31 09:20:34 +04:00
2011-12-31 12:17:48 +04:00
systemd_stdio_bridge_LDADD = \
libsystemd-basic.la
2011-12-31 09:20:34 +04:00
2011-12-31 12:17:48 +04:00
systemadm_SOURCES = \
src/systemadm.vala \
src/systemd-interfaces.vala \
src/wraplabel.vala
2011-12-31 09:20:34 +04:00
2011-12-31 12:17:48 +04:00
systemadm_CFLAGS = \
$( AM_CFLAGS) \
$( GTK_CFLAGS) \
-Wno-unused-variable \
-Wno-unused-function \
-Wno-shadow \
-Wno-format-nonliteral
2011-05-24 01:55:06 +04:00
2011-12-31 12:17:48 +04:00
systemadm_VALAFLAGS = \
--pkg= posix \
--pkg= gtk+-2.0 \
--pkg= gee-1.0 \
-g
2011-08-01 02:43:05 +04:00
2011-12-31 12:17:48 +04:00
systemadm_LDADD = \
$( GTK_LIBS)
2011-08-01 19:09:38 +04:00
2011-12-31 12:17:48 +04:00
systemd_gnome_ask_password_agent_SOURCES = \
src/gnome-ask-password-agent.vala
2011-12-31 07:20:25 +04:00
2011-12-31 12:17:48 +04:00
systemd_gnome_ask_password_agent_CFLAGS = \
2011-05-24 01:55:06 +04:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
$( LIBNOTIFY_CFLAGS) \
$( GTK_CFLAGS) \
-Wno-unused-variable \
-Wno-unused-function \
-Wno-shadow \
-Wno-format-nonliteral
2011-05-24 01:55:06 +04:00
2011-12-31 12:17:48 +04:00
systemd_gnome_ask_password_agent_VALAFLAGS = \
--pkg= posix \
--pkg= gtk+-2.0 \
--pkg= linux \
--pkg= gio-unix-2.0 \
2011-12-31 21:15:27 +04:00
--pkg= libnotify \
2011-12-31 12:17:48 +04:00
-g
2011-05-24 06:20:35 +04:00
2011-12-31 12:17:48 +04:00
systemd_gnome_ask_password_agent_LDADD = \
$( LIBNOTIFY_LIBS) \
$( GTK_LIBS)
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
systemd_tty_ask_password_agent_SOURCES = \
src/tty-ask-password-agent.c \
src/ask-password-api.c \
src/utmp-wtmp.c
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
systemd_tty_ask_password_agent_LDADD = \
libsystemd-basic.la
# ------------------------------------------------------------------------------
libsystemd_daemon_la_SOURCES = \
src/sd-daemon.c
libsystemd_daemon_la_CFLAGS = \
2011-12-31 09:02:42 +04:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
-fvisibility= hidden \
-DSD_EXPORT_SYMBOLS
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
libsystemd_daemon_la_LDFLAGS = \
-shared \
-version-info $( LIBSYSTEMD_DAEMON_CURRENT) :$( LIBSYSTEMD_DAEMON_REVISION) :$( LIBSYSTEMD_DAEMON_AGE) \
-Wl,--version-script= $( top_srcdir) /src/libsystemd-daemon.sym
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
pkginclude_HEADERS += \
2012-01-05 19:01:58 +04:00
src/systemd/sd-daemon.h
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
# move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
libsystemd-daemon-install-hook :
if test " $( libdir) " != " $( rootlibdir) " ; then \
mkdir -p $( DESTDIR) $( rootlibdir) && \
so_img_name = $$ ( readlink $( DESTDIR) $( libdir) /libsystemd-daemon.so) && \
so_img_rel_target_prefix = $$ ( echo $( libdir) | sed 's,\(^/\|\)[^/][^/]*,..,g' ) && \
ln -sf $$ so_img_rel_target_prefix$( rootlibdir) /$$ so_img_name $( DESTDIR) $( libdir) /libsystemd-daemon.so && \
mv $( DESTDIR) $( libdir) /libsystemd-daemon.so.* $( DESTDIR) $( rootlibdir) ; \
fi
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
INSTALL_EXEC_HOOKS += \
libsystemd-daemon-install-hook
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
libsystemd-daemon-uninstall-hook :
rm -f $( DESTDIR) $( rootlibdir) /libsystemd-daemon.so*
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
UNINSTALL_EXEC_HOOKS += \
libsystemd-daemon-uninstall-hook
2011-12-31 09:02:42 +04:00
2011-12-31 20:06:09 +04:00
lib_LTLIBRARIES += \
libsystemd-daemon.la
pkgconfiglib_DATA += \
2012-01-16 16:49:08 +04:00
src/libsystemd-daemon.pc
2011-12-31 20:06:09 +04:00
2011-12-31 19:55:36 +04:00
MANPAGES += \
man/sd-daemon.7 \
man/sd_notify.3 \
man/sd_listen_fds.3 \
man/sd_is_fifo.3 \
man/sd_booted.3
MANPAGES_ALIAS += \
man/sd_is_socket.3 \
man/sd_is_socket_unix.3 \
man/sd_is_socket_inet.3 \
man/sd_is_mq.3 \
man/sd_notifyf.3
man/sd_is_socket.3 : man /sd_is_fifo .3
man/sd_is_socket_unix.3 : man /sd_is_fifo .3
man/sd_is_socket_inet.3 : man /sd_is_fifo .3
man/sd_is_mq.3 : man /sd_is_fifo .3
man/sd_notifyf.3 : man /sd_notify .3
2011-12-31 12:17:48 +04:00
EXTRA_DIST += \
2012-01-07 04:36:36 +04:00
src/libsystemd-daemon.pc.in \
2011-12-31 20:06:09 +04:00
src/libsystemd-daemon.sym
2011-12-31 12:17:48 +04:00
# ------------------------------------------------------------------------------
libsystemd_id128_la_SOURCES = \
src/sd-id128.c
libsystemd_id128_la_CFLAGS = \
2011-12-31 09:02:42 +04:00
$( AM_CFLAGS) \
-fvisibility= hidden
2011-12-31 12:17:48 +04:00
libsystemd_id128_la_LDFLAGS = \
2011-12-31 09:02:42 +04:00
-shared \
2011-12-31 12:17:48 +04:00
-version-info $( LIBSYSTEMD_ID128_CURRENT) :$( LIBSYSTEMD_ID128_REVISION) :$( LIBSYSTEMD_ID128_AGE) \
-Wl,--version-script= $( top_srcdir) /src/libsystemd-id128.sym
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
libsystemd_id128_la_LIBADD = \
2011-12-31 09:02:42 +04:00
libsystemd-basic.la
2011-12-31 12:17:48 +04:00
test_id128_SOURCES = \
src/test-id128.c \
src/sd-id128.c
2011-12-31 12:05:56 +04:00
2011-12-31 12:17:48 +04:00
test_id128_LDADD = \
libsystemd-basic.la
2011-12-31 12:05:56 +04:00
2011-12-31 12:17:48 +04:00
noinst_PROGRAMS += \
test-id128
2011-12-31 12:05:56 +04:00
2011-12-31 12:17:48 +04:00
pkginclude_HEADERS += \
2012-01-05 19:01:58 +04:00
src/systemd/sd-id128.h
2011-12-31 12:17:48 +04:00
lib_LTLIBRARIES += \
libsystemd-id128.la
pkgconfiglib_DATA += \
2012-01-07 04:36:36 +04:00
src/libsystemd-id128.pc
2011-12-31 12:05:56 +04:00
2011-12-31 09:02:42 +04:00
# move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
2011-12-31 12:17:48 +04:00
libsystemd-id128-install-hook :
2011-12-31 09:02:42 +04:00
if test " $( libdir) " != " $( rootlibdir) " ; then \
mkdir -p $( DESTDIR) $( rootlibdir) && \
2011-12-31 12:17:48 +04:00
so_img_name = $$ ( readlink $( DESTDIR) $( libdir) /libsystemd-id128.so) && \
2011-12-31 09:02:42 +04:00
so_img_rel_target_prefix = $$ ( echo $( libdir) | sed 's,\(^/\|\)[^/][^/]*,..,g' ) && \
2011-12-31 12:17:48 +04:00
ln -sf $$ so_img_rel_target_prefix$( rootlibdir) /$$ so_img_name $( DESTDIR) $( libdir) /libsystemd-id128.so && \
mv $( DESTDIR) $( libdir) /libsystemd-id128.so.* $( DESTDIR) $( rootlibdir) ; \
2011-12-31 09:02:42 +04:00
fi
INSTALL_EXEC_HOOKS += \
2011-12-31 12:17:48 +04:00
libsystemd-id128-install-hook
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
libsystemd-id128-uninstall-hook :
rm -f $( DESTDIR) $( rootlibdir) /libsystemd-id128.so*
2011-12-31 09:02:42 +04:00
UNINSTALL_EXEC_HOOKS += \
2011-12-31 12:17:48 +04:00
libsystemd-id128-uninstall-hook
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
EXTRA_DIST += \
2012-01-07 04:36:36 +04:00
src/libsystemd-id128.pc.in \
2011-12-31 12:17:48 +04:00
src/libsystemd-id128.sym
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
# ------------------------------------------------------------------------------
systemd_journald_SOURCES = \
src/journal/journald.c \
src/journal/sd-journal.c \
src/journal/journal-file.c \
src/journal/lookup3.c \
src/journal/journal-rate-limit.c \
src/sd-id128.c \
src/cgroup-util.c
2011-12-31 09:02:42 +04:00
2012-01-11 23:40:01 +04:00
i f H A V E _ A C L
systemd_journald_SOURCES += \
src/acl-util.c
e n d i f
2012-01-04 23:40:04 +04:00
nodist_systemd_journald_SOURCES = \
2012-01-05 07:00:48 +04:00
src/journal/journald-gperf.c
2012-01-04 23:40:04 +04:00
2011-12-31 12:17:48 +04:00
systemd_journald_CFLAGS = \
$( AM_CFLAGS) \
$( ACL_CFLAGS)
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
systemd_journald_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la \
2012-01-04 00:02:13 +04:00
libsystemd-login.la \
2011-12-31 12:17:48 +04:00
$( ACL_LIBS)
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
i f H A V E _ X Z
systemd_journald_SOURCES += \
src/journal/compress.c
systemd_journald_CFLAGS += \
$( XZ_CFLAGS)
systemd_journald_LDADD += \
$( XZ_LIBS)
e n d i f
2011-12-31 09:02:42 +04:00
2012-01-14 02:17:54 +04:00
systemd_cat_SOURCES = \
2012-01-16 16:49:08 +04:00
src/journal/cat.c
2012-01-14 02:17:54 +04:00
systemd_cat_LDADD = \
libsystemd-basic.la \
libsystemd-journal.la
2011-12-31 12:17:48 +04:00
systemd_journalctl_SOURCES = \
src/journal/journalctl.c \
2012-01-04 00:08:28 +04:00
src/pager.c \
2012-01-05 07:00:48 +04:00
src/logs-show.c
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
systemd_journalctl_LDADD = \
2012-01-04 00:08:28 +04:00
libsystemd-basic.la \
2012-01-10 10:26:30 +04:00
libsystemd-journal.la \
libsystemd-id128.la
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
i f H A V E _ X Z
systemd_journalctl_SOURCES += \
src/journal/compress.c
2011-12-31 19:15:38 +04:00
systemd_journalctl_CFLAGS = \
2012-01-05 07:00:48 +04:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
$( XZ_CFLAGS)
systemd_journalctl_LDADD += \
$( XZ_LIBS)
e n d i f
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
test_journal_SOURCES = \
src/journal/test-journal.c \
src/journal/sd-journal.c \
src/journal/journal-file.c \
src/journal/lookup3.c \
src/journal/journal-send.c \
src/sd-id128.c
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
test_journal_LDADD = \
libsystemd-basic.la
2011-07-12 00:29:45 +04:00
2011-12-31 12:17:48 +04:00
i f H A V E _ X Z
test_journal_SOURCES += \
src/journal/compress.c
test_journal_CFLAGS = \
2012-01-05 07:00:48 +04:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
$( XZ_CFLAGS)
test_journal_LDADD += \
$( XZ_LIBS)
2011-07-12 00:29:45 +04:00
e n d i f
2011-05-24 06:20:35 +04:00
2011-12-31 12:17:48 +04:00
libsystemd_journal_la_SOURCES = \
src/journal/sd-journal.c \
src/journal/journal-file.c \
src/journal/lookup3.c \
src/journal/journal-send.c
libsystemd_journal_la_CFLAGS = \
2011-05-24 06:20:35 +04:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
-fvisibility= hidden
2011-05-24 06:20:35 +04:00
2011-12-31 12:17:48 +04:00
libsystemd_journal_la_LDFLAGS = \
-shared \
-version-info $( LIBSYSTEMD_JOURNAL_CURRENT) :$( LIBSYSTEMD_JOURNAL_REVISION) :$( LIBSYSTEMD_JOURNAL_AGE) \
-Wl,--version-script= $( top_srcdir) /src/journal/libsystemd-journal.sym
libsystemd_journal_la_LIBADD = \
2011-05-24 06:20:35 +04:00
libsystemd-basic.la \
2012-01-04 22:36:45 +04:00
libsystemd-id128.la
i f H A V E _ X Z
libsystemd_journal_la_SOURCES += \
src/journal/compress.c
libsystemd_journal_la_CFLAGS += \
$( XZ_CFLAGS)
libsystemd_journal_la_LIBADD += \
2011-12-31 12:17:48 +04:00
$( XZ_LIBS)
2012-01-04 22:36:45 +04:00
e n d i f
2011-05-24 01:55:06 +04:00
2011-12-31 12:17:48 +04:00
# move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
libsystemd-journal-install-hook :
if test " $( libdir) " != " $( rootlibdir) " ; then \
mkdir -p $( DESTDIR) $( rootlibdir) && \
so_img_name = $$ ( readlink $( DESTDIR) $( libdir) /libsystemd-journal.so) && \
so_img_rel_target_prefix = $$ ( echo $( libdir) | sed 's,\(^/\|\)[^/][^/]*,..,g' ) && \
ln -sf $$ so_img_rel_target_prefix$( rootlibdir) /$$ so_img_name $( DESTDIR) $( libdir) /libsystemd-journal.so && \
mv $( DESTDIR) $( libdir) /libsystemd-journal.so.* $( DESTDIR) $( rootlibdir) ; \
fi
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
INSTALL_EXEC_HOOKS += \
libsystemd-journal-install-hook
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
libsystemd-journal-uninstall-hook :
rm -f $( DESTDIR) $( rootlibdir) /libsystemd-journal.so*
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
UNINSTALL_EXEC_HOOKS += \
libsystemd-journal-uninstall-hook
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
noinst_PROGRAMS += \
test-journal
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
pkginclude_HEADERS += \
2012-01-05 19:01:58 +04:00
src/systemd/sd-journal.h \
2012-01-16 16:49:08 +04:00
src/systemd/sd-messages.h
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
lib_LTLIBRARIES += \
libsystemd-journal.la
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
rootlibexec_PROGRAMS += \
systemd-journald
2010-10-07 15:24:41 +04:00
2011-12-31 12:17:48 +04:00
rootbin_PROGRAMS += \
systemd-journalctl
2010-10-07 15:24:41 +04:00
2012-01-14 02:17:54 +04:00
bin_PROGRAMS += \
2012-01-16 16:49:08 +04:00
systemd-cat
2012-01-14 02:17:54 +04:00
2011-12-31 12:17:48 +04:00
dist_systemunit_DATA += \
units/systemd-journald.socket
2010-10-07 15:24:41 +04:00
2011-12-31 12:17:48 +04:00
nodist_systemunit_DATA += \
units/systemd-journald.service
2010-08-19 04:03:03 +04:00
2012-01-04 23:40:04 +04:00
dist_pkgsysconf_DATA += \
src/journal/systemd-journald.conf
2011-12-31 12:17:48 +04:00
pkgconfiglib_DATA += \
src/journal/libsystemd-journal.pc
2010-08-19 04:03:03 +04:00
2011-12-31 12:17:48 +04:00
journal-install-data-hook :
2012-01-04 22:01:58 +04:00
$( MKDIR_P) -m 0755 \
2012-01-07 03:22:37 +04:00
$( DESTDIR) $( systemunitdir) /sockets.target.wants \
$( DESTDIR) $( systemunitdir) /sysinit.target.wants
2011-12-31 12:17:48 +04:00
( cd $( DESTDIR) $( systemunitdir) /sockets.target.wants && \
rm -f systemd-journald.socket && \
$( LN_S) ../systemd-journald.socket )
2012-01-07 03:22:37 +04:00
( cd $( DESTDIR) $( systemunitdir) /sysinit.target.wants && \
rm -f systemd-journald.service && \
$( LN_S) ../systemd-journald.service )
2010-09-28 04:34:02 +04:00
2011-12-31 12:17:48 +04:00
INSTALL_DATA_HOOKS += \
journal-install-data-hook
2010-09-28 04:34:02 +04:00
2011-12-31 12:17:48 +04:00
EXTRA_DIST += \
2012-01-05 07:00:48 +04:00
src/journal/journald.h \
2011-12-31 12:17:48 +04:00
src/journal/journal-def.h \
src/journal/journal-internal.h \
src/journal/journal-file.h \
src/journal/lookup3.h \
src/journal/compress.h \
src/journal/journal-rate-limit.h \
src/journal/libsystemd-journal.pc.in \
src/journal/libsystemd-journal.sym \
2012-01-04 23:40:04 +04:00
units/systemd-journald.service.in \
2012-01-05 07:00:48 +04:00
src/journal/journald-gperf.gperf
2012-01-04 23:40:04 +04:00
CLEANFILES += \
2012-01-05 07:00:48 +04:00
src/journal/journald-gperf.c
2010-09-28 04:34:02 +04:00
2012-01-16 16:49:08 +04:00
# ------------------------------------------------------------------------------
2012-01-14 03:37:35 +04:00
i f E N A B L E _ C O R E D U M P
systemd_coredump_SOURCES = \
2012-01-16 16:49:08 +04:00
src/journal/coredump.c
2012-01-14 03:37:35 +04:00
systemd_coredump_LDADD = \
libsystemd-basic.la \
libsystemd-journal.la \
libsystemd-login.la
rootlibexec_PROGRAMS += \
2012-01-16 16:49:08 +04:00
systemd-coredump
2012-01-14 03:37:35 +04:00
sysctl_DATA = \
2012-01-16 16:49:08 +04:00
sysctl.d/coredump.conf
2012-01-14 03:37:35 +04:00
EXTRA_DIST += \
2012-01-16 16:49:08 +04:00
sysctl.d/coredump.conf.in
2012-01-14 03:37:35 +04:00
2012-01-16 16:49:08 +04:00
CLEANFILES += \
sysctl.d/coredump.conf
2012-01-14 03:37:35 +04:00
e n d i f
2011-12-31 12:17:48 +04:00
# ------------------------------------------------------------------------------
i f E N A B L E _ B I N F M T
systemd_binfmt_SOURCES = \
src/binfmt/binfmt.c
systemd_binfmt_LDADD = \
2010-10-19 23:19:12 +04:00
libsystemd-basic.la
2011-12-31 12:17:48 +04:00
rootlibexec_PROGRAMS += \
systemd-binfmt
2011-03-04 23:53:19 +03:00
2011-12-31 12:17:48 +04:00
dist_systemunit_DATA += \
units/proc-sys-fs-binfmt_misc.automount \
units/proc-sys-fs-binfmt_misc.mount
2011-03-04 23:53:19 +03:00
2011-12-31 12:17:48 +04:00
nodist_systemunit_DATA += \
units/systemd-binfmt.service
2011-03-04 23:53:19 +03:00
2011-12-31 12:17:48 +04:00
binfmt-install-data-hook :
$( MKDIR_P) -m 0755 \
$( DESTDIR) $( prefix) /lib/binfmt.d \
2012-01-04 22:01:58 +04:00
$( DESTDIR) $( sysconfdir) /binfmt.d \
$( DESTDIR) $( systemunitdir) /sysinit.target.wants
2011-12-31 12:17:48 +04:00
( cd $( DESTDIR) $( systemunitdir) /sysinit.target.wants && \
rm -f systemd-binfmt.service \
proc-sys-fs-binfmt_misc.automount && \
$( LN_S) ../systemd-binfmt.service systemd-binfmt.service && \
$( LN_S) ../proc-sys-fs-binfmt_misc.automount proc-sys-fs-binfmt_misc.automount )
2010-11-18 23:52:26 +03:00
2011-12-31 12:17:48 +04:00
INSTALL_DATA_HOOKS += \
binfmt-install-data-hook
2010-11-18 23:52:26 +03:00
2011-12-31 12:17:48 +04:00
MANPAGES += \
man/binfmt.d.5
2010-11-18 23:52:26 +03:00
2011-12-31 12:17:48 +04:00
EXTRA_DIST += \
units/systemd-binfmt.service.in
e n d i f
2010-10-19 23:19:12 +04:00
2011-12-31 22:35:52 +04:00
# ------------------------------------------------------------------------------
i f E N A B L E _ V C O N S O L E
systemd_vconsole_setup_SOURCES = \
src/vconsole/vconsole-setup.c
systemd_vconsole_setup_LDADD = \
libsystemd-basic.la
rootlibexec_PROGRAMS += \
systemd-vconsole-setup
nodist_systemunit_DATA += \
units/systemd-vconsole-setup.service
vconsole-install-data-hook :
2012-01-04 22:01:58 +04:00
$( MKDIR_P) -m 0755 \
$( DESTDIR) $( systemunitdir) /sysinit.target.wants
2011-12-31 22:35:52 +04:00
( cd $( DESTDIR) $( systemunitdir) /sysinit.target.wants && \
rm -f systemd-vconsole-setup.service && \
$( LN_S) ../systemd-vconsole-setup.service systemd-vconsole-setup.service )
INSTALL_DATA_HOOKS += \
vconsole-install-data-hook
MANPAGES += \
man/vconsole.conf.5
EXTRA_DIST += \
units/systemd-vconsole-setup.service.in
e n d i f
# ------------------------------------------------------------------------------
i f E N A B L E _ R E A D A H E A D
systemd_readahead_collect_SOURCES = \
src/readahead/readahead-collect.c \
src/readahead/readahead-common.c
systemd_readahead_collect_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la \
$( UDEV_LIBS)
systemd_readahead_collect_CFLAGS = \
$( AM_CFLAGS) \
$( UDEV_CFLAGS)
systemd_readahead_replay_SOURCES = \
src/readahead/readahead-replay.c \
src/readahead/readahead-common.c
systemd_readahead_replay_CFLAGS = \
$( AM_CFLAGS) \
$( UDEV_CFLAGS)
systemd_readahead_replay_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la \
$( UDEV_LIBS)
rootlibexec_PROGRAMS += \
systemd-readahead-collect \
systemd-readahead-replay
dist_systemunit_DATA += \
units/systemd-readahead-done.timer
nodist_systemunit_DATA += \
units/systemd-readahead-collect.service \
units/systemd-readahead-replay.service \
units/systemd-readahead-done.service
EXTRA_DIST += \
2012-01-05 19:01:58 +04:00
src/systemd/sd-readahead.h \
2011-12-31 22:35:52 +04:00
src/readahead/readahead-common.h \
units/systemd-readahead-collect.service.in \
units/systemd-readahead-replay.service.in \
units/systemd-readahead-done.service.in
MANPAGES += \
man/sd_readahead.3 \
man/sd-readahead.7
e n d i f
2012-01-02 20:07:00 +04:00
# ------------------------------------------------------------------------------
i f E N A B L E _ Q U O T A C H E C K
rootlibexec_PROGRAMS += \
systemd-quotacheck
nodist_systemunit_DATA += \
units/quotacheck.service
EXTRA_DIST += \
units/quotacheck.service.in
systemd_quotacheck_SOURCES = \
src/quotacheck.c
systemd_quotacheck_LDADD = \
libsystemd-basic.la
e n d i f
# ------------------------------------------------------------------------------
i f E N A B L E _ R A N D O M S E E D
rootlibexec_PROGRAMS += \
systemd-random-seed
nodist_systemunit_DATA += \
units/systemd-random-seed-save.service \
units/systemd-random-seed-load.service
EXTRA_DIST += \
units/systemd-random-seed-save.service.in \
units/systemd-random-seed-load.service.in
systemd_random_seed_SOURCES = \
src/random-seed.c
systemd_random_seed_LDADD = \
libsystemd-basic.la
randomseed-install-data-hook :
2012-01-04 22:01:58 +04:00
$( MKDIR_P) -m 0755 \
$( DESTDIR) $( systemunitdir) /shutdown.target.wants \
$( DESTDIR) $( systemunitdir) /sysinit.target.wants
2012-01-02 20:07:00 +04:00
( cd $( DESTDIR) $( systemunitdir) /shutdown.target.wants && \
rm -f systemd-random-seed-save.service && \
$( LN_S) ../systemd-random-seed-save.service systemd-random-seed-save.service )
( cd $( DESTDIR) $( systemunitdir) /sysinit.target.wants && \
rm -f systemd-random-seed-load.service && \
$( LN_S) ../systemd-random-seed-load.service systemd-random-seed-load.service )
INSTALL_DATA_HOOKS += \
randomseed-install-data-hook
e n d i f
2011-12-31 22:59:09 +04:00
# ------------------------------------------------------------------------------
i f H A V E _ L I B C R Y P T S E T U P
rootlibexec_PROGRAMS += \
systemd-cryptsetup
systemgenerator_PROGRAMS += \
systemd-cryptsetup-generator
dist_systemunit_DATA += \
units/cryptsetup.target
systemd_cryptsetup_SOURCES = \
src/cryptsetup/cryptsetup.c \
src/ask-password-api.c
systemd_cryptsetup_CFLAGS = \
$( AM_CFLAGS) \
$( LIBCRYPTSETUP_CFLAGS) \
$( UDEV_CFLAGS)
systemd_cryptsetup_LDADD = \
$( LIBCRYPTSETUP_LIBS) \
$( UDEV_LIBS) \
libsystemd-basic.la
systemd_cryptsetup_generator_SOURCES = \
src/cryptsetup/cryptsetup-generator.c \
src/unit-name.c
systemd_cryptsetup_generator_LDADD = \
libsystemd-basic.la
cryptsetup-install-data-hook :
2012-01-04 22:01:58 +04:00
$( MKDIR_P) -m 0755 \
$( DESTDIR) $( systemunitdir) /sysinit.target.wants
2011-12-31 22:59:09 +04:00
( cd $( DESTDIR) $( systemunitdir) /sysinit.target.wants && \
rm -f cryptsetup.target && \
$( LN_S) ../cryptsetup.target cryptsetup.target )
INSTALL_DATA_HOOKS += \
cryptsetup-install-data-hook
e n d i f
2011-12-31 12:17:48 +04:00
# ------------------------------------------------------------------------------
i f E N A B L E _ H O S T N A M E D
systemd_hostnamed_SOURCES = \
src/hostname/hostnamed.c \
src/dbus-common.c \
src/polkit.c
systemd_hostnamed_CFLAGS = \
2010-10-19 23:19:12 +04:00
$( AM_CFLAGS) \
$( DBUS_CFLAGS)
2011-12-31 12:17:48 +04:00
systemd_hostnamed_LDADD = \
2010-10-19 23:19:12 +04:00
libsystemd-basic.la \
2011-12-31 12:17:48 +04:00
libsystemd-daemon.la \
2010-10-19 23:19:12 +04:00
$( DBUS_LIBS)
2011-12-31 12:17:48 +04:00
rootlibexec_PROGRAMS += \
systemd-hostnamed
2010-10-19 23:19:12 +04:00
2011-12-31 12:17:48 +04:00
nodist_systemunit_DATA += \
units/systemd-hostnamed.service
2010-10-08 00:38:40 +04:00
2011-12-31 12:17:48 +04:00
dist_dbuspolicy_DATA += \
src/hostname/org.freedesktop.hostname1.conf
2010-11-08 08:31:09 +03:00
2011-12-31 12:17:48 +04:00
dist_dbussystemservice_DATA += \
src/hostname/org.freedesktop.hostname1.service
2010-11-08 08:31:09 +03:00
2011-12-31 12:17:48 +04:00
polkitpolicy_in_files += \
src/hostname/org.freedesktop.hostname1.policy.in
2010-11-08 08:31:09 +03:00
2011-12-31 12:17:48 +04:00
dbusinterface_DATA += \
org.freedesktop.hostname1.xml
2010-11-08 08:43:33 +03:00
2011-12-31 12:17:48 +04:00
org.freedesktop.hostname1.xml : systemd -hostnamed
$( AM_V_GEN) $( LIBTOOL) --mode= execute $( OBJCOPY) -O binary -j introspect.hostname1 $< $@ .tmp && \
$( STRINGS) $@ .tmp | $( AWK) -f $( srcdir) /introspect.awk | \
$( DBUS_PREPROCESS) -o $@ - && rm $@ .tmp
hostnamed-install-data-hook :
( cd $( DESTDIR) $( systemunitdir) && \
rm -f dbus-org.freedesktop.hostname1.service && \
$( LN_S) systemd-hostnamed.service dbus-org.freedesktop.hostname1.service )
INSTALL_DATA_HOOKS += \
hostnamed-install-data-hook
EXTRA_DIST += \
units/systemd-hostnamed.service.in
e n d i f
# ------------------------------------------------------------------------------
i f E N A B L E _ L O C A L E D
systemd_localed_SOURCES = \
src/locale/localed.c \
src/dbus-common.c \
src/polkit.c
systemd_localed_CFLAGS = \
2010-11-08 08:43:33 +03:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
$( DBUS_CFLAGS)
2010-11-08 08:43:33 +03:00
2011-12-31 12:17:48 +04:00
systemd_localed_LDADD = \
2010-11-08 08:43:33 +03:00
libsystemd-basic.la \
2011-12-31 12:17:48 +04:00
libsystemd-daemon.la \
$( DBUS_LIBS)
2011-02-21 23:48:59 +03:00
2011-12-31 12:17:48 +04:00
nodist_systemunit_DATA += \
units/systemd-localed.service
2011-02-21 23:48:59 +03:00
2011-12-31 12:17:48 +04:00
rootlibexec_PROGRAMS += \
systemd-localed
2011-02-21 23:48:59 +03:00
2011-12-31 12:17:48 +04:00
dist_dbuspolicy_DATA += \
src/locale/org.freedesktop.locale1.conf
2010-11-08 07:02:45 +03:00
2011-12-31 12:17:48 +04:00
dist_dbussystemservice_DATA += \
src/locale/org.freedesktop.locale1.service
2010-11-08 07:02:45 +03:00
2011-12-31 12:17:48 +04:00
polkitpolicy_in_files += \
src/locale/org.freedesktop.locale1.policy.in
2010-11-08 07:02:45 +03:00
2011-12-31 12:17:48 +04:00
dbusinterface_DATA += \
org.freedesktop.locale1.xml
2010-11-08 07:02:45 +03:00
2011-12-31 12:17:48 +04:00
org.freedesktop.locale1.xml : systemd -localed
$( AM_V_GEN) $( LIBTOOL) --mode= execute $( OBJCOPY) -O binary -j introspect.locale1 $< $@ .tmp && \
$( STRINGS) $@ .tmp | $( AWK) -f $( srcdir) /introspect.awk | \
$( DBUS_PREPROCESS) -o $@ - && rm $@ .tmp
2010-11-08 07:02:45 +03:00
2011-12-31 12:17:48 +04:00
localed-install-data-hook :
( cd $( DESTDIR) $( systemunitdir) && \
rm -f dbus-org.freedesktop.locale1.service && \
$( LN_S) systemd-localed.service dbus-org.freedesktop.locale1.service )
2010-11-08 07:02:45 +03:00
2011-12-31 12:17:48 +04:00
INSTALL_DATA_HOOKS += \
localed-install-data-hook
2011-03-15 02:44:13 +03:00
2011-12-31 12:17:48 +04:00
EXTRA_DIST += \
units/systemd-localed.service.in
2012-01-02 19:50:03 +04:00
dist_pkgdata_DATA = \
src/locale/kbd-model-map
dist_noinst_SCRIPT = \
src/locale/generate-kbd-model-map
update-kbd-model-map :
src/locale/generate-kbd-model-map > src/locale/kbd-model-map
2011-12-31 12:17:48 +04:00
e n d i f
2011-03-15 02:44:13 +03:00
2011-12-31 12:17:48 +04:00
# ------------------------------------------------------------------------------
i f E N A B L E _ T I M E D A T E D
systemd_timedated_SOURCES = \
src/timedate/timedated.c \
src/dbus-common.c \
src/polkit.c
2011-03-15 02:44:13 +03:00
2011-12-31 12:17:48 +04:00
systemd_timedated_CFLAGS = \
$( AM_CFLAGS) \
$( DBUS_CFLAGS)
2011-12-02 13:18:46 +04:00
2011-12-31 12:17:48 +04:00
systemd_timedated_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la \
$( DBUS_LIBS)
2011-12-02 13:18:46 +04:00
2011-12-31 12:17:48 +04:00
rootlibexec_PROGRAMS += \
systemd-timedated
2011-12-02 13:18:46 +04:00
2011-12-31 12:17:48 +04:00
dist_dbussystemservice_DATA += \
src/timedate/org.freedesktop.timedate1.service
2010-10-08 00:38:40 +04:00
2011-12-31 12:17:48 +04:00
dist_dbuspolicy_DATA += \
src/timedate/org.freedesktop.timedate1.conf
2010-10-08 00:38:40 +04:00
2011-12-31 12:17:48 +04:00
nodist_systemunit_DATA += \
units/systemd-timedated.service
2010-08-19 04:03:03 +04:00
2011-12-31 12:17:48 +04:00
polkitpolicy_in_files += \
src/timedate/org.freedesktop.timedate1.policy.in
2010-09-16 02:36:41 +04:00
2011-12-31 12:17:48 +04:00
org.freedesktop.timedate1.xml : systemd -timedated
$( AM_V_GEN) $( LIBTOOL) --mode= execute $( OBJCOPY) -O binary -j introspect.timedate1 $< $@ .tmp && \
$( STRINGS) $@ .tmp | $( AWK) -f $( srcdir) /introspect.awk | \
$( DBUS_PREPROCESS) -o $@ - && rm $@ .tmp
2010-09-16 02:36:41 +04:00
2011-12-31 12:17:48 +04:00
dbusinterface_DATA += \
org.freedesktop.timedate1.xml
2010-09-16 02:36:41 +04:00
2011-12-31 12:17:48 +04:00
timedated-install-data-hook :
( cd $( DESTDIR) $( systemunitdir) && \
rm -f dbus-org.freedesktop.timedate1.service && \
$( LN_S) systemd-timedated.service dbus-org.freedesktop.timedate1.service )
2010-08-20 05:26:15 +04:00
2011-12-31 12:17:48 +04:00
INSTALL_DATA_HOOKS += \
timedated-install-data-hook
2010-08-20 05:26:15 +04:00
2011-12-31 12:17:48 +04:00
EXTRA_DIST += \
units/systemd-timedated.service.in
e n d i f
2010-08-20 05:26:15 +04:00
2011-12-31 12:17:48 +04:00
# ------------------------------------------------------------------------------
i f E N A B L E _ L O G I N D
systemd_logind_SOURCES = \
src/login/logind.c \
src/login/logind-dbus.c \
src/login/logind-device.c \
src/login/logind-seat.c \
src/login/logind-seat-dbus.c \
src/login/logind-session.c \
src/login/logind-session-dbus.c \
src/login/logind-user.c \
src/login/logind-user-dbus.c \
src/dbus-common.c \
src/dbus-loop.c \
src/cgroup-util.c \
src/polkit.c
2010-03-31 18:29:55 +04:00
2011-12-31 12:17:48 +04:00
nodist_systemd_logind_SOURCES = \
src/login/logind-gperf.c
2010-03-31 18:29:55 +04:00
2011-12-31 12:17:48 +04:00
i f H A V E _ A C L
systemd_logind_SOURCES += \
src/login/logind-acl.c \
src/acl-util.c
e n d i f
2010-03-31 18:29:55 +04:00
2011-12-31 12:17:48 +04:00
systemd_logind_CFLAGS = \
$( AM_CFLAGS) \
$( DBUS_CFLAGS) \
$( UDEV_CFLAGS) \
$( ACL_CFLAGS)
2010-08-21 05:57:47 +04:00
2011-12-31 12:17:48 +04:00
systemd_logind_LDADD = \
2010-11-26 22:25:00 +03:00
libsystemd-basic.la \
2011-12-31 12:17:48 +04:00
libsystemd-daemon.la \
$( DBUS_LIBS) \
$( UDEV_LIBS) \
$( ACL_LIBS)
2010-08-21 05:57:47 +04:00
2011-12-31 22:44:52 +04:00
systemd_user_sessions_SOURCES = \
src/login/user-sessions.c \
src/cgroup-util.c
systemd_user_sessions_LDADD = \
libsystemd-basic.la
2011-12-31 12:17:48 +04:00
rootlibexec_PROGRAMS += \
2011-12-31 22:44:52 +04:00
systemd-logind \
systemd-user-sessions
2011-12-31 12:17:48 +04:00
systemd_loginctl_SOURCES = \
src/login/loginctl.c \
2010-07-08 08:08:32 +04:00
src/dbus-common.c \
2010-07-11 02:50:49 +04:00
src/cgroup-show.c \
2010-08-19 05:18:49 +04:00
src/cgroup-util.c \
2011-12-31 06:59:54 +04:00
src/pager.c \
2011-12-31 12:17:48 +04:00
src/sysfs-show.c
2010-06-18 02:44:57 +04:00
2011-12-31 12:17:48 +04:00
systemd_loginctl_CFLAGS = \
2010-06-18 02:44:57 +04:00
$( AM_CFLAGS) \
2011-12-31 12:17:48 +04:00
$( DBUS_CFLAGS) \
$( UDEV_CFLAGS)
2010-06-15 04:51:55 +04:00
2011-12-31 12:17:48 +04:00
systemd_loginctl_LDADD = \
2010-06-18 02:44:57 +04:00
libsystemd-basic.la \
2011-12-31 12:17:48 +04:00
$( DBUS_LIBS) \
$( UDEV_LIBS)
2010-06-15 04:51:55 +04:00
2011-12-31 12:17:48 +04:00
rootbin_PROGRAMS += \
systemd-loginctl
2010-06-18 02:44:57 +04:00
2011-12-31 12:17:48 +04:00
test_login_SOURCES = \
src/login/test-login.c
test_login_LDADD = \
2010-11-26 22:25:00 +03:00
libsystemd-basic.la \
2011-12-31 12:17:48 +04:00
libsystemd-login.la
2010-06-18 00:50:06 +04:00
2011-12-31 12:17:48 +04:00
noinst_PROGRAMS += \
test-login
2010-09-17 03:26:29 +04:00
2011-12-31 12:17:48 +04:00
libsystemd_login_la_SOURCES = \
src/login/sd-login.c \
src/cgroup-util.c
2010-09-17 03:26:29 +04:00
2011-12-31 12:17:48 +04:00
libsystemd_login_la_CFLAGS = \
$( AM_CFLAGS) \
-fvisibility= hidden
2010-09-17 03:26:29 +04:00
2011-12-31 12:17:48 +04:00
libsystemd_login_la_LDFLAGS = \
-shared \
-version-info $( LIBSYSTEMD_LOGIN_CURRENT) :$( LIBSYSTEMD_LOGIN_REVISION) :$( LIBSYSTEMD_LOGIN_AGE) \
-Wl,--version-script= $( top_srcdir) /src/login/libsystemd-login.sym
libsystemd_login_la_LIBADD = \
2010-09-17 03:26:29 +04:00
libsystemd-basic.la
2011-12-31 12:17:48 +04:00
i f H A V E _ P A M
pam_systemd_la_SOURCES = \
2011-12-31 21:06:21 +04:00
src/login/pam-module.c \
2011-12-31 12:17:48 +04:00
src/dbus-common.c
2010-09-23 17:01:41 +04:00
2011-12-31 12:17:48 +04:00
pam_systemd_la_CFLAGS = \
$( AM_CFLAGS) \
$( PAM_CFLAGS) \
$( DBUS_CFLAGS) \
-fvisibility= hidden
2010-09-23 17:01:41 +04:00
2011-12-31 12:17:48 +04:00
pam_systemd_la_LDFLAGS = \
-module \
-export-dynamic \
-avoid-version \
-shared \
-export-symbols-regex '^pam_sm_.*'
pam_systemd_la_LIBADD = \
2010-09-23 17:01:41 +04:00
libsystemd-basic.la \
2010-11-26 22:25:00 +03:00
libsystemd-daemon.la \
2011-12-31 12:17:48 +04:00
$( PAM_LIBS) \
$( DBUS_LIBS)
2010-09-23 17:01:41 +04:00
2011-12-31 12:17:48 +04:00
pamlib_LTLIBRARIES = \
pam_systemd.la
e n d i f
2010-09-23 17:01:41 +04:00
2011-12-31 12:17:48 +04:00
# move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
libsystemd-login-install-hook :
if test " $( libdir) " != " $( rootlibdir) " ; then \
mkdir -p $( DESTDIR) $( rootlibdir) && \
so_img_name = $$ ( readlink $( DESTDIR) $( libdir) /libsystemd-login.so) && \
so_img_rel_target_prefix = $$ ( echo $( libdir) | sed 's,\(^/\|\)[^/][^/]*,..,g' ) && \
ln -sf $$ so_img_rel_target_prefix$( rootlibdir) /$$ so_img_name $( DESTDIR) $( libdir) /libsystemd-login.so && \
mv $( DESTDIR) $( libdir) /libsystemd-login.so.* $( DESTDIR) $( rootlibdir) ; \
fi
2010-09-23 17:01:41 +04:00
2011-12-31 12:17:48 +04:00
INSTALL_EXEC_HOOKS += \
libsystemd-login-install-hook
2010-07-08 23:01:42 +04:00
2011-12-31 12:17:48 +04:00
libsystemd-login-uninstall-hook :
rm -f $( DESTDIR) $( rootlibdir) /libsystemd-login.so*
2010-07-11 02:50:49 +04:00
2011-12-31 12:17:48 +04:00
UNINSTALL_EXEC_HOOKS += \
libsystemd-login-uninstall-hook
2010-07-08 23:01:42 +04:00
2011-12-31 12:17:48 +04:00
nodist_systemunit_DATA += \
2011-12-31 22:44:52 +04:00
units/systemd-logind.service \
units/systemd-user-sessions.service
2011-03-14 04:40:36 +03:00
2011-12-31 12:17:48 +04:00
dist_dbussystemservice_DATA += \
src/login/org.freedesktop.login1.service
2011-03-14 04:40:36 +03:00
2011-12-31 12:17:48 +04:00
dist_dbuspolicy_DATA += \
src/login/org.freedesktop.login1.conf
2011-03-14 04:40:36 +03:00
2011-12-31 12:17:48 +04:00
dist_pkgsysconf_DATA += \
src/login/systemd-logind.conf
2011-03-12 03:03:13 +03:00
2011-12-31 12:17:48 +04:00
pkginclude_HEADERS += \
2012-01-05 19:01:58 +04:00
src/systemd/sd-login.h
2011-03-12 03:03:13 +03:00
2011-12-31 12:17:48 +04:00
lib_LTLIBRARIES += \
libsystemd-login.la
2010-02-03 16:21:48 +03:00
2011-12-31 12:17:48 +04:00
pkgconfiglib_DATA += \
2011-12-31 16:37:23 +04:00
src/login/libsystemd-login.pc
2010-06-16 03:58:50 +04:00
2011-12-31 12:17:48 +04:00
polkitpolicy_in_files += \
src/login/org.freedesktop.login1.policy.in
2010-06-16 03:58:50 +04:00
2011-12-31 12:17:48 +04:00
logind-install-data-hook :
2012-01-04 22:01:58 +04:00
$( MKDIR_P) -m 0755 \
$( DESTDIR) $( systemunitdir) /multi-user.target.wants
2011-12-31 12:17:48 +04:00
( cd $( DESTDIR) $( systemunitdir) && \
rm -f dbus-org.freedesktop.login1.service && \
$( LN_S) systemd-logind.service dbus-org.freedesktop.login1.service)
( cd $( DESTDIR) $( systemunitdir) /multi-user.target.wants && \
2011-12-31 22:44:52 +04:00
rm -f systemd-logind.service systemd-user-sessions.service && \
$( LN_S) ../systemd-logind.service systemd-logind.service && \
$( LN_S) ../systemd-user-sessions.service systemd-user-sessions.service )
2010-02-05 02:38:41 +03:00
2011-12-31 12:17:48 +04:00
INSTALL_DATA_HOOKS += \
logind-install-data-hook
2010-09-17 03:26:29 +04:00
2011-12-31 12:17:48 +04:00
systemd_uaccess_SOURCES = \
src/login/uaccess.c
2010-09-17 03:26:29 +04:00
2011-12-31 12:17:48 +04:00
i f H A V E _ A C L
systemd_uaccess_SOURCES += \
src/login/logind-acl.c \
src/acl-util.c
2010-11-26 19:59:53 +03:00
e n d i f
2010-09-17 03:26:29 +04:00
2011-12-31 12:17:48 +04:00
systemd_uaccess_CFLAGS = \
$( AM_CFLAGS) \
$( UDEV_CFLAGS) \
$( ACL_CFLAGS)
2010-09-17 03:26:29 +04:00
2011-12-31 12:17:48 +04:00
systemd_uaccess_LDADD = \
libsystemd-basic.la \
libsystemd-daemon.la \
libsystemd-login.la \
$( UDEV_LIBS) \
$( ACL_LIBS)
2010-10-25 22:35:17 +04:00
2011-12-31 12:17:48 +04:00
rootlibexec_PROGRAMS += \
systemd-uaccess
2010-10-25 22:35:17 +04:00
2011-12-31 12:17:48 +04:00
dist_udevrules_DATA += \
src/70-uaccess.rules
2011-07-15 01:06:31 +04:00
2011-12-31 12:17:48 +04:00
MANPAGES += \
man/systemd-logind.conf.5 \
man/sd-login.7 \
man/systemd-loginctl.1 \
2011-12-31 19:55:36 +04:00
man/sd_login_monitor_new.3 \
man/sd_pid_get_session.3 \
man/sd_uid_get_state.3 \
man/sd_session_is_active.3 \
man/sd_seat_get_active.3 \
man/sd_get_seats.3
2011-07-15 00:50:01 +04:00
2011-12-31 12:17:48 +04:00
MANPAGES_ALIAS += \
man/sd_login_monitor_unref.3 \
man/sd_login_monitor_flush.3 \
2011-12-31 19:55:36 +04:00
man/sd_login_monitor_get_fd.3 \
man/sd_session_get_uid.3 \
man/sd_session_get_seat.3 \
man/sd_pid_get_owner_uid.3 \
2012-01-04 18:35:30 +04:00
man/sd_pid_get_unit.3 \
2011-12-31 19:55:36 +04:00
man/sd_uid_is_on_seat.3 \
man/sd_uid_get_sessions.3 \
man/sd_uid_get_seats.3 \
man/sd_seat_get_sessions.3 \
man/sd_seat_can_multi_session.3 \
man/sd_get_sessions.3 \
man/sd_get_uids.3
2011-07-15 00:50:01 +04:00
2011-12-31 12:17:48 +04:00
man/sd_login_monitor_unref.3 : man /sd_login_monitor_new .3
man/sd_login_monitor_flush.3 : man /sd_login_monitor_new .3
man/sd_login_monitor_get_fd.3 : man /sd_login_monitor_new .3
2011-12-31 19:55:36 +04:00
man/sd_session_get_uid.3 : man /sd_session_is_active .3
man/sd_session_get_seat.3 : man /sd_session_is_active .3
man/sd_pid_get_owner_uid.3 : man /sd_pid_get_session .3
2012-01-04 18:35:30 +04:00
man/sd_pid_get_unit.3 : man /sd_pid_get_session .3
2011-12-31 19:55:36 +04:00
man/sd_uid_is_on_seat.3 : man /sd_uid_get_state .3
man/sd_uid_get_sessions.3 : man /sd_uid_get_state .3
man/sd_uid_get_seats.3 : man /sd_uid_get_state .3
man/sd_seat_get_sessions.3 : man /sd_seat_get_active .3
man/sd_seat_can_multi_session.3 : man /sd_seat_get_active .3
man/sd_get_sessions.3 : man /sd_get_seats .3
man/sd_get_uids.3 : man /sd_get_seats .3
2011-07-15 03:31:06 +04:00
2011-12-31 12:17:48 +04:00
EXTRA_DIST += \
src/login/logind-gperf.gperf \
units/systemd-logind.service.in \
2011-12-31 22:44:52 +04:00
units/systemd-user-sessions.service.in \
2011-12-31 19:15:38 +04:00
src/login/libsystemd-login.pc.in \
2011-12-31 12:17:48 +04:00
src/login/libsystemd-login.sym \
src/login/logind.h \
src/login/logind-device.h \
src/login/logind-seat.h \
src/login/logind-session.h \
src/login/logind-user.h \
src/login/logind-acl.h
CLEANFILES += \
src/login/logind-gperf.c
e n d i f
# ------------------------------------------------------------------------------
2011-07-15 03:31:06 +04:00
2010-05-17 03:34:36 +04:00
SED_PROCESS = \
2010-05-18 01:02:28 +04:00
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
2011-12-31 22:59:09 +04:00
$( SED) -e 's,@rootlibexecdir\@,$(rootlibexecdir),g' \
2011-04-04 00:09:25 +04:00
-e 's,@rootbindir\@,$(rootbindir),g' \
-e 's,@bindir\@,$(bindir),g' \
2010-06-02 17:51:38 +04:00
-e 's,@SYSTEMCTL\@,$(rootbindir)/systemctl,g' \
2010-09-29 04:52:22 +04:00
-e 's,@SYSTEMD_NOTIFY\@,$(rootbindir)/systemd-notify,g' \
2010-06-22 01:27:18 +04:00
-e 's,@pkgsysconfdir\@,$(pkgsysconfdir),g' \
-e 's,@pkgdatadir\@,$(pkgdatadir),g' \
2011-04-05 04:19:42 +04:00
-e 's,@pkglibexecdir\@,$(pkglibexecdir),g' \
2010-06-22 01:27:18 +04:00
-e 's,@systemunitdir\@,$(systemunitdir),g' \
2011-04-04 17:22:58 +04:00
-e 's,@userunitdir\@,$(userunitdir),g' \
2010-06-22 01:27:18 +04:00
-e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' \
-e 's,@PACKAGE_NAME\@,$(PACKAGE_NAME),g' \
-e 's,@PACKAGE_URL\@,$(PACKAGE_URL),g' \
-e 's,@prefix\@,$(prefix),g' \
2011-07-15 00:50:01 +04:00
-e 's,@exec_prefix\@,$(exec_prefix),g' \
-e 's,@libdir\@,$(libdir),g' \
-e 's,@includedir\@,$(includedir),g' \
2010-10-29 06:09:36 +04:00
< $< > $@ || rm $@
2010-04-13 07:18:12 +04:00
2010-05-18 00:45:52 +04:00
units/% : units /%.in Makefile
2010-05-17 03:34:36 +04:00
$( SED_PROCESS)
2010-05-18 01:28:54 +04:00
man/% : man /%.in Makefile
2010-05-17 03:34:36 +04:00
$( SED_PROCESS)
2012-01-14 03:37:35 +04:00
sysctl.d/% : sysctl .d /%.in Makefile
$( SED_PROCESS)
2010-05-17 03:34:36 +04:00
2010-06-22 01:27:18 +04:00
%.pc : %.pc .in Makefile
$( SED_PROCESS)
2011-07-12 03:11:27 +04:00
src/%.policy.in : src /%.policy .in .in Makefile
2011-03-12 03:15:30 +03:00
$( SED_PROCESS)
2011-06-29 06:14:43 +04:00
src/%.rules : src /%.rules .in Makefile
$( SED_PROCESS)
2011-08-01 02:43:05 +04:00
src/%.c : src /%.gperf
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
$( GPERF) < $< > $@
src/% : src /%.m 4
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
$( M4) -P $( M4_DEFINES) < $< > $@ || rm $@
src/load-fragment-gperf-nulstr.c : src /load -fragment -gperf .gperf
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
2011-12-31 06:59:54 +04:00
$( AWK) 'BEGIN{ keywords=0 ; FS="," ; print "extern const char load_fragment_gperf_nulstr[];" ; print "const char load_fragment_gperf_nulstr[] ="} ; keyword==1 { print "\"" $$1 "\\0\"" } ; /%%/ { keyword=1} ; END { print ";" }' < $< > $@ || rm $@
2011-08-01 02:43:05 +04:00
2010-05-17 04:17:22 +04:00
M4_PROCESS_SYSTEM = \
2010-05-18 01:02:28 +04:00
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
2011-08-01 02:43:05 +04:00
$( M4) -P $( M4_DEFINES) -DFOR_SYSTEM= 1 < $< > $@ || rm $@
2010-05-17 04:17:22 +04:00
2010-11-16 00:12:41 +03:00
M4_PROCESS_USER = \
2010-05-18 01:02:28 +04:00
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
2011-08-01 02:43:05 +04:00
$( M4) -P $( M4_DEFINES) -DFOR_USER= 1 < $< > $@ || rm $@
2010-05-17 03:34:36 +04:00
2010-05-18 00:45:52 +04:00
units/% : units /%.m 4 Makefile
2010-05-17 04:17:22 +04:00
$( M4_PROCESS_SYSTEM)
2010-05-17 03:34:36 +04:00
2010-11-16 00:12:41 +03:00
units/user/% : units /%.m 4 Makefile
$( M4_PROCESS_USER)
2010-05-16 23:12:12 +04:00
2011-12-31 09:02:42 +04:00
CLEANFILES += \
2010-06-24 06:22:22 +04:00
$( nodist_systemunit_DATA) \
2010-11-16 00:12:41 +03:00
$( nodist_userunit_DATA) \
2010-06-24 06:22:22 +04:00
$( nodist_man_MANS) \
${ XML_IN_FILES : .xml.in=.html } \
2011-03-12 16:31:44 +03:00
$( pkgconfigdata_DATA) \
2011-07-27 23:11:24 +04:00
$( pkgconfiglib_DATA) \
2011-07-12 03:11:27 +04:00
$( nodist_polkitpolicy_DATA) \
2011-12-31 06:59:54 +04:00
src/73-seat-late.rules \
src/99-systemd.rules \
src/load-fragment-gperf.gperf \
src/load-fragment-gperf.c \
2011-12-31 09:02:42 +04:00
src/load-fragment-gperf-nulstr.c
2010-05-14 04:50:19 +04:00
2010-05-18 02:28:39 +04:00
i f H A V E _ V A L A C
CLEANFILES += \
2010-06-24 06:22:22 +04:00
${ systemadm_SOURCES : .vala=.c }
2010-05-18 02:28:39 +04:00
e n d i f
2010-05-18 01:29:10 +04:00
i f H A V E _ X S L T P R O C
2010-06-23 04:26:15 +04:00
XSLTPROC_FLAGS = \
--nonet \
2011-12-19 23:25:52 +04:00
--stringparam funcsynopsis.style ansi
2010-06-23 04:26:15 +04:00
2010-05-18 00:45:52 +04:00
XSLTPROC_PROCESS_MAN = \
2010-05-18 01:02:28 +04:00
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
2010-06-23 04:26:15 +04:00
$( XSLTPROC) -o $@ $( XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
2010-05-16 01:06:41 +04:00
2010-05-18 00:45:52 +04:00
XSLTPROC_PROCESS_MAN_IN = \
2010-05-18 01:02:28 +04:00
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
2010-06-23 04:26:15 +04:00
$( XSLTPROC) -o ${ @ : .in= } $( XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< && \
2010-05-18 00:45:52 +04:00
mv ${ @ : .in= } $@
XSLTPROC_PROCESS_HTML = \
2010-05-18 01:02:28 +04:00
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
2012-01-04 21:29:22 +04:00
$( XSLTPROC) -o $@ $( XSLTPROC_FLAGS) $( srcdir) /man/custom-html.xsl $<
2010-05-16 01:06:41 +04:00
2010-05-18 00:45:52 +04:00
XSLTPROC_PROCESS_HTML_IN = \
2010-05-18 01:02:28 +04:00
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
2012-01-04 21:29:22 +04:00
$( XSLTPROC) -o ${ @ : .in= } $( XSLTPROC_FLAGS) $( srcdir) /man/custom-html.xsl $< && \
2010-05-18 00:45:52 +04:00
mv ${ @ : .in= } $@
2010-06-24 06:22:22 +04:00
man/%.1 : man /%.xml
2010-06-23 02:31:54 +04:00
$( XSLTPROC_PROCESS_MAN)
2010-06-24 06:22:22 +04:00
man/%.1.in : man /%.xml .in
2010-06-23 02:31:54 +04:00
$( XSLTPROC_PROCESS_MAN)
2010-06-24 06:22:22 +04:00
man/%.3 : man /%.xml
2010-06-23 03:49:57 +04:00
$( XSLTPROC_PROCESS_MAN)
2010-06-24 06:22:22 +04:00
man/%.3.in : man /%.xml .in
2010-06-23 03:49:57 +04:00
$( XSLTPROC_PROCESS_MAN)
2010-05-18 00:45:52 +04:00
man/%.5 : man /%.xml
$( XSLTPROC_PROCESS_MAN)
man/%.5.in : man /%.xml .in
$( XSLTPROC_PROCESS_MAN)
man/%.7 : man /%.xml
$( XSLTPROC_PROCESS_MAN)
man/%.7.in : man /%.xml .in
$( XSLTPROC_PROCESS_MAN_IN)
2010-06-23 02:31:54 +04:00
man/%.8 : man /%.xml
$( XSLTPROC_PROCESS_MAN)
man/%.8.in : man /%.xml .in
$( XSLTPROC_PROCESS_MAN_IN)
2010-05-18 00:45:52 +04:00
man/%.html : man /%.xml
$( XSLTPROC_PROCESS_HTML)
man/%.html.in : man /%.xml .in
$( XSLTPROC_PROCESS_HTML_IN)
2010-05-16 01:06:41 +04:00
CLEANFILES += \
$( dist_man_MANS) \
2010-06-24 06:22:22 +04:00
${ nodist_man_MANS : =.in } \
${ XML_FILES : .xml=.html } \
${ XML_IN_FILES : .xml.in=.html.in }
2010-05-18 01:29:10 +04:00
e n d i f
2010-05-16 01:06:41 +04:00
2010-11-23 23:12:11 +03:00
DBUS_PREPROCESS = $( CPP) -P $( DBUS_CFLAGS) -imacros dbus/dbus-protocol.h
2010-05-23 05:45:33 +04:00
org.freedesktop.systemd1.%.xml : systemd
2011-07-15 01:06:31 +04:00
$( AM_V_GEN) $( LIBTOOL) --mode= execute $( OBJCOPY) -O binary -j introspect.$* $< $@ .tmp && \
2010-11-24 21:49:15 +03:00
$( STRINGS) $@ .tmp | $( AWK) -f $( srcdir) /introspect.awk | \
2010-11-23 23:12:11 +03:00
$( DBUS_PREPROCESS) -o $@ - && rm $@ .tmp
2010-05-23 05:45:33 +04:00
2010-06-24 06:22:22 +04:00
CLEANFILES += \
$( dbusinterface_DATA)
2010-05-23 05:45:33 +04:00
2011-12-31 09:02:42 +04:00
systemd-install-data-hook :
2011-03-31 20:17:29 +04:00
$( MKDIR_P) -m 0755 \
2011-04-04 00:09:25 +04:00
$( DESTDIR) $( tmpfilesdir) \
2011-04-25 23:38:21 +04:00
$( DESTDIR) $( sysconfdir) /tmpfiles.d \
2011-04-25 22:41:47 +04:00
$( DESTDIR) $( prefix) /lib/modules-load.d \
2011-04-25 23:38:21 +04:00
$( DESTDIR) $( sysconfdir) /modules-load.d \
2011-04-25 22:41:47 +04:00
$( DESTDIR) $( prefix) /lib/sysctl.d \
2011-04-25 23:38:21 +04:00
$( DESTDIR) $( sysconfdir) /sysctl.d \
2011-04-04 00:09:25 +04:00
$( DESTDIR) $( systemshutdowndir) \
$( DESTDIR) $( systemgeneratordir) \
$( DESTDIR) $( usergeneratordir)
2010-05-14 06:22:29 +04:00
$( MKDIR_P) -m 0755 \
2010-05-16 01:15:10 +04:00
$( DESTDIR) $( systemunitdir) \
2010-11-16 00:12:41 +03:00
$( DESTDIR) $( userunitdir) \
2010-10-29 04:42:10 +04:00
$( DESTDIR) $( systemunitdir) /sysinit.target.wants \
2010-05-17 03:34:36 +04:00
$( DESTDIR) $( systemunitdir) /sockets.target.wants \
2010-09-28 05:18:23 +04:00
$( DESTDIR) $( systemunitdir) /basic.target.wants \
2010-08-11 06:38:55 +04:00
$( DESTDIR) $( systemunitdir) /shutdown.target.wants \
2010-09-21 23:43:40 +04:00
$( DESTDIR) $( systemunitdir) /local-fs.target.wants \
2010-08-11 06:38:55 +04:00
$( DESTDIR) $( systemunitdir) /runlevel1.target.wants \
$( DESTDIR) $( systemunitdir) /runlevel2.target.wants \
$( DESTDIR) $( systemunitdir) /runlevel3.target.wants \
$( DESTDIR) $( systemunitdir) /runlevel4.target.wants \
$( DESTDIR) $( systemunitdir) /runlevel5.target.wants \
2010-09-22 14:49:17 +04:00
$( DESTDIR) $( systemunitdir) /multi-user.target.wants \
2010-10-28 21:27:48 +04:00
$( DESTDIR) $( systemunitdir) /graphical.target.wants \
2010-05-14 06:22:29 +04:00
$( DESTDIR) $( pkgsysconfdir) /system \
2010-10-29 04:42:10 +04:00
$( DESTDIR) $( pkgsysconfdir) /system/sysinit.target.wants \
2010-10-20 18:16:14 +04:00
$( DESTDIR) $( pkgsysconfdir) /system/local-fs.target.wants \
2010-05-17 03:34:36 +04:00
$( DESTDIR) $( pkgsysconfdir) /system/multi-user.target.wants \
2010-10-20 18:16:14 +04:00
$( DESTDIR) $( pkgsysconfdir) /system/getty.target.wants \
2010-11-16 00:12:41 +03:00
$( DESTDIR) $( pkgsysconfdir) /user \
2011-05-04 13:01:54 +04:00
$( DESTDIR) $( dbussessionservicedir) \
2010-05-18 01:29:24 +04:00
$( DESTDIR) $( sysconfdir) /xdg/systemd
2010-05-16 20:34:31 +04:00
( cd $( DESTDIR) $( sysconfdir) /xdg/systemd/ && \
2010-11-16 00:12:41 +03:00
rm -f user && \
$( LN_S) $( pkgsysconfdir) /user user )
2010-05-17 03:34:36 +04:00
( cd $( DESTDIR) $( systemunitdir) /sockets.target.wants && \
2012-01-06 06:11:17 +04:00
rm -f systemd-initctl.socket systemd-shutdownd.socket && \
2010-08-16 17:41:12 +04:00
$( LN_S) ../systemd-initctl.socket systemd-initctl.socket && \
2012-01-06 06:11:17 +04:00
$( LN_S) ../systemd-shutdownd.socket systemd-shutdownd.socket )
2010-08-11 06:38:55 +04:00
( cd $( DESTDIR) $( systemunitdir) /runlevel1.target.wants && \
rm -f systemd-update-utmp-runlevel.service && \
2010-09-22 14:49:17 +04:00
$( LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
2010-08-11 06:38:55 +04:00
( cd $( DESTDIR) $( systemunitdir) /runlevel2.target.wants && \
rm -f systemd-update-utmp-runlevel.service && \
2010-09-22 14:49:17 +04:00
$( LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
2010-08-11 06:38:55 +04:00
( cd $( DESTDIR) $( systemunitdir) /runlevel3.target.wants && \
rm -f systemd-update-utmp-runlevel.service && \
2010-09-22 14:49:17 +04:00
$( LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
2010-08-11 06:38:55 +04:00
( cd $( DESTDIR) $( systemunitdir) /runlevel4.target.wants && \
rm -f systemd-update-utmp-runlevel.service && \
2010-09-22 14:49:17 +04:00
$( LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
2010-08-11 06:38:55 +04:00
( cd $( DESTDIR) $( systemunitdir) /runlevel5.target.wants && \
rm -f systemd-update-utmp-runlevel.service && \
2010-09-22 14:49:17 +04:00
$( LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
2010-08-11 06:38:55 +04:00
( cd $( DESTDIR) $( systemunitdir) /shutdown.target.wants && \
2012-01-02 20:07:00 +04:00
rm -f systemd-update-utmp-shutdown.service && \
$( LN_S) ../systemd-update-utmp-shutdown.service systemd-update-utmp-shutdown.service )
2010-09-21 23:43:40 +04:00
( cd $( DESTDIR) $( systemunitdir) /local-fs.target.wants && \
2010-09-28 05:18:23 +04:00
rm -f systemd-remount-api-vfs.service \
2010-10-20 18:16:14 +04:00
fsck-root.service \
2010-09-28 05:18:23 +04:00
remount-rootfs.service \
var-run.mount \
2011-03-07 19:38:15 +03:00
media.mount && \
2010-09-28 05:18:23 +04:00
$( LN_S) ../systemd-remount-api-vfs.service systemd-remount-api-vfs.service && \
2010-10-20 18:16:14 +04:00
$( LN_S) ../fsck-root.service fsck-root.service && \
2010-09-28 05:18:23 +04:00
$( LN_S) ../remount-rootfs.service remount-rootfs.service && \
$( LN_S) ../var-run.mount var-run.mount && \
2011-03-07 19:38:15 +03:00
$( LN_S) ../media.mount media.mount )
2010-11-16 00:12:41 +03:00
( cd $( DESTDIR) $( userunitdir) && \
2011-06-15 17:54:50 +04:00
rm -f shutdown.target sockets.target bluetooth.target printer.target sound.target && \
2010-06-02 02:35:58 +04:00
$( LN_S) $( systemunitdir) /shutdown.target shutdown.target && \
$( LN_S) $( systemunitdir) /sockets.target sockets.target && \
2010-07-13 04:16:44 +04:00
$( LN_S) $( systemunitdir) /bluetooth.target bluetooth.target && \
2011-02-09 23:07:28 +03:00
$( LN_S) $( systemunitdir) /printer.target printer.target && \
$( LN_S) $( systemunitdir) /sound.target sound.target )
2010-05-17 03:34:36 +04:00
( cd $( DESTDIR) $( systemunitdir) && \
2010-08-13 21:13:25 +04:00
rm -f runlevel0.target runlevel1.target runlevel2.target runlevel3.target runlevel4.target runlevel5.target runlevel6.target && \
2010-05-17 03:34:36 +04:00
$( LN_S) poweroff.target runlevel0.target && \
$( LN_S) rescue.target runlevel1.target && \
2010-08-13 21:13:25 +04:00
$( LN_S) multi-user.target runlevel2.target && \
$( LN_S) multi-user.target runlevel3.target && \
$( LN_S) multi-user.target runlevel4.target && \
$( LN_S) graphical.target runlevel5.target && \
2010-05-17 03:34:36 +04:00
$( LN_S) reboot.target runlevel6.target )
2010-09-22 14:49:17 +04:00
( cd $( DESTDIR) $( systemunitdir) && \
2011-12-31 09:02:42 +04:00
rm -f default.target ctrl-alt-del.target autovt@.service && \
2010-09-22 14:49:17 +04:00
$( LN_S) graphical.target default.target && \
2011-04-16 04:02:54 +04:00
$( LN_S) reboot.target ctrl-alt-del.target && \
2011-12-31 06:59:54 +04:00
$( LN_S) getty@.service autovt@.service )
2010-09-22 15:31:53 +04:00
( cd $( DESTDIR) $( systemunitdir) /multi-user.target.wants && \
2011-12-31 22:44:52 +04:00
rm -f getty.target systemd-ask-password-wall.path && \
2010-10-08 01:48:48 +04:00
$( LN_S) ../getty.target getty.target && \
2011-12-31 09:02:42 +04:00
$( LN_S) ../systemd-ask-password-wall.path systemd-ask-password-wall.path)
2010-05-17 03:34:36 +04:00
( cd $( DESTDIR) $( pkgsysconfdir) /system/getty.target.wants && \
2011-06-28 02:26:10 +04:00
rm -f getty@tty1.service && \
$( LN_S) $( systemunitdir) /getty@.service getty@tty1.service )
2010-05-17 03:34:36 +04:00
( cd $( DESTDIR) $( pkgsysconfdir) /system/multi-user.target.wants && \
2010-09-22 15:31:53 +04:00
rm -f remote-fs.target && \
2010-06-04 20:43:40 +04:00
$( LN_S) $( systemunitdir) /remote-fs.target remote-fs.target )
2010-10-29 04:42:10 +04:00
( cd $( DESTDIR) $( systemunitdir) /sysinit.target.wants && \
2011-09-21 05:35:19 +04:00
rm -f dev-hugepages.mount \
2011-09-21 05:29:47 +04:00
dev-mqueue.mount \
2011-12-31 06:59:54 +04:00
sys-kernel-config.mount \
2011-09-21 05:20:28 +04:00
sys-kernel-debug.mount \
2011-09-21 05:26:37 +04:00
sys-kernel-security.mount \
2011-09-22 05:00:04 +04:00
sys-fs-fuse-connections.mount \
2010-09-21 23:25:44 +04:00
systemd-modules-load.service \
2010-10-19 00:38:41 +04:00
systemd-tmpfiles-setup.service \
2010-11-18 23:52:26 +03:00
systemd-sysctl.service \
2012-01-06 06:11:17 +04:00
systemd-ask-password-console.path && \
2011-09-21 05:35:19 +04:00
$( LN_S) ../dev-hugepages.mount dev-hugepages.mount && \
2011-09-21 05:29:47 +04:00
$( LN_S) ../dev-mqueue.mount dev-mqueue.mount && \
2011-12-31 06:59:54 +04:00
$( LN_S) ../sys-kernel-config.mount sys-kernel-config.mount && \
2011-09-21 05:20:28 +04:00
$( LN_S) ../sys-kernel-debug.mount sys-kernel-debug.mount && \
2011-09-21 05:26:37 +04:00
$( LN_S) ../sys-kernel-security.mount sys-kernel-security.mount && \
2011-09-22 05:00:04 +04:00
$( LN_S) ../sys-fs-fuse-connections.mount sys-fs-fuse-connections.mount && \
2010-09-22 14:49:17 +04:00
$( LN_S) ../systemd-modules-load.service systemd-modules-load.service && \
2010-10-19 00:38:41 +04:00
$( LN_S) ../systemd-tmpfiles-setup.service systemd-tmpfiles-setup.service && \
2010-11-18 23:52:26 +03:00
$( LN_S) ../systemd-sysctl.service systemd-sysctl.service && \
2012-01-06 06:11:17 +04:00
$( LN_S) ../systemd-ask-password-console.path systemd-ask-password-console.path )
2010-10-29 04:42:10 +04:00
( cd $( DESTDIR) $( systemunitdir) /basic.target.wants && \
rm -f systemd-tmpfiles-clean.timer && \
2010-10-19 00:38:41 +04:00
$( LN_S) ../systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.timer )
2010-06-07 06:14:39 +04:00
( cd $( DESTDIR) $( dbussessionservicedir) && \
rm -f org.freedesktop.systemd1.service && \
$( LN_S) ../system-services/org.freedesktop.systemd1.service org.freedesktop.systemd1.service )
2011-02-08 20:47:32 +03:00
i f H A V E _ P L Y M O U T H
2010-06-22 07:43:07 +04:00
$( MKDIR_P) -m 0755 \
2010-07-13 01:49:20 +04:00
$( DESTDIR) $( SYSTEM_SYSVINIT_PATH) \
2010-08-13 21:14:12 +04:00
$( DESTDIR) $( systemunitdir) /reboot.target.wants \
2010-10-29 04:42:10 +04:00
$( DESTDIR) $( systemunitdir) /kexec.target.wants \
2010-08-13 21:14:12 +04:00
$( DESTDIR) $( systemunitdir) /poweroff.target.wants \
2011-02-08 20:47:32 +03:00
$( DESTDIR) $( systemunitdir) /halt.target.wants
2010-10-29 04:42:10 +04:00
( cd $( DESTDIR) $( systemunitdir) /sysinit.target.wants && \
2010-11-18 07:22:25 +03:00
rm -f plymouth-start.service plymouth-read-write.service && \
2010-10-29 04:42:10 +04:00
$( LN_S) ../plymouth-start.service plymouth-start.service && \
2010-11-18 07:22:25 +03:00
$( LN_S) ../plymouth-read-write.service plymouth-read-write.service )
2010-10-31 01:55:54 +04:00
( cd $( DESTDIR) $( systemunitdir) /multi-user.target.wants && \
2011-02-24 04:32:50 +03:00
rm -f plymouth-quit.service plymouth-quit-wait.service && \
$( LN_S) ../plymouth-quit.service plymouth-quit.service && \
$( LN_S) ../plymouth-quit-wait.service plymouth-quit-wait.service )
2010-08-13 21:14:12 +04:00
( cd $( DESTDIR) $( systemunitdir) /reboot.target.wants && \
2010-08-13 04:19:24 +04:00
rm -f plymouth-reboot.service && \
2010-08-13 21:14:12 +04:00
$( LN_S) ../plymouth-reboot.service plymouth-reboot.service )
2010-10-29 04:42:10 +04:00
( cd $( DESTDIR) $( systemunitdir) /kexec.target.wants && \
rm -f plymouth-kexec.service && \
$( LN_S) ../plymouth-kexec.service plymouth-kexec.service )
2010-08-13 21:14:12 +04:00
( cd $( DESTDIR) $( systemunitdir) /poweroff.target.wants && \
2010-08-13 04:19:24 +04:00
rm -f plymouth-poweroff.service && \
2010-08-13 21:14:12 +04:00
$( LN_S) ../plymouth-poweroff.service plymouth-poweroff.service )
( cd $( DESTDIR) $( systemunitdir) /halt.target.wants && \
2010-08-13 04:19:24 +04:00
rm -f plymouth-halt.service && \
2010-08-13 21:14:12 +04:00
$( LN_S) ../plymouth-halt.service plymouth-halt.service )
2011-02-08 20:47:32 +03:00
e n d i f
2011-04-19 23:37:51 +04:00
i f T A R G E T _ M E E G O
$( MKDIR_P) -m 0755 $( DESTDIR) $( systemunitdir) /final.target.wants
( cd $( DESTDIR) $( systemunitdir) /multi-user.target.wants && \
rm -f network.target && \
$( LN_S) $( systemunitdir) /network.target network.target )
( cd $( DESTDIR) $( pkgsysconfdir) /system/sysinit.target.wants && \
rm -f * )
( cd $( DESTDIR) $( pkgsysconfdir) /system/local-fs.target.wants && \
rm -f * )
( cd $( DESTDIR) $( pkgsysconfdir) /system/multi-user.target.wants && \
rm -f * )
( cd $( DESTDIR) $( pkgsysconfdir) /system/getty.target.wants && \
rm -f * )
e n d i f
2011-02-08 20:47:32 +03:00
i f T A R G E T _ F E D O R A
$( MKDIR_P) -m 0755 $( DESTDIR) $( systemunitdir) /final.target.wants
( cd $( DESTDIR) $( systemunitdir) /final.target.wants && \
rm -f halt-local.service && \
$( LN_S) $( systemunitdir) /halt-local.service halt-local.service )
2010-05-17 03:34:36 +04:00
( cd $( DESTDIR) $( systemunitdir) && \
2011-03-18 06:41:47 +03:00
rm -f display-manager.service single.service && \
$( LN_S) prefdm.service display-manager.service && \
2011-04-04 00:09:25 +04:00
$( LN_S) rescue.service single.service )
2010-10-28 21:27:49 +04:00
( cd $( DESTDIR) $( systemunitdir) /graphical.target.wants && \
2010-10-29 04:42:10 +04:00
rm -f display-manager.service && \
$( LN_S) $( systemunitdir) /display-manager.service display-manager.service )
2010-05-21 01:54:59 +04:00
e n d i f
2011-03-08 21:47:29 +03:00
i f T A R G E T _ M A N D R I V A
$( MKDIR_P) -m 0755 $( DESTDIR) $( systemunitdir) /final.target.wants
( cd $( DESTDIR) $( systemunitdir) /final.target.wants && \
rm -f halt-local.service && \
$( LN_S) $( systemunitdir) /halt-local.service halt-local.service )
( cd $( DESTDIR) $( systemunitdir) && \
2011-03-18 19:32:49 +03:00
rm -f display-manager.service dm.service single.service && \
2011-03-18 06:41:47 +03:00
$( LN_S) prefdm.service display-manager.service && \
2011-03-18 19:32:49 +03:00
$( LN_S) prefdm.service dm.service && \
2011-04-04 00:09:25 +04:00
$( LN_S) rescue.service single.service )
2011-03-08 21:47:29 +03:00
( cd $( DESTDIR) $( systemunitdir) /graphical.target.wants && \
rm -f display-manager.service && \
$( LN_S) $( systemunitdir) /display-manager.service display-manager.service )
e n d i f
2010-10-25 17:22:28 +04:00
i f T A R G E T _ D E B I A N _ O R _ U B U N T U
2010-09-07 21:58:14 +04:00
( cd $( DESTDIR) $( systemunitdir) && \
rm -f runlevel5.target && \
$( LN_S) multi-user.target runlevel5.target )
2010-09-06 07:44:00 +04:00
e n d i f
2010-05-17 03:34:36 +04:00
2011-07-07 16:56:30 +04:00
i f T A R G E T _ S U S E
$( MKDIR_P) -m 0755 $( DESTDIR) $( systemunitdir) /final.target.wants
( cd $( DESTDIR) $( systemunitdir) && \
rm -f local.service && \
$( LN_S) rc-local.service local.service )
( cd $( DESTDIR) $( systemunitdir) /final.target.wants && \
rm -f halt-local.service && \
$( LN_S) $( systemunitdir) /halt-local.service halt-local.service )
e n d i f
2011-10-28 21:16:33 +04:00
i f T A R G E T _ M A G E I A
$( MKDIR_P) -m 0755 $( DESTDIR) $( systemunitdir) /final.target.wants
( cd $( DESTDIR) $( systemunitdir) /final.target.wants && \
rm -f halt-local.service && \
$( LN_S) $( systemunitdir) /halt-local.service halt-local.service )
( cd $( DESTDIR) $( systemunitdir) && \
rm -f display-manager.service && \
$( LN_S) prefdm.service display-manager.service && \
$( LN_S) prefdm.service dm.service )
( cd $( DESTDIR) $( systemunitdir) /graphical.target.wants && \
rm -f display-manager.service && \
$( LN_S) $( systemunitdir) /display-manager.service display-manager.service )
e n d i f
2011-04-06 17:57:37 +04:00
i f H A V E _ S Y S V _ C O M P A T
( cd $( DESTDIR) $( systemunitdir) /local-fs.target.wants && \
rm -f var-lock.mount && \
$( LN_S) ../var-lock.mount var-lock.mount )
e n d i f
2011-12-31 12:17:48 +04:00
install-exec-hook : $( INSTALL_EXEC_HOOKS )
2011-12-31 09:02:42 +04:00
2011-12-31 12:17:48 +04:00
uninstall-hook : $( UNINSTALL_EXEC_HOOKS )
2011-07-15 03:31:06 +04:00
2011-12-31 09:02:42 +04:00
install-data-hook : systemd -install -data -hook $( INSTALL_DATA_HOOKS )
2011-07-15 03:31:06 +04:00
2010-05-16 01:06:41 +04:00
DISTCHECK_CONFIGURE_FLAGS = \
2010-06-07 21:40:25 +04:00
--with-dbuspolicydir= $$ dc_install_base/$( dbuspolicydir) \
--with-dbussessionservicedir= $$ dc_install_base/$( dbussessionservicedir) \
--with-dbussystemservicedir= $$ dc_install_base/$( dbussystemservicedir) \
--with-dbusinterfacedir= $$ dc_install_base/$( dbusinterfacedir) \
2010-06-02 02:35:58 +04:00
--with-udevrulesdir= $$ dc_install_base/$( udevrulesdir) \
2010-06-22 01:27:18 +04:00
--with-pamlibdir= $$ dc_install_base/$( pamlibdir) \
2012-01-05 03:40:39 +04:00
--with-rootprefix= $$ dc_install_base/$( rootprefix)
2010-07-09 06:56:45 +04:00
upload : all distcheck
2012-01-11 07:01:50 +04:00
cp -v systemd-$( VERSION) .tar.xz /home/lennart/git.fedora/systemd/
scp systemd-$( VERSION) .tar.xz fdo:/srv/www.freedesktop.org/www/software/systemd/
2010-07-09 06:56:45 +04:00
scp man/*.html tango:public/systemd-man/
git-tag :
git tag " v $( VERSION) " -m " systemd $( VERSION) "