1 # -*- Mode: makefile; indent-tabs-mode: t -*-
3 # This file is part of systemd.
5 # Copyright 2010-2012 Lennart Poettering
6 # Copyright 2010-2012 Kay Sievers
7 # Copyright 2013 Zbigniew Jędrzejewski-Szmek
8 # Copyright 2013 David Strauss
10 # systemd is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU Lesser General Public License as published by
12 # the Free Software Foundation; either version 2.1 of the License, or
13 # (at your option) any later version.
15 # systemd is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 # Lesser General Public License for more details.
20 # You should have received a copy of the GNU Lesser General Public License
21 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
24 AM_MAKEFLAGS = --no-print-directory
25 AUTOMAKE_OPTIONS = color-tests parallel-tests
27 GCC_COLORS ?= 'ooh, shiny!'
32 # remove targets if the command fails
35 # keep intermediate files
38 # Keep the test-suite.log
39 .PRECIOUS: $(TEST_SUITE_LOG) Makefile
53 # The following four libraries only exist for compatibility reasons,
54 # their version info should not be bumped anymore
55 LIBSYSTEMD_LOGIN_CURRENT=9
56 LIBSYSTEMD_LOGIN_REVISION=3
57 LIBSYSTEMD_LOGIN_AGE=9
59 LIBSYSTEMD_DAEMON_CURRENT=0
60 LIBSYSTEMD_DAEMON_REVISION=12
61 LIBSYSTEMD_DAEMON_AGE=0
63 LIBSYSTEMD_ID128_CURRENT=0
64 LIBSYSTEMD_ID128_REVISION=28
65 LIBSYSTEMD_ID128_AGE=0
67 LIBSYSTEMD_JOURNAL_CURRENT=11
68 LIBSYSTEMD_JOURNAL_REVISION=5
69 LIBSYSTEMD_JOURNAL_AGE=11
71 # Dirs of external packages
72 dbuspolicydir=@dbuspolicydir@
73 dbussessionservicedir=@dbussessionservicedir@
74 dbussystemservicedir=@dbussystemservicedir@
76 pamconfdir=@pamconfdir@
77 pkgconfiglibdir=$(libdir)/pkgconfig
78 polkitpolicydir=$(datadir)/polkit-1/actions
79 bashcompletiondir=@bashcompletiondir@
80 zshcompletiondir=@zshcompletiondir@
81 rpmmacrosdir=$(prefix)/lib/rpm/macros.d
82 sysvinitdir=$(SYSTEM_SYSVINIT_PATH)
83 sysvrcnddir=$(SYSTEM_SYSVRCND_PATH)
84 varlogdir=$(localstatedir)/log
85 systemdstatedir=$(localstatedir)/lib/systemd
86 catalogstatedir=$(systemdstatedir)/catalog
87 xinitrcdir=$(sysconfdir)/X11/xinit/xinitrc.d
89 # Our own, non-special dirs
90 pkgsysconfdir=$(sysconfdir)/systemd
91 userunitdir=$(prefix)/lib/systemd/user
92 userpresetdir=$(prefix)/lib/systemd/user-preset
93 tmpfilesdir=$(prefix)/lib/tmpfiles.d
94 sysusersdir=$(prefix)/lib/sysusers.d
95 sysctldir=$(prefix)/lib/sysctl.d
96 binfmtdir=$(prefix)/lib/binfmt.d
97 modulesloaddir=$(prefix)/lib/modules-load.d
98 networkdir=$(rootprefix)/lib/systemd/network
99 pkgincludedir=$(includedir)/systemd
100 systemgeneratordir=$(rootlibexecdir)/system-generators
101 usergeneratordir=$(prefix)/lib/systemd/user-generators
102 systemshutdowndir=$(rootlibexecdir)/system-shutdown
103 systemsleepdir=$(rootlibexecdir)/system-sleep
104 systemunitdir=$(rootprefix)/lib/systemd/system
105 systempresetdir=$(rootprefix)/lib/systemd/system-preset
106 udevlibexecdir=$(rootprefix)/lib/udev
107 udevhomedir=$(udevlibexecdir)
108 udevrulesdir=$(udevlibexecdir)/rules.d
109 udevhwdbdir=$(udevlibexecdir)/hwdb.d
110 catalogdir=$(prefix)/lib/systemd/catalog
111 kernelinstalldir = $(prefix)/lib/kernel/install.d
112 factory_etcdir = $(prefix)/share/factory/etc
113 factory_pamdir = $(prefix)/share/factory/etc/pam.d
115 # And these are the special ones for /
116 rootprefix=@rootprefix@
117 rootbindir=$(rootprefix)/bin
118 rootlibexecdir=$(rootprefix)/lib/systemd
120 CLEANFILES = $(BUILT_SOURCES)
125 UNINSTALL_EXEC_HOOKS =
127 UNINSTALL_DATA_HOOKS =
128 DISTCLEAN_LOCAL_HOOKS =
136 polkitpolicy_in_in_files =
137 polkitpolicy_in_files =
139 dist_udevrules_DATA =
140 nodist_udevrules_DATA =
141 dist_pkgsysconf_DATA =
142 nodist_pkgsysconf_DATA =
144 dist_dbuspolicy_DATA =
145 dist_dbussystemservice_DATA =
146 dist_systemunit_DATA_busnames =
151 TEST_EXTENSIONS = .py
152 PY_LOG_COMPILER = $(PYTHON)
154 noinst_PROGRAMS = $(manual_tests) $(tests)
160 udevlibexec_PROGRAMS =
162 .PHONY: $(INSTALL_EXEC_HOOKS) $(UNINSTALL_EXEC_HOOKS) \
163 $(INSTALL_DATA_HOOKS) $(UNINSTALL_DATA_HOOKS) \
164 $(DISTCLEAN_LOCAL_HOOKS) $(CLEAN_LOCAL_HOOKS)
167 -include $(top_builddir)/config.h \
168 -DPKGSYSCONFDIR=\"$(pkgsysconfdir)\" \
169 -DSYSTEM_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/system\" \
170 -DSYSTEM_DATA_UNIT_PATH=\"$(systemunitdir)\" \
171 -DSYSTEM_SYSVINIT_PATH=\"$(SYSTEM_SYSVINIT_PATH)\" \
172 -DSYSTEM_SYSVRCND_PATH=\"$(SYSTEM_SYSVRCND_PATH)\" \
173 -DUSER_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/user\" \
174 -DUSER_DATA_UNIT_PATH=\"$(userunitdir)\" \
175 -DCERTIFICATE_ROOT=\"$(CERTIFICATEROOT)\" \
176 -DCATALOG_DATABASE=\"$(catalogstatedir)/database\" \
177 -DSYSTEMD_CGROUP_AGENT_PATH=\"$(rootlibexecdir)/systemd-cgroups-agent\" \
178 -DSYSTEMD_BINARY_PATH=\"$(rootlibexecdir)/systemd\" \
179 -DSYSTEMD_SHUTDOWN_BINARY_PATH=\"$(rootlibexecdir)/systemd-shutdown\" \
180 -DSYSTEMD_SLEEP_BINARY_PATH=\"$(rootlibexecdir)/systemd-sleep\" \
181 -DSYSTEMCTL_BINARY_PATH=\"$(rootbindir)/systemctl\" \
182 -DSYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH=\"$(rootbindir)/systemd-tty-ask-password-agent\" \
183 -DSYSTEMD_STDIO_BRIDGE_BINARY_PATH=\"$(bindir)/systemd-stdio-bridge\" \
184 -DROOTPREFIX=\"$(rootprefix)\" \
185 -DRANDOM_SEED_DIR=\"$(localstatedir)/lib/systemd/\" \
186 -DRANDOM_SEED=\"$(localstatedir)/lib/systemd/random-seed\" \
187 -DSYSTEMD_CRYPTSETUP_PATH=\"$(rootlibexecdir)/systemd-cryptsetup\" \
188 -DSYSTEM_GENERATOR_PATH=\"$(systemgeneratordir)\" \
189 -DUSER_GENERATOR_PATH=\"$(usergeneratordir)\" \
190 -DSYSTEM_SHUTDOWN_PATH=\"$(systemshutdowndir)\" \
191 -DSYSTEM_SLEEP_PATH=\"$(systemsleepdir)\" \
192 -DSYSTEMD_KBD_MODEL_MAP=\"$(pkgdatadir)/kbd-model-map\" \
193 -DX_SERVER=\"$(bindir)/X\" \
194 -DUDEVLIBEXECDIR=\"$(udevlibexecdir)\" \
195 -DPOLKIT_AGENT_BINARY_PATH=\"$(bindir)/pkttyagent\" \
196 -DQUOTACHECK=\"$(QUOTACHECK)\" \
197 -DKEXEC=\"$(KEXEC)\" \
198 -DLIBDIR=\"$(libdir)\" \
199 -DROOTLIBDIR=\"$(rootlibdir)\" \
200 -DTEST_DIR=\"$(abs_top_srcdir)/test\" \
201 -I $(top_srcdir)/src \
202 -I $(top_builddir)/src/shared \
203 -I $(top_srcdir)/src/shared \
204 -I $(top_srcdir)/src/network \
205 -I $(top_srcdir)/src/login \
206 -I $(top_srcdir)/src/journal \
207 -I $(top_srcdir)/src/timedate \
208 -I $(top_srcdir)/src/timesync \
209 -I $(top_srcdir)/src/resolve \
210 -I $(top_builddir)/src/resolve \
211 -I $(top_srcdir)/src/systemd \
212 -I $(top_builddir)/src/core \
213 -I $(top_srcdir)/src/core \
214 -I $(top_srcdir)/src/libudev \
215 -I $(top_srcdir)/src/udev \
216 -I $(top_srcdir)/src/udev/net \
217 -I $(top_builddir)/src/udev \
218 -I $(top_srcdir)/src/libsystemd/sd-bus \
219 -I $(top_srcdir)/src/libsystemd/sd-event \
220 -I $(top_srcdir)/src/libsystemd/sd-rtnl \
221 -I $(top_srcdir)/src/libsystemd/sd-network \
222 -I $(top_srcdir)/src/libsystemd/sd-hwdb \
223 -I $(top_srcdir)/src/libsystemd-network \
224 -I $(top_srcdir)/src/libsystemd-terminal \
227 AM_CFLAGS = $(OUR_CFLAGS)
228 AM_LDFLAGS = $(OUR_LDFLAGS)
230 # ------------------------------------------------------------------------------
231 define move-to-rootlibdir
232 if test "$(libdir)" != "$(rootlibdir)"; then \
233 $(MKDIR_P) $(DESTDIR)$(rootlibdir) && \
234 so_img_name=$$(readlink $(DESTDIR)$(libdir)/$$libname) && \
235 rm -f $(DESTDIR)$(libdir)/$$libname && \
236 $(LN_S) --relative -f $(DESTDIR)$(rootlibdir)/$$so_img_name $(DESTDIR)$(libdir)/$$libname && \
237 mv $(DESTDIR)$(libdir)/$$libname.* $(DESTDIR)$(rootlibdir); \
243 RUNLEVEL1_TARGET_WANTS =
244 RUNLEVEL2_TARGET_WANTS =
245 RUNLEVEL3_TARGET_WANTS =
246 RUNLEVEL4_TARGET_WANTS =
247 RUNLEVEL5_TARGET_WANTS =
248 SHUTDOWN_TARGET_WANTS =
249 LOCAL_FS_TARGET_WANTS =
250 MULTI_USER_TARGET_WANTS =
251 SYSINIT_TARGET_WANTS =
252 SOCKETS_TARGET_WANTS =
253 BUSNAMES_TARGET_WANTS =
254 TIMERS_TARGET_WANTS =
255 USER_SOCKETS_TARGET_WANTS =
256 USER_DEFAULT_TARGET_WANTS =
257 USER_BUSNAMES_TARGET_WANTS =
259 SYSTEM_UNIT_ALIASES =
263 install-target-wants-hook:
264 what="$(RUNLEVEL1_TARGET_WANTS)" && wants=runlevel1.target && dir=$(systemunitdir) && $(add-wants)
265 what="$(RUNLEVEL2_TARGET_WANTS)" && wants=runlevel2.target && dir=$(systemunitdir) && $(add-wants)
266 what="$(RUNLEVEL3_TARGET_WANTS)" && wants=runlevel3.target && dir=$(systemunitdir) && $(add-wants)
267 what="$(RUNLEVEL4_TARGET_WANTS)" && wants=runlevel4.target && dir=$(systemunitdir) && $(add-wants)
268 what="$(RUNLEVEL5_TARGET_WANTS)" && wants=runlevel5.target && dir=$(systemunitdir) && $(add-wants)
269 what="$(SHUTDOWN_TARGET_WANTS)" && wants=shutdown.target && dir=$(systemunitdir) && $(add-wants)
270 what="$(LOCAL_FS_TARGET_WANTS)" && wants=local-fs.target && dir=$(systemunitdir) && $(add-wants)
271 what="$(MULTI_USER_TARGET_WANTS)" && wants=multi-user.target && dir=$(systemunitdir) && $(add-wants)
272 what="$(SYSINIT_TARGET_WANTS)" && wants=sysinit.target && dir=$(systemunitdir) && $(add-wants)
273 what="$(SOCKETS_TARGET_WANTS)" && wants=sockets.target && dir=$(systemunitdir) && $(add-wants)
274 what="$(TIMERS_TARGET_WANTS)" && wants=timers.target && dir=$(systemunitdir) && $(add-wants)
275 what="$(SLICES_TARGET_WANTS)" && wants=slices.target && dir=$(systemunitdir) && $(add-wants)
276 what="$(USER_SOCKETS_TARGET_WANTS)" && wants=sockets.target && dir=$(userunitdir) && $(add-wants)
277 what="$(USER_DEFAULT_TARGET_WANTS)" && wants=default.target && dir=$(userunitdir) && $(add-wants)
279 install-busnames-target-wants-hook:
280 what="$(BUSNAMES_TARGET_WANTS)" && wants=busnames.target && dir=$(systemunitdir) && $(add-wants)
281 what="$(USER_BUSNAMES_TARGET_WANTS)" && wants=busnames.target && dir=$(userunitdir) && $(add-wants)
284 [ -z "$$what" ] || ( \
285 dir=$(DESTDIR)$$dir/$$wants.wants && \
286 $(MKDIR_P) -m 0755 $$dir && \
289 for i in $$what; do $(LN_S) ../$$i . || exit $$? ; done )
292 install-directories-hook:
293 $(MKDIR_P) $(addprefix $(DESTDIR),$(INSTALL_DIRS))
295 install-aliases-hook:
296 set -- $(SYSTEM_UNIT_ALIASES) && \
297 dir=$(systemunitdir) && $(install-aliases)
298 set -- $(USER_UNIT_ALIASES) && \
299 dir=$(userunitdir) && $(install-relative-aliases)
300 set -- $(GENERAL_ALIASES) && \
301 dir= && $(install-relative-aliases)
303 define install-aliases
304 while [ -n "$$1" ]; do \
305 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
306 rm -f $(DESTDIR)$$dir/$$2 && \
307 $(LN_S) $$1 $(DESTDIR)$$dir/$$2 && \
308 shift 2 || exit $$?; \
312 define install-relative-aliases
313 while [ -n "$$1" ]; do \
314 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
315 rm -f $(DESTDIR)$$dir/$$2 && \
316 $(LN_S) --relative $(DESTDIR)$$1 $(DESTDIR)$$dir/$$2 && \
317 shift 2 || exit $$?; \
321 install-touch-usr-hook:
322 touch -c $(DESTDIR)/$(prefix)
324 INSTALL_EXEC_HOOKS += \
325 install-target-wants-hook \
326 install-directories-hook \
327 install-aliases-hook \
328 install-touch-usr-hook
331 INSTALL_EXEC_HOOKS += \
332 install-busnames-target-wants-hook
335 # ------------------------------------------------------------------------------
336 AM_V_M4 = $(AM_V_M4_$(V))
337 AM_V_M4_ = $(AM_V_M4_$(AM_DEFAULT_VERBOSITY))
338 AM_V_M4_0 = @echo " M4 " $@;
340 AM_V_XSLT = $(AM_V_XSLT_$(V))
341 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
342 AM_V_XSLT_0 = @echo " XSLT " $@;
344 AM_V_GPERF = $(AM_V_GPERF_$(V))
345 AM_V_GPERF_ = $(AM_V_GPERF_$(AM_DEFAULT_VERBOSITY))
346 AM_V_GPERF_0 = @echo " GPERF " $@;
348 AM_V_LN = $(AM_V_LN_$(V))
349 AM_V_LN_ = $(AM_V_LN_$(AM_DEFAULT_VERBOSITY))
350 AM_V_LN_0 = @echo " LN " $@;
352 AM_V_RM = $(AM_V_RM_$(V))
353 AM_V_RM_ = $(AM_V_RM_$(AM_DEFAULT_VERBOSITY))
354 AM_V_RM_0 = @echo " RM " $@;
356 # ------------------------------------------------------------------------------
360 systemd-ask-password \
361 systemd-tty-ask-password-agent \
362 systemd-machine-id-setup \
369 systemd-detect-virt \
373 systemd-stdio-bridge \
377 src/kernel-install/kernel-install
379 dist_kernelinstall_SCRIPTS = \
380 src/kernel-install/50-depmod.install \
381 src/kernel-install/90-loaderentry.install
383 rootlibexec_PROGRAMS = \
385 systemd-cgroups-agent \
390 systemd-reply-password \
392 systemd-machine-id-commit \
397 systemd-socket-proxyd \
401 rootlibexec_PROGRAMS += \
405 systemgenerator_PROGRAMS = \
406 systemd-getty-generator \
407 systemd-fstab-generator \
408 systemd-system-update-generator \
409 systemd-debug-generator
411 dist_bashcompletion_DATA = \
412 shell-completion/bash/busctl \
413 shell-completion/bash/journalctl \
414 shell-completion/bash/systemd-analyze \
415 shell-completion/bash/systemd-cat \
416 shell-completion/bash/systemd-cgls \
417 shell-completion/bash/systemd-cgtop \
418 shell-completion/bash/systemd-delta \
419 shell-completion/bash/systemd-detect-virt \
420 shell-completion/bash/systemd-nspawn \
421 shell-completion/bash/systemd-run \
422 shell-completion/bash/udevadm \
423 shell-completion/bash/kernel-install
425 nodist_bashcompletion_DATA = \
426 shell-completion/bash/systemctl
428 dist_zshcompletion_DATA = \
429 shell-completion/zsh/_journalctl \
430 shell-completion/zsh/_udevadm \
431 shell-completion/zsh/_kernel-install \
432 shell-completion/zsh/_systemd-nspawn \
433 shell-completion/zsh/_systemd-analyze \
434 shell-completion/zsh/_systemd-run \
435 shell-completion/zsh/_sd_hosts_or_user_at_host \
436 shell-completion/zsh/_sd_outputmodes \
437 shell-completion/zsh/_sd_unit_files \
438 shell-completion/zsh/_systemd-delta \
439 shell-completion/zsh/_systemd
441 nodist_zshcompletion_DATA = \
442 shell-completion/zsh/_systemctl
445 shell-completion/bash/systemctl.in \
446 shell-completion/zsh/_systemctl.in
449 $(nodist_bashcompletion_DATA) \
450 $(nodist_zshcompletion_DATA)
453 sysctl.d/50-default.conf
455 dist_systemunit_DATA = \
456 units/graphical.target \
457 units/multi-user.target \
458 units/emergency.target \
459 units/sysinit.target \
464 units/local-fs.target \
465 units/local-fs-pre.target \
466 units/initrd.target \
467 units/initrd-fs.target \
468 units/initrd-root-fs.target \
469 units/remote-fs.target \
470 units/remote-fs-pre.target \
471 units/network.target \
472 units/network-pre.target \
473 units/network-online.target \
474 units/nss-lookup.target \
475 units/nss-user-lookup.target \
476 units/poweroff.target \
477 units/reboot.target \
478 units/rescue.target \
479 units/rpcbind.target \
480 units/time-sync.target \
481 units/shutdown.target \
483 units/umount.target \
484 units/sigpwr.target \
486 units/sockets.target \
487 units/timers.target \
489 units/suspend.target \
491 units/slices.target \
494 units/systemd-initctl.socket \
495 units/systemd-shutdownd.socket \
496 units/syslog.socket \
497 units/dev-hugepages.mount \
498 units/dev-mqueue.mount \
499 units/sys-kernel-config.mount \
500 units/sys-kernel-debug.mount \
501 units/sys-fs-fuse-connections.mount \
503 units/printer.target \
505 units/bluetooth.target \
506 units/smartcard.target \
507 units/systemd-ask-password-wall.path \
508 units/systemd-ask-password-console.path \
509 units/systemd-udevd-control.socket \
510 units/systemd-udevd-kernel.socket \
511 units/system-update.target \
512 units/initrd-switch-root.target \
513 units/machines.target
516 dist_systemunit_DATA += \
517 $(dist_systemunit_DATA_busnames)
520 dist_systemunit_DATA_busnames += \
521 units/busnames.target
523 nodist_systemunit_DATA = \
524 units/getty@.service \
525 units/serial-getty@.service \
526 units/console-shell.service \
527 units/console-getty.service \
528 units/container-getty@.service \
529 units/systemd-initctl.service \
530 units/systemd-shutdownd.service \
531 units/systemd-remount-fs.service \
532 units/systemd-ask-password-wall.service \
533 units/systemd-ask-password-console.service \
534 units/systemd-sysctl.service \
535 units/emergency.service \
536 units/rescue.service \
537 units/user@.service \
538 units/systemd-suspend.service \
539 units/systemd-halt.service \
540 units/systemd-poweroff.service \
541 units/systemd-reboot.service \
542 units/systemd-kexec.service \
543 units/systemd-fsck@.service \
544 units/systemd-fsck-root.service \
545 units/systemd-machine-id-commit.service \
546 units/systemd-udevd.service \
547 units/systemd-udev-trigger.service \
548 units/systemd-udev-settle.service \
549 units/systemd-hwdb-update.service \
550 units/debug-shell.service \
551 units/initrd-parse-etc.service \
552 units/initrd-cleanup.service \
553 units/initrd-udevadm-cleanup-db.service \
554 units/initrd-switch-root.service \
555 units/systemd-nspawn@.service \
556 units/systemd-update-done.service
559 nodist_systemunit_DATA += \
560 units/systemd-update-utmp.service \
561 units/systemd-update-utmp-runlevel.service
564 dist_userunit_DATA = \
565 units/user/basic.target \
566 units/user/default.target \
567 units/user/exit.target
569 nodist_userunit_DATA = \
570 units/user/systemd-exit.service
572 dist_systempreset_DATA = \
573 system-preset/90-systemd.preset
576 units/getty@.service.m4 \
577 units/serial-getty@.service.m4 \
578 units/console-shell.service.m4.in \
579 units/console-getty.service.m4.in \
580 units/container-getty@.service.m4.in \
581 units/rescue.service.in \
582 units/systemd-initctl.service.in \
583 units/systemd-shutdownd.service.in \
584 units/systemd-remount-fs.service.in \
585 units/systemd-update-utmp.service.in \
586 units/systemd-update-utmp-runlevel.service.in \
587 units/systemd-ask-password-wall.service.in \
588 units/systemd-ask-password-console.service.in \
589 units/systemd-sysctl.service.in \
590 units/emergency.service.in \
591 units/systemd-halt.service.in \
592 units/systemd-poweroff.service.in \
593 units/systemd-reboot.service.in \
594 units/systemd-kexec.service.in \
595 units/user/systemd-exit.service.in \
596 units/systemd-fsck@.service.in \
597 units/systemd-fsck-root.service.in \
598 units/systemd-machine-id-commit.service.in \
599 units/user@.service.m4.in \
600 units/debug-shell.service.in \
601 units/systemd-suspend.service.in \
602 units/quotaon.service.in \
603 units/initrd-parse-etc.service.in \
604 units/initrd-cleanup.service.in \
605 units/initrd-udevadm-cleanup-db.service.in \
606 units/initrd-switch-root.service.in \
607 units/systemd-nspawn@.service.in \
608 units/systemd-update-done.service.in
611 units/console-shell.service.m4 \
612 units/console-getty.service.m4 \
613 units/container-getty@.service.m4 \
614 units/user@.service.m4
617 nodist_systemunit_DATA += \
618 units/rc-local.service \
619 units/halt-local.service
621 systemgenerator_PROGRAMS += \
622 systemd-sysv-generator \
623 systemd-rc-local-generator
627 units/rc-local.service.in \
628 units/halt-local.service.in
630 # automake is broken and can't handle files with a dash in front
631 # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14728#8
633 mv $(DESTDIR)$(systemunitdir)/x-.slice $(DESTDIR)/$(systemunitdir)/-.slice
635 units-uninstall-hook:
636 rm -f $(DESTDIR)/$(systemunitdir)/-.slice
638 INSTALL_DATA_HOOKS += units-install-hook
639 UNINSTALL_DATA_HOOKS += units-uninstall-hook
648 src/libsystemd/sd-bus/PORTING-DBUS1 \
649 src/libsystemd/sd-bus/DIFFERENCES \
650 src/libsystemd/sd-bus/GVARIANT-SERIALIZATION
652 @INTLTOOL_POLICY_RULE@
654 # ------------------------------------------------------------------------------
659 include Makefile-man.am
661 .PHONY: man update-man-list
662 man: $(MANPAGES) $(MANPAGES_ALIAS) $(HTML_FILES) $(HTML_ALIAS)
665 ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}}}}
667 ${XML_FILES:.xml=.html}
669 ${patsubst %.1,%.html,${patsubst %.3,%.html,${patsubst %.5,%.html,${patsubst %.7,%.html,${patsubst %.8,%.html,$(MANPAGES_ALIAS)}}}}}
686 $(AM_V_at)$(MKDIR_P) $(dir $@)
687 $(AM_V_LN)$(LN_S) -f ../../man $@
696 man/index.html: man/systemd.index.html
697 $(AM_V_LN)$(LN_S) -f systemd.index.html $@
705 XML_GLOB = $(wildcard $(top_srcdir)/man/*.xml $(top_builddir)/man/*.xml)
706 NON_INDEX_XML_FILES = $(filter-out man/systemd.index.xml,$(XML_FILES))
707 SOURCE_XML_FILES = $(filter-out man/systemd.directives.xml,$(NON_INDEX_XML_FILES))
709 update-man-list: $(top_srcdir)/tools/make-man-rules.py $(XML_GLOB)
710 $(AM_V_GEN)$(PYTHON) $^ > $(top_srcdir)/Makefile-man.tmp
711 $(AM_V_at)mv $(top_srcdir)/Makefile-man.tmp $(top_srcdir)/Makefile-man.am
712 @echo "Makefile-man.am has been regenerated"
714 man/systemd.index.xml: $(top_srcdir)/tools/make-man-index.py $(NON_INDEX_XML_FILES)
715 $(AM_V_at)$(MKDIR_P) $(dir $@)
716 $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
718 man/systemd.directives.xml: $(top_srcdir)/tools/make-directive-index.py $(SOURCE_XML_FILES)
719 $(AM_V_at)$(MKDIR_P) $(dir $@)
720 $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
723 man/systemd.index.xml \
725 man/systemd.directives.xml \
726 man/glib-event-glue.c
729 man/systemd.index.xml \
730 man/systemd.directives.xml
741 tools/make-man-index.py \
742 tools/make-directive-index.py \
745 # ------------------------------------------------------------------------------
746 noinst_LTLIBRARIES += \
749 libsystemd_shared_la_SOURCES = \
750 src/shared/capability.c \
751 src/shared/capability.h \
752 src/shared/linux/auto_dev-ioctl.h \
753 src/shared/ioprio.h \
754 src/shared/missing.h \
755 src/shared/initreq.h \
756 src/shared/securebits.h \
757 src/shared/special.h \
759 src/shared/unaligned.h \
762 src/shared/sparse-endian.h \
763 src/shared/refcnt.h \
764 src/shared/udev-util.h \
765 src/shared/device-nodes.c \
766 src/shared/device-nodes.h \
771 src/shared/architecture.c \
772 src/shared/architecture.h \
773 src/shared/efivars.c \
774 src/shared/efivars.h \
775 src/shared/fstab-util.c \
776 src/shared/fstab-util.h \
777 src/shared/path-util.c \
778 src/shared/path-util.h \
779 src/shared/time-util.c \
780 src/shared/time-util.h \
781 src/shared/locale-util.c \
782 src/shared/locale-util.h \
783 src/shared/mempool.c \
784 src/shared/mempool.h \
785 src/shared/hashmap.c \
786 src/shared/hashmap.h \
787 src/shared/siphash24.c \
788 src/shared/siphash24.h \
794 src/shared/sleep-config.c \
795 src/shared/sleep-config.h \
798 src/shared/env-util.c \
799 src/shared/env-util.h \
800 src/shared/strbuf.c \
801 src/shared/strbuf.h \
802 src/shared/strxcpyx.c \
803 src/shared/strxcpyx.h \
804 src/shared/conf-parser.c \
805 src/shared/conf-parser.h \
808 src/shared/ratelimit.h \
809 src/shared/ratelimit.c \
810 src/shared/exit-status.c \
811 src/shared/exit-status.h \
814 src/shared/gunicode.c \
815 src/shared/gunicode.h \
818 src/shared/socket-util.c \
819 src/shared/socket-util.h \
820 src/shared/in-addr-util.c \
821 src/shared/in-addr-util.h \
822 src/shared/ether-addr-util.h \
823 src/shared/conf-files.c \
824 src/shared/conf-files.h \
825 src/shared/cgroup-util.c \
826 src/shared/cgroup-util.h \
827 src/shared/cgroup-show.c \
828 src/shared/cgroup-show.h \
829 src/shared/unit-name.c \
830 src/shared/unit-name.h \
831 src/shared/utmp-wtmp.h \
832 src/shared/watchdog.c \
833 src/shared/watchdog.h \
834 src/shared/spawn-ask-password-agent.c \
835 src/shared/spawn-ask-password-agent.h \
836 src/shared/replace-var.c \
837 src/shared/replace-var.h \
838 src/shared/spawn-polkit-agent.c \
839 src/shared/spawn-polkit-agent.h \
840 src/shared/clock-util.c \
841 src/shared/clock-util.h \
842 src/shared/time-dst.c \
843 src/shared/time-dst.h \
844 src/shared/calendarspec.c \
845 src/shared/calendarspec.h \
846 src/shared/fileio.c \
847 src/shared/fileio.h \
848 src/shared/output-mode.h \
849 src/shared/MurmurHash2.c \
850 src/shared/MurmurHash2.h \
851 src/shared/acpi-fpdt.h \
852 src/shared/acpi-fpdt.c \
853 src/shared/boot-timestamps.h \
854 src/shared/boot-timestamps.c \
857 src/shared/smack-util.c \
858 src/shared/smack-util.h \
859 src/shared/apparmor-util.c \
860 src/shared/apparmor-util.h \
861 src/shared/ima-util.c \
862 src/shared/ima-util.h \
863 src/shared/ptyfwd.c \
864 src/shared/ptyfwd.h \
865 src/shared/errno-list.c \
866 src/shared/errno-list.h \
867 src/shared/af-list.c \
868 src/shared/af-list.h \
869 src/shared/arphrd-list.c \
870 src/shared/arphrd-list.h \
871 src/shared/cap-list.c \
872 src/shared/cap-list.h \
879 src/shared/bus-label.c \
880 src/shared/bus-label.h \
882 src/shared/clean-ipc.h \
883 src/shared/clean-ipc.c \
884 src/shared/login-shared.c \
885 src/shared/login-shared.h \
888 src/shared/barrier.c \
889 src/shared/barrier.h \
894 src/shared/base-filesystem.c \
895 src/shared/base-filesystem.h \
896 src/shared/memfd-util.c \
897 src/shared/memfd-util.h \
898 src/shared/uid-range.c \
899 src/shared/uid-range.h \
900 src/shared/nss-util.h \
903 src/shared/sigbus.c \
904 src/shared/sigbus.h \
906 src/shared/import-util.c \
907 src/shared/import-util.h
910 libsystemd_shared_la_SOURCES += \
911 src/shared/utmp-wtmp.c
914 nodist_libsystemd_shared_la_SOURCES = \
915 src/shared/errno-from-name.h \
916 src/shared/errno-to-name.h \
917 src/shared/af-from-name.h \
918 src/shared/af-to-name.h \
919 src/shared/arphrd-from-name.h \
920 src/shared/arphrd-to-name.h \
921 src/shared/cap-from-name.h \
922 src/shared/cap-to-name.h
924 libsystemd_shared_la_CFLAGS = \
930 libsystemd_shared_la_LIBADD = \
934 # ------------------------------------------------------------------------------
935 noinst_LTLIBRARIES += \
938 libsystemd_units_la_SOURCES = \
939 src/shared/install.c \
940 src/shared/install.h \
941 src/shared/install-printf.c \
942 src/shared/install-printf.h \
943 src/shared/path-lookup.c \
944 src/shared/path-lookup.h \
945 src/shared/specifier.c \
946 src/shared/specifier.h
948 # ------------------------------------------------------------------------------
949 noinst_LTLIBRARIES += \
952 libsystemd_label_la_SOURCES = \
953 src/shared/socket-label.c \
956 src/shared/selinux-util.c \
957 src/shared/selinux-util.h \
958 src/shared/mkdir-label.c \
959 src/shared/ask-password-api.c \
960 src/shared/ask-password-api.h \
961 src/shared/switch-root.h \
962 src/shared/switch-root.c \
963 src/shared/fileio-label.c \
964 src/shared/fileio-label.h \
965 src/shared/dev-setup.c \
966 src/shared/dev-setup.h \
967 src/shared/dropin.c \
968 src/shared/dropin.h \
969 src/shared/condition.c \
970 src/shared/condition.h \
971 src/shared/generator.h \
972 src/shared/generator.c \
973 src/shared/btrfs-util.c \
974 src/shared/btrfs-util.h \
975 src/shared/btrfs-ctree.h \
976 src/shared/machine-image.c \
977 src/shared/machine-image.h \
981 libsystemd_label_la_CFLAGS = \
985 libsystemd_label_la_LIBADD = \
988 # -----------------------------------------------------------------------------
991 noinst_LTLIBRARIES += \
994 libsystemd_fw_la_SOURCES = \
995 src/shared/fw-util.h \
998 libsystemd_fw_la_CFLAGS = \
1002 libsystemd_fw_la_LIBADD = \
1006 # -----------------------------------------------------------------------------
1009 dist_systemunit_DATA += \
1010 units/ldconfig.service
1012 SYSINIT_TARGET_WANTS += \
1016 # ------------------------------------------------------------------------------
1019 noinst_LTLIBRARIES += \
1020 libsystemd-seccomp.la
1022 libsystemd_seccomp_la_SOURCES = \
1023 src/shared/seccomp-util.h \
1024 src/shared/seccomp-util.c
1026 libsystemd_seccomp_la_CFLAGS = \
1030 libsystemd_seccomp_la_LIBADD = \
1034 # ------------------------------------------------------------------------------
1035 noinst_LTLIBRARIES += \
1038 libsystemd_logs_la_SOURCES = \
1039 src/shared/logs-show.c \
1040 src/shared/logs-show.h
1042 # ------------------------------------------------------------------------------
1044 noinst_LTLIBRARIES += \
1047 libsystemd_acl_la_SOURCES = \
1048 src/shared/acl-util.c \
1049 src/shared/acl-util.h
1051 libsystemd_acl_la_CFLAGS = \
1055 libsystemd_acl_la_LIBADD = \
1059 # ------------------------------------------------------------------------------
1060 noinst_LTLIBRARIES += \
1063 libsystemd_core_la_SOURCES = \
1066 src/core/unit-printf.c \
1067 src/core/unit-printf.h \
1070 src/core/manager.c \
1071 src/core/manager.h \
1072 src/core/transaction.c \
1073 src/core/transaction.h \
1074 src/core/load-fragment.c \
1075 src/core/load-fragment.h \
1076 src/core/service.c \
1077 src/core/service.h \
1080 src/core/busname.c \
1081 src/core/busname.h \
1082 src/core/bus-endpoint.c \
1083 src/core/bus-endpoint.h \
1084 src/core/bus-policy.c \
1085 src/core/bus-policy.h \
1088 src/core/snapshot.c \
1089 src/core/snapshot.h \
1094 src/core/automount.c \
1095 src/core/automount.h \
1106 src/core/load-dropin.c \
1107 src/core/load-dropin.h \
1108 src/core/execute.c \
1109 src/core/execute.h \
1114 src/core/dbus-manager.c \
1115 src/core/dbus-manager.h \
1116 src/core/dbus-unit.c \
1117 src/core/dbus-unit.h \
1118 src/core/dbus-job.c \
1119 src/core/dbus-job.h \
1120 src/core/dbus-service.c \
1121 src/core/dbus-service.h \
1122 src/core/dbus-socket.c \
1123 src/core/dbus-socket.h \
1124 src/core/dbus-busname.c \
1125 src/core/dbus-busname.h \
1126 src/core/dbus-target.c \
1127 src/core/dbus-target.h \
1128 src/core/dbus-snapshot.c \
1129 src/core/dbus-snapshot.h \
1130 src/core/dbus-device.c \
1131 src/core/dbus-device.h \
1132 src/core/dbus-mount.c \
1133 src/core/dbus-mount.h \
1134 src/core/dbus-automount.c \
1135 src/core/dbus-automount.h \
1136 src/core/dbus-swap.c \
1137 src/core/dbus-swap.h \
1138 src/core/dbus-timer.c \
1139 src/core/dbus-timer.h \
1140 src/core/dbus-path.c \
1141 src/core/dbus-path.h \
1142 src/core/dbus-slice.c \
1143 src/core/dbus-slice.h \
1144 src/core/dbus-scope.c \
1145 src/core/dbus-scope.h \
1146 src/core/dbus-execute.c \
1147 src/core/dbus-execute.h \
1148 src/core/dbus-kill.c \
1149 src/core/dbus-kill.h \
1150 src/core/dbus-cgroup.c \
1151 src/core/dbus-cgroup.h \
1154 src/core/selinux-access.c \
1155 src/core/selinux-access.h \
1156 src/core/selinux-setup.c \
1157 src/core/selinux-setup.h \
1158 src/core/smack-setup.c \
1159 src/core/smack-setup.h \
1160 src/core/ima-setup.c \
1161 src/core/ima-setup.h \
1162 src/core/locale-setup.h \
1163 src/core/locale-setup.c \
1164 src/core/hostname-setup.c \
1165 src/core/hostname-setup.h \
1166 src/core/machine-id-setup.c \
1167 src/core/machine-id-setup.h \
1168 src/core/mount-setup.c \
1169 src/core/mount-setup.h \
1170 src/core/kmod-setup.c \
1171 src/core/kmod-setup.h \
1172 src/core/loopback-setup.h \
1173 src/core/loopback-setup.c \
1174 src/core/namespace.c \
1175 src/core/namespace.h \
1176 src/core/killall.h \
1177 src/core/killall.c \
1178 src/core/audit-fd.c \
1179 src/core/audit-fd.h \
1180 src/core/show-status.c \
1181 src/core/show-status.h \
1182 src/core/failure-action.c \
1183 src/core/failure-action.h
1185 nodist_libsystemd_core_la_SOURCES = \
1186 src/core/load-fragment-gperf.c \
1187 src/core/load-fragment-gperf-nulstr.c
1189 libsystemd_core_la_CFLAGS = \
1194 $(APPARMOR_CFLAGS) \
1199 libsystemd_core_la_LIBADD = \
1200 libsystemd-units.la \
1201 libsystemd-label.la \
1202 libudev-internal.la \
1203 libsystemd-shared.la \
1204 libsystemd-internal.la \
1213 libsystemd_core_la_LIBADD += \
1214 libsystemd-seccomp.la
1217 src/core/load-fragment-gperf-nulstr.c: src/core/load-fragment-gperf.gperf
1218 $(AM_V_at)$(MKDIR_P) $(dir $@)
1219 $(AM_V_GEN)$(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 ";" }' < $< > $@
1222 src/core/load-fragment-gperf.gperf.m4
1225 src/core/load-fragment-gperf.gperf \
1226 src/core/load-fragment-gperf.c \
1227 src/core/load-fragment-gperf-nulstr.c \
1228 src/shared/errno-list.txt \
1229 src/shared/errno-from-name.gperf \
1230 src/shared/af-list.txt \
1231 src/shared/af-from-name.gperf \
1232 src/shared/arphrd-list.txt \
1233 src/shared/arphrd-from-name.gperf \
1234 src/shared/cap-list.txt \
1235 src/shared/cap-from-name.gperf \
1236 src/resolve/dns_type-list.txt \
1237 src/resolve/dns_type-from-name.gperf
1240 src/shared/errno-from-name.h \
1241 src/shared/errno-to-name.h \
1242 src/shared/af-from-name.h \
1243 src/shared/af-to-name.h \
1244 src/shared/arphrd-from-name.h \
1245 src/shared/arphrd-to-name.h \
1246 src/shared/cap-from-name.h \
1247 src/shared/cap-to-name.h \
1248 src/resolve/dns_type-from-name.h \
1249 src/resolve/dns_type-to-name.h
1251 %-from-name.gperf: %-list.txt
1252 $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct $(notdir $*)_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
1254 %-from-name.h: %-from-name.gperf
1255 $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_$(notdir $*) -H hash_$(notdir $*)_name -p -C <$< >$@
1258 src/shared/errno-list.txt:
1259 $(AM_V_at)$(MKDIR_P) $(dir $@)
1260 $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include errno.h - </dev/null | $(AWK) '/^#define[ \t]+E[^ _]+[ \t]+/ { print $$2; }' >$@
1262 src/shared/errno-to-name.h: src/shared/errno-list.txt
1263 $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const errno_names[] = { "} !/EDEADLOCK/ && !/EWOULDBLOCK/ && !/ENOTSUP/ { printf "[%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
1266 src/shared/af-list.txt:
1267 $(AM_V_at)$(MKDIR_P) $(dir $@)
1268 $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include sys/socket.h - </dev/null | grep -v AF_UNSPEC | grep -v AF_MAX | $(AWK) '/^#define[ \t]+AF_[^ \t]+[ \t]+PF_[^ \t]/ { print $$2; }' >$@
1270 src/shared/af-to-name.h: src/shared/af-list.txt
1271 $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const af_names[] = { "} !/AF_FILE/ && !/AF_ROUTE/ && !/AF_LOCAL/ { printf "[%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
1274 src/shared/arphrd-list.txt:
1275 $(AM_V_at)$(MKDIR_P) $(dir $@)
1276 $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include net/if_arp.h - </dev/null | $(AWK) '/^#define[ \t]+ARPHRD_[^ \t]+[ \t]+[^ \t]/ { print $$2; }' | sed -e 's/ARPHRD_//' >$@
1278 src/shared/arphrd-to-name.h: src/shared/arphrd-list.txt
1279 $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const arphrd_names[] = { "} !/CISCO/ { printf "[ARPHRD_%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
1281 src/shared/arphrd-from-name.gperf: src/shared/arphrd-list.txt
1282 $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct arphrd_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, ARPHRD_%s\n", $$1, $$1 }' <$< >$@
1285 src/shared/cap-list.txt:
1286 $(AM_V_at)$(MKDIR_P) $(dir $@)
1287 $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/capability.h -include missing.h - </dev/null | $(AWK) '/^#define[ \t]+CAP_[A-Z_]+[ \t]+/ { print $$2; }' | grep -v CAP_LAST_CAP >$@
1289 src/shared/cap-to-name.h: src/shared/cap-list.txt
1290 $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const capability_names[] = { "} { printf "[%s] = \"%s\",\n", $$1, tolower($$1) } END{print "};"}' <$< >$@
1292 src/shared/cap-from-name.gperf: src/shared/cap-list.txt
1293 $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct capability_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
1295 src/shared/cap-from-name.h: src/shared/cap-from-name.gperf
1296 $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_capability -H hash_capability_name -p -C <$< >$@
1299 src/resolve/dns_type-list.txt: src/resolve/dns-type.h
1300 $(AM_V_at)$(MKDIR_P) $(dir $@)
1301 $(AM_V_GEN)$(SED) -n -r 's/.* DNS_TYPE_(\w+).*/\1/p' <$< >$@
1303 src/resolve/dns_type-to-name.h: src/resolve/dns_type-list.txt
1304 $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char *dns_type_to_string(int type) {\n\tswitch(type) {" } {printf " case DNS_TYPE_%s: return ", $$1; sub(/_/, "-"); printf "\"%s\";\n", $$1 } END{ print "\ndefault: return NULL;\n\t}\n}\n" }' <$< >$@
1306 src/resolve/dns_type-from-name.gperf: src/resolve/dns_type-list.txt
1307 $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct dns_type_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { s=$$1; sub(/_/, "-", s); printf "%s, ", $$s; printf "DNS_TYPE_%s\n", $$1 }' <$< >$@
1309 # ------------------------------------------------------------------------------
1318 libsystemd-core.la \
1321 dist_pkgsysconf_DATA += \
1322 src/core/system.conf \
1325 dist_dbuspolicy_DATA += \
1326 src/core/org.freedesktop.systemd1.conf
1328 dist_dbussystemservice_DATA += \
1329 src/core/org.freedesktop.systemd1.service
1331 polkitpolicy_in_in_files += \
1332 src/core/org.freedesktop.systemd1.policy.in.in
1334 pkgconfiglib_DATA += \
1337 nodist_rpmmacros_DATA = \
1338 src/core/macros.systemd
1341 src/core/systemd.pc.in \
1342 src/core/macros.systemd.in
1345 src/core/macros.systemd \
1346 src/core/org.freedesktop.systemd1.policy.in
1348 # ------------------------------------------------------------------------------
1398 test-strip-tab-ansi \
1434 test/daughter.service \
1439 test/grandchild.service \
1441 test/hello-after-sleep.target \
1442 test/hello.service \
1444 test/parent-deep.slice \
1447 test/sched_idle_bad.service \
1448 test/sched_idle_ok.service \
1449 test/sched_rr_bad.service \
1450 test/sched_rr_change.service \
1451 test/sched_rr_ok.service \
1452 test/shutdown.target \
1453 test/sleep.service \
1454 test/sockets.target \
1456 test/sysinit.target \
1457 test/testsuite.target \
1458 test/timers.target \
1459 test/unstoppable.service \
1460 test/path-changed.service \
1461 test/path-directorynotempty.service \
1462 test/path-existsglob.service \
1463 test/path-exists.service \
1464 test/path-makedirectory.service \
1465 test/path-modified.service \
1466 test/path-mycustomunit.service \
1467 test/path-service.service \
1468 test/path-changed.path \
1469 test/path-directorynotempty.path \
1470 test/path-existsglob.path \
1471 test/path-exists.path \
1472 test/path-makedirectory.path \
1473 test/path-modified.path \
1474 test/path-unit.path \
1475 test/exec-environment-empty.service \
1476 test/exec-environment-multiple.service \
1477 test/exec-environment.service \
1478 test/exec-group.service \
1479 test/exec-ignoresigpipe-no.service \
1480 test/exec-ignoresigpipe-yes.service \
1481 test/exec-personality-x86-64.service \
1482 test/exec-personality-x86.service \
1483 test/exec-privatedevices-no.service \
1484 test/exec-privatedevices-yes.service \
1485 test/exec-privatetmp-no.service \
1486 test/exec-privatetmp-yes.service \
1487 test/exec-systemcallerrornumber.service \
1488 test/exec-systemcallfilter-failing2.service \
1489 test/exec-systemcallfilter-failing.service \
1490 test/exec-systemcallfilter-not-failing2.service \
1491 test/exec-systemcallfilter-not-failing.service \
1492 test/exec-user.service \
1493 test/exec-workingdirectory.service \
1494 test/exec-umask-0177.service \
1495 test/exec-umask-default.service \
1496 test/bus-policy/hello.conf \
1497 test/bus-policy/methods.conf \
1498 test/bus-policy/ownerships.conf \
1499 test/bus-policy/signals.conf \
1500 test/bus-policy/check-own-rules.conf \
1501 test/bus-policy/many-rules.conf \
1502 test/bus-policy/test.conf
1506 src/test/test-helper.h
1508 test_device_nodes_SOURCES = \
1509 src/test/test-device-nodes.c
1511 test_device_nodes_LDADD = \
1512 libsystemd-shared.la
1514 test_engine_SOURCES = \
1515 src/test/test-engine.c
1517 test_engine_CFLAGS = \
1521 test_engine_LDADD = \
1522 libsystemd-core.la \
1525 test_job_type_SOURCES = \
1526 src/test/test-job-type.c
1528 test_job_type_CFLAGS = \
1532 test_job_type_LDADD = \
1533 libsystemd-core.la \
1546 test_loopback_SOURCES = \
1547 src/test/test-loopback.c
1549 test_loopback_LDADD = \
1552 test_hostname_SOURCES = \
1553 src/test/test-hostname.c
1555 test_hostname_LDADD = \
1562 test_boot_timestamp_SOURCES = \
1563 src/test/test-boot-timestamps.c
1565 test_boot_timestamp_LDADD = \
1566 libsystemd-shared.la
1569 test_unit_name_SOURCES = \
1570 src/test/test-unit-name.c
1572 test_unit_name_CFLAGS = \
1576 test_unit_name_LDADD = \
1577 libsystemd-core.la \
1580 test_unit_file_SOURCES = \
1581 src/test/test-unit-file.c
1583 test_unit_file_CFLAGS = \
1587 test_unit_file_LDADD = \
1588 libsystemd-core.la \
1591 test_utf8_SOURCES = \
1592 src/test/test-utf8.c
1595 libsystemd-shared.la
1597 test_capability_SOURCES = \
1598 src/test/test-capability.c
1600 test_capability_LDADD = \
1601 libsystemd-shared.la
1603 test_async_SOURCES = \
1604 src/test/test-async.c
1606 test_async_LDADD = \
1607 libsystemd-shared.la
1609 test_locale_util_SOURCES = \
1610 src/test/test-locale-util.c
1612 test_locale_util_LDADD = \
1613 libsystemd-shared.la
1615 test_copy_SOURCES = \
1616 src/test/test-copy.c
1619 libsystemd-label.la \
1620 libsystemd-shared.la
1622 test_sigbus_SOURCES = \
1623 src/test/test-sigbus.c
1625 test_sigbus_LDADD = \
1626 libsystemd-shared.la
1628 test_condition_SOURCES = \
1629 src/test/test-condition.c
1631 test_condition_LDADD = \
1632 libsystemd-label.la \
1633 libsystemd-internal.la \
1634 libsystemd-shared.la
1636 test_fdset_SOURCES = \
1637 src/test/test-fdset.c
1639 test_fdset_LDADD = \
1640 libsystemd-shared.la \
1641 libsystemd-internal.la
1643 test_fstab_util_SOURCES = \
1644 src/test/test-fstab-util.c
1646 test_fstab_util_LDADD = \
1647 libsystemd-shared.la
1649 test_ratelimit_SOURCES = \
1650 src/test/test-ratelimit.c
1652 test_ratelimit_LDADD = \
1653 libsystemd-shared.la
1655 test_util_SOURCES = \
1656 src/test/test-util.c
1659 libsystemd-shared.la
1661 test_path_lookup_SOURCES = \
1662 src/test/test-path-lookup.c
1664 test_path_lookup_LDADD = \
1666 libsystemd-units.la \
1667 libsystemd-shared.la
1669 test_uid_range_SOURCES = \
1670 src/test/test-uid-range.c
1672 test_uid_range_LDADD = \
1673 libsystemd-shared.la
1675 test_cap_list_SOURCES = \
1676 src/test/test-cap-list.c
1678 test_cap_list_LDADD = \
1679 libsystemd-shared.la
1681 test_socket_util_SOURCES = \
1682 src/test/test-socket-util.c
1684 test_socket_util_LDADD = \
1685 libsystemd-shared.la
1687 test_ring_SOURCES = \
1688 src/test/test-ring.c
1691 libsystemd-shared.la
1693 test_barrier_SOURCES = \
1694 src/test/test-barrier.c
1696 test_barrier_LDADD = \
1697 libsystemd-shared.la
1699 test_pty_SOURCES = \
1705 test_tmpfiles_SOURCES = \
1706 src/test/test-tmpfiles.c
1708 test_tmpfiles_LDADD = \
1709 libsystemd-shared.la
1711 test_namespace_SOURCES = \
1712 src/test/test-namespace.c
1714 test_verbs_SOURCES = \
1715 src/test/test-verbs.c
1717 test_verbs_LDADD = \
1718 libsystemd-shared.la
1720 test_namespace_LDADD = \
1724 src/test/test-hashmap-ordered.c
1727 src/test/test-hashmap-ordered.c
1729 src/test/test-hashmap-ordered.c: src/test/test-hashmap-plain.c
1730 $(AM_V_at)$(MKDIR_P) $(dir $@)
1731 $(AM_V_GEN)$(AWK) 'BEGIN { print "/* GENERATED FILE */\n#define ORDERED" } \
1732 { if (!match($$0, "^#include")) \
1733 gsub(/hashmap/, "ordered_hashmap"); \
1734 gsub(/HASHMAP/, "ORDERED_HASHMAP"); \
1735 gsub(/Hashmap/, "OrderedHashmap"); \
1738 nodist_test_hashmap_SOURCES = \
1739 src/test/test-hashmap-ordered.c
1741 test_hashmap_SOURCES = \
1742 src/test/test-hashmap.c \
1743 src/test/test-hashmap-plain.c
1745 test_hashmap_LDADD = \
1746 libsystemd-shared.la
1748 test_set_SOURCES = \
1752 libsystemd-shared.la
1754 test_xml_SOURCES = \
1758 libsystemd-shared.la
1760 test_json_SOURCES = \
1761 src/test/test-json.c
1764 libsystemd-shared.la
1766 test_list_SOURCES = \
1767 src/test/test-list.c
1770 libsystemd-shared.la
1772 test_unaligned_LDADD = \
1773 libsystemd-shared.la
1775 test_unaligned_SOURCES = \
1776 src/test/test-unaligned.c
1778 test_tables_SOURCES = \
1779 src/test/test-tables.c \
1780 src/shared/test-tables.h \
1781 src/bus-proxyd/bus-xml-policy.c \
1782 src/bus-proxyd/bus-xml-policy.h \
1783 src/journal/journald-server.c \
1784 src/journal/journald-server.h
1786 test_tables_CPPFLAGS = \
1788 -I$(top_srcdir)/src/bus-proxyd
1790 test_tables_CFLAGS = \
1794 test_tables_LDADD = \
1795 libsystemd-logs.la \
1796 libsystemd-journal-internal.la \
1797 libsystemd-journal-core.la \
1798 libsystemd-core.la \
1802 test_prioq_SOURCES = \
1803 src/test/test-prioq.c
1805 test_prioq_LDADD = \
1806 libsystemd-shared.la
1808 test_fileio_SOURCES = \
1809 src/test/test-fileio.c
1811 test_fileio_LDADD = \
1812 libsystemd-shared.la
1814 test_time_SOURCES = \
1815 src/test/test-time.c
1818 libsystemd-shared.la
1820 test_architecture_SOURCES = \
1821 src/test/test-architecture.c
1823 test_architecture_LDADD = \
1824 libsystemd-shared.la
1826 test_log_SOURCES = \
1830 libsystemd-shared.la
1832 test_ipcrm_SOURCES = \
1833 src/test/test-ipcrm.c
1835 test_ipcrm_LDADD = \
1836 libsystemd-shared.la \
1839 test_btrfs_SOURCES = \
1840 src/test/test-btrfs.c
1842 test_btrfs_LDADD = \
1843 libsystemd-label.la \
1844 libsystemd-shared.la
1847 test_fw_util_SOURCES = \
1848 src/test/test-fw-util.c
1850 test_fw_util_CFLAGS = \
1854 test_fw_util_LDADD = \
1856 libsystemd-shared.la \
1860 test_rtnl_manual_SOURCES = \
1861 src/test/test-rtnl-manual.c
1863 test_rtnl_manual_CFLAGS = \
1867 test_rtnl_manual_LDADD = \
1868 libsystemd-internal.la \
1869 libsystemd-shared.la \
1872 test_ellipsize_SOURCES = \
1873 src/test/test-ellipsize.c
1875 test_ellipsize_LDADD = \
1876 libsystemd-shared.la
1878 test_date_SOURCES = \
1879 src/test/test-date.c
1882 libsystemd-shared.la
1884 test_sleep_SOURCES = \
1885 src/test/test-sleep.c
1887 test_sleep_LDADD = \
1890 test_replace_var_SOURCES = \
1891 src/test/test-replace-var.c
1893 test_replace_var_LDADD = \
1894 libsystemd-shared.la
1896 test_calendarspec_SOURCES = \
1897 src/test/test-calendarspec.c
1899 test_calendarspec_LDADD = \
1900 libsystemd-shared.la
1902 test_strip_tab_ansi_SOURCES = \
1903 src/test/test-strip-tab-ansi.c
1905 test_strip_tab_ansi_LDADD = \
1906 libsystemd-shared.la
1908 test_daemon_SOURCES = \
1909 src/test/test-daemon.c
1911 test_daemon_LDADD = \
1912 libsystemd-internal.la \
1913 libsystemd-shared.la
1915 test_cgroup_SOURCES = \
1916 src/test/test-cgroup.c
1918 test_cgroup_LDADD = \
1919 libsystemd-label.la \
1920 libsystemd-shared.la \
1921 libsystemd-internal.la
1923 test_cgroup_mask_SOURCES = \
1924 src/test/test-cgroup-mask.c
1926 test_cgroup_mask_CPPFLAGS = \
1929 test_cgroup_mask_CFLAGS = \
1933 test_cgroup_mask_LDADD = \
1934 libsystemd-core.la \
1937 test_cgroup_util_SOURCES = \
1938 src/test/test-cgroup-util.c
1940 test_cgroup_util_LDADD = \
1941 libsystemd-label.la \
1942 libsystemd-internal.la \
1943 libsystemd-shared.la
1945 test_env_replace_SOURCES = \
1946 src/test/test-env-replace.c
1948 test_env_replace_LDADD = \
1949 libsystemd-shared.la
1951 test_strbuf_SOURCES = \
1952 src/test/test-strbuf.c
1954 test_strbuf_LDADD = \
1955 libsystemd-shared.la
1957 test_strv_SOURCES = \
1958 src/test/test-strv.c
1961 libsystemd-units.la \
1962 libsystemd-internal.la \
1963 libsystemd-shared.la
1965 test_path_util_SOURCES = \
1966 src/test/test-path-util.c
1968 test_path_util_LDADD = \
1969 libsystemd-shared.la
1971 test_path_SOURCES = \
1972 src/test/test-path.c
1974 test_path_CFLAGS = \
1980 test_execute_SOURCES = \
1981 src/test/test-execute.c
1983 test_execute_CFLAGS = \
1986 test_execute_LDADD = \
1989 test_strxcpyx_SOURCES = \
1990 src/test/test-strxcpyx.c
1992 test_strxcpyx_LDADD = \
1993 libsystemd-shared.la
1995 test_install_SOURCES = \
1996 src/test/test-install.c
1998 test_install_LDADD = \
1999 libsystemd-units.la \
2000 libsystemd-label.la \
2001 libsystemd-shared.la \
2002 libsystemd-internal.la
2004 test_watchdog_SOURCES = \
2005 src/test/test-watchdog.c
2007 test_watchdog_LDADD = \
2008 libsystemd-shared.la
2010 test_sched_prio_SOURCES = \
2011 src/test/test-sched-prio.c
2013 test_sched_prio_CPPFLAGS = \
2016 test_sched_prio_CFLAGS = \
2020 test_sched_prio_LDADD = \
2021 libsystemd-core.la \
2024 test_conf_files_SOURCES = \
2025 src/test/test-conf-files.c
2027 test_conf_files_LDADD = \
2028 libsystemd-shared.la
2030 test_bus_policy_SOURCES = \
2031 src/bus-proxyd/test-bus-xml-policy.c
2033 test_bus_policy_LDADD = \
2034 libsystemd-proxy.la \
2035 libsystemd-internal.la \
2036 libsystemd-shared.la
2038 # ------------------------------------------------------------------------------
2039 ## .PHONY so it always rebuilds it
2040 .PHONY: coverage lcov-run lcov-report coverage-sync
2042 # run lcov from scratch, always
2047 coverage_dir = coverage
2048 coverage_opts = --base-directory $(srcdir) --directory $(builddir) --rc 'geninfo_adjust_src_path=$(abspath $(srcdir))=>$(abspath $(builddir))'
2051 # reset run coverage tests
2053 @rm -rf $(coverage_dir)
2054 lcov $(coverage_opts) --zerocounters
2057 # generate report based on current coverage data
2059 $(MKDIR_P) $(coverage_dir)
2060 lcov $(coverage_opts) --compat-libtool --capture --no-external \
2061 | sed 's|$(abspath $(builddir))|$(abspath $(srcdir))|' > $(coverage_dir)/.lcov.info
2062 lcov --remove $(coverage_dir)/.lcov.info --output-file $(coverage_dir)/.lcov-clean.info 'test-*'
2063 genhtml -t "systemd test coverage" -o $(coverage_dir) $(coverage_dir)/.lcov-clean.info
2064 @echo "Coverage report generated in $(abs_builddir)/$(coverage_dir)/index.html"
2066 # lcov doesn't work properly with vpath builds, make sure that bad
2067 # output is not uploaded by mistake.
2068 coverage-sync: coverage
2069 test "$(builddir)" = "$(srcdir)"
2070 rsync -rlv --delete --omit-dir-times coverage/ $(www_target)/coverage
2073 lcov-run lcov-report:
2074 echo "Need to reconfigure with --enable-coverage"
2077 # ------------------------------------------------------------------------------
2078 systemd_analyze_SOURCES = \
2079 src/analyze/analyze.c \
2080 src/analyze/analyze-verify.c \
2081 src/analyze/analyze-verify.h
2083 systemd_verify_CFLAGS = \
2087 systemd_analyze_LDADD = \
2088 libsystemd-core.la \
2089 libsystemd-internal.la \
2090 libsystemd-shared.la \
2093 # ------------------------------------------------------------------------------
2094 systemd_initctl_SOURCES = \
2095 src/initctl/initctl.c
2097 systemd_initctl_LDADD = \
2098 libsystemd-internal.la \
2099 libsystemd-shared.la
2101 # ------------------------------------------------------------------------------
2102 systemd_update_utmp_SOURCES = \
2103 src/update-utmp/update-utmp.c
2105 systemd_update_utmp_CFLAGS = \
2109 systemd_update_utmp_LDADD = \
2110 libsystemd-internal.la \
2111 libsystemd-shared.la \
2114 # ------------------------------------------------------------------------------
2115 systemd_update_done_SOURCES = \
2116 src/update-done/update-done.c
2118 systemd_update_done_LDADD = \
2119 libsystemd-internal.la \
2120 libsystemd-label.la \
2121 libsystemd-shared.la
2123 # ------------------------------------------------------------------------------
2124 systemd_shutdownd_SOURCES = \
2125 src/shutdownd/shutdownd.c
2127 systemd_shutdownd_LDADD = \
2128 libsystemd-label.la \
2129 libsystemd-internal.la \
2130 libsystemd-shared.la
2133 src/systemd/sd-shutdown.h
2135 # ------------------------------------------------------------------------------
2136 systemd_shutdown_SOURCES = \
2139 src/core/shutdown.c \
2140 src/core/mount-setup.c \
2141 src/core/mount-setup.h \
2142 src/core/killall.h \
2145 systemd_shutdown_LDADD = \
2146 libsystemd-label.la \
2147 libudev-internal.la \
2148 libsystemd-shared.la
2150 # ------------------------------------------------------------------------------
2152 systemd_modules_load_SOURCES = \
2153 src/modules-load/modules-load.c
2155 systemd_modules_load_CFLAGS = \
2159 systemd_modules_load_LDADD = \
2160 libsystemd-shared.la \
2163 rootlibexec_PROGRAMS += \
2164 systemd-modules-load
2166 nodist_systemunit_DATA += \
2167 units/systemd-modules-load.service
2169 SYSINIT_TARGET_WANTS += \
2170 systemd-modules-load.service
2173 nodist_systemunit_DATA += \
2174 units/kmod-static-nodes.service
2176 SYSINIT_TARGET_WANTS += \
2177 kmod-static-nodes.service
2182 units/systemd-modules-load.service.in \
2183 units/kmod-static-nodes.service.in
2185 # ------------------------------------------------------------------------------
2187 systemd_tmpfiles_SOURCES = \
2188 src/tmpfiles/tmpfiles.c
2190 systemd_tmpfiles_LDADD = \
2191 libsystemd-units.la \
2192 libsystemd-label.la \
2193 libsystemd-internal.la \
2194 libsystemd-shared.la
2197 systemd_tmpfiles_LDADD += \
2201 rootbin_PROGRAMS += \
2204 dist_systemunit_DATA += \
2205 units/systemd-tmpfiles-clean.timer
2207 nodist_systemunit_DATA += \
2208 units/systemd-tmpfiles-setup-dev.service \
2209 units/systemd-tmpfiles-setup.service \
2210 units/systemd-tmpfiles-clean.service
2212 nodist_tmpfiles_DATA = \
2215 dist_tmpfiles_DATA = \
2216 tmpfiles.d/systemd.conf \
2217 tmpfiles.d/systemd-nologin.conf \
2218 tmpfiles.d/tmp.conf \
2219 tmpfiles.d/x11.conf \
2223 dist_tmpfiles_DATA += \
2224 tmpfiles.d/legacy.conf
2227 SYSINIT_TARGET_WANTS += \
2228 systemd-tmpfiles-setup-dev.service \
2229 systemd-tmpfiles-setup.service
2231 dist_zshcompletion_DATA += \
2232 shell-completion/zsh/_systemd-tmpfiles
2234 TIMERS_TARGET_WANTS += \
2235 systemd-tmpfiles-clean.timer
2239 $(sysconfdir)/tmpfiles.d
2243 tmpfiles.d/etc.conf.m4 \
2244 units/systemd-tmpfiles-setup-dev.service.in \
2245 units/systemd-tmpfiles-setup.service.in \
2246 units/systemd-tmpfiles-clean.service.in
2251 # ------------------------------------------------------------------------------
2253 systemd_sysusers_SOURCES = \
2254 src/sysusers/sysusers.c
2256 systemd_sysusers_LDADD = \
2257 libsystemd-units.la \
2258 libsystemd-label.la \
2259 libsystemd-internal.la \
2260 libsystemd-shared.la
2262 rootbin_PROGRAMS += \
2265 nodist_systemunit_DATA += \
2266 units/systemd-sysusers.service
2268 SYSINIT_TARGET_WANTS += \
2269 systemd-sysusers.service
2271 dist_sysusers_DATA = \
2272 sysusers.d/systemd.conf
2274 nodist_sysusers_DATA = \
2275 sysusers.d/basic.conf
2278 units/systemd-sysusers.service.in \
2279 sysusers.d/basic.conf.in
2282 sysusers.d/basic.conf
2288 # ------------------------------------------------------------------------------
2289 dist_factory_etc_DATA = \
2290 factory/etc/nsswitch.conf
2293 dist_factory_pam_DATA = \
2294 factory/etc/pam.d/system-auth \
2295 factory/etc/pam.d/other
2298 # ------------------------------------------------------------------------------
2300 systemd_firstboot_SOURCES = \
2301 src/firstboot/firstboot.c
2303 systemd_firstboot_LDADD = \
2304 libsystemd-units.la \
2305 libsystemd-label.la \
2306 libsystemd-internal.la \
2307 libsystemd-shared.la \
2310 rootbin_PROGRAMS += \
2313 nodist_systemunit_DATA += \
2314 units/systemd-firstboot.service
2317 units/systemd-firstboot.service.in
2319 SYSINIT_TARGET_WANTS += \
2320 systemd-firstboot.service
2323 # ------------------------------------------------------------------------------
2324 systemd_machine_id_setup_SOURCES = \
2325 src/machine-id-setup/machine-id-setup-main.c \
2326 src/core/machine-id-setup.c \
2327 src/core/machine-id-setup.h
2329 systemd_machine_id_setup_LDADD = \
2330 libsystemd-label.la \
2331 libsystemd-internal.la \
2332 libsystemd-shared.la
2334 # ------------------------------------------------------------------------------
2335 systemd_sysctl_SOURCES = \
2338 systemd_sysctl_LDADD = \
2339 libsystemd-shared.la
2341 # ------------------------------------------------------------------------------
2342 systemd_sleep_SOURCES = \
2345 systemd_sleep_LDADD = \
2346 libsystemd-shared.la
2348 # ------------------------------------------------------------------------------
2349 systemd_fsck_SOURCES = \
2352 systemd_fsck_LDADD = \
2353 libsystemd-internal.la \
2354 libudev-internal.la \
2355 libsystemd-shared.la
2357 # ------------------------------------------------------------------------------
2358 systemd_machine_id_commit_SOURCES = \
2359 src/machine-id-commit/machine-id-commit.c \
2360 src/core/machine-id-setup.c \
2361 src/core/machine-id-setup.h
2363 systemd_machine_id_commit_LDADD = \
2364 libsystemd-label.la \
2365 libsystemd-internal.la \
2366 libsystemd-shared.la
2368 SYSINIT_TARGET_WANTS += \
2369 systemd-machine-id-commit.service
2371 # ------------------------------------------------------------------------------
2372 systemd_ac_power_SOURCES = \
2373 src/ac-power/ac-power.c
2375 systemd_ac_power_LDADD = \
2376 libudev-internal.la \
2377 libsystemd-shared.la
2379 # ------------------------------------------------------------------------------
2380 systemd_detect_virt_SOURCES = \
2381 src/detect-virt/detect-virt.c
2383 systemd_detect_virt_LDADD = \
2384 libsystemd-shared.la
2386 INSTALL_EXEC_HOOKS += \
2387 systemd-detect-virt-install-hook
2389 # ------------------------------------------------------------------------------
2390 systemd_delta_SOURCES = \
2393 systemd_delta_LDADD = \
2394 libsystemd-shared.la
2396 # ------------------------------------------------------------------------------
2397 systemd_getty_generator_SOURCES = \
2398 src/getty-generator/getty-generator.c
2400 systemd_getty_generator_LDADD = \
2401 libsystemd-label.la \
2402 libsystemd-shared.la
2404 # ------------------------------------------------------------------------------
2405 systemd_debug_generator_SOURCES = \
2406 src/debug-generator/debug-generator.c
2408 systemd_debug_generator_LDADD = \
2409 libsystemd-label.la \
2410 libsystemd-shared.la
2412 # ------------------------------------------------------------------------------
2413 systemd_fstab_generator_SOURCES = \
2414 src/fstab-generator/fstab-generator.c \
2415 src/core/mount-setup.c
2417 systemd_fstab_generator_LDADD = \
2418 libsystemd-label.la \
2419 libsystemd-shared.la
2421 # ------------------------------------------------------------------------------
2422 systemd_system_update_generator_SOURCES = \
2423 src/system-update-generator/system-update-generator.c
2425 systemd_system_update_generator_LDADD = \
2426 libsystemd-label.la \
2427 libsystemd-shared.la
2429 # ------------------------------------------------------------------------------
2431 systemgenerator_PROGRAMS += \
2432 systemd-hibernate-resume-generator
2434 rootlibexec_PROGRAMS += \
2435 systemd-hibernate-resume
2437 systemd_hibernate_resume_SOURCES = \
2438 src/hibernate-resume/hibernate-resume.c
2440 systemd_hibernate_resume_LDADD = \
2441 libsystemd-internal.la \
2442 libsystemd-shared.la
2444 systemd_hibernate_resume_generator_SOURCES = \
2445 src/hibernate-resume/hibernate-resume-generator.c
2447 systemd_hibernate_resume_generator_LDADD = \
2448 libsystemd-label.la \
2449 libsystemd-shared.la
2452 units/systemd-hibernate.service.in \
2453 units/systemd-hibernate-resume@.service.in \
2454 units/systemd-hybrid-sleep.service.in
2456 dist_systemunit_DATA += \
2457 units/hibernate.target \
2458 units/hybrid-sleep.target
2460 nodist_systemunit_DATA += \
2461 units/systemd-hibernate.service \
2462 units/systemd-hibernate-resume@.service \
2463 units/systemd-hybrid-sleep.service
2466 # ------------------------------------------------------------------------------
2468 systemgenerator_PROGRAMS += \
2469 systemd-efi-boot-generator
2471 systemd_efi_boot_generator_SOURCES = \
2472 src/efi-boot-generator/efi-boot-generator.c
2474 systemd_efi_boot_generator_LDADD = \
2475 libsystemd-label.la \
2476 libsystemd-shared.la
2478 # ------------------------------------------------------------------------------
2481 src/boot/boot-loader.h \
2482 src/boot/bootctl.c \
2483 src/boot/boot-loader.c \
2487 libsystemd-shared.la \
2488 libsystemd-internal.la
2493 dist_bashcompletion_DATA += \
2494 shell-completion/bash/bootctl
2496 dist_zshcompletion_DATA += \
2497 shell-completion/zsh/_bootctl
2501 # ------------------------------------------------------------------------------
2503 systemgenerator_PROGRAMS += \
2504 systemd-gpt-auto-generator
2506 systemd_gpt_auto_generator_SOURCES = \
2507 src/gpt-auto-generator/gpt-auto-generator.c \
2508 src/shared/blkid-util.h
2510 systemd_gpt_auto_generator_LDADD = \
2511 libsystemd-label.la \
2512 libsystemd-internal.la \
2513 libudev-internal.la \
2514 libsystemd-shared.la \
2517 systemd_gpt_auto_generator_CFLAGS = \
2522 # ------------------------------------------------------------------------------
2524 systemgenerator_PROGRAMS += \
2525 systemd-dbus1-generator
2527 systemd_dbus1_generator_SOURCES = \
2528 src/dbus1-generator/dbus1-generator.c
2530 systemd_dbus1_generator_LDADD = \
2531 libsystemd-label.la \
2532 libsystemd-internal.la \
2533 libsystemd-shared.la
2535 dbus1-generator-install-hook:
2536 $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(usergeneratordir)
2537 $(AM_V_RM)rm -f $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2538 $(AM_V_LN)$(LN_S) --relative -f $(DESTDIR)$(systemgeneratordir)/systemd-dbus1-generator $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2540 dbus1-generator-uninstall-hook:
2541 rm -f $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2543 dist_xinitrc_SCRIPTS = \
2544 xorg/50-systemd-user.sh
2546 INSTALL_EXEC_HOOKS += dbus1-generator-install-hook
2547 UNINSTALL_EXEC_HOOKS += dbus1-generator-uninstall-hook
2550 # ------------------------------------------------------------------------------
2551 systemd_sysv_generator_SOURCES = \
2552 src/sysv-generator/sysv-generator.c
2554 systemd_sysv_generator_LDADD = \
2555 libsystemd-core.la \
2556 libsystemd-label.la \
2557 libsystemd-shared.la
2559 # ------------------------------------------------------------------------------
2560 systemd_rc_local_generator_SOURCES = \
2561 src/rc-local-generator/rc-local-generator.c
2563 systemd_rc_local_generator_LDADD = \
2564 libsystemd-label.la \
2565 libsystemd-shared.la
2567 # ------------------------------------------------------------------------------
2568 systemd_remount_fs_SOURCES = \
2569 src/remount-fs/remount-fs.c \
2570 src/core/mount-setup.c \
2571 src/core/mount-setup.h
2573 systemd_remount_fs_LDADD = \
2574 libsystemd-label.la \
2575 libsystemd-shared.la
2577 # ------------------------------------------------------------------------------
2578 systemd_cgroups_agent_SOURCES = \
2579 src/cgroups-agent/cgroups-agent.c
2581 systemd_cgroups_agent_LDADD = \
2582 libsystemd-internal.la \
2583 libsystemd-shared.la
2585 # ------------------------------------------------------------------------------
2586 systemd_escape_SOURCES = \
2589 systemd_escape_LDADD = \
2590 libsystemd-shared.la
2592 # -----------------------------------------------------------------------------
2593 systemctl_SOURCES = \
2594 src/systemctl/systemctl.c
2597 libsystemd-units.la \
2598 libsystemd-label.la \
2599 libsystemd-internal.la \
2600 libsystemd-logs.la \
2601 libsystemd-journal-internal.la \
2602 libsystemd-shared.la
2604 # ------------------------------------------------------------------------------
2605 systemd_notify_SOURCES = \
2608 systemd_notify_LDADD = \
2609 libsystemd-internal.la \
2610 libsystemd-shared.la
2612 # ------------------------------------------------------------------------------
2613 systemd_path_SOURCES = \
2616 systemd_path_LDADD = \
2617 libsystemd-internal.la \
2618 libsystemd-shared.la
2620 # ------------------------------------------------------------------------------
2621 systemd_ask_password_SOURCES = \
2622 src/ask-password/ask-password.c
2624 systemd_ask_password_LDADD = \
2625 libsystemd-label.la \
2626 libsystemd-shared.la
2628 # ------------------------------------------------------------------------------
2629 systemd_reply_password_SOURCES = \
2630 src/reply-password/reply-password.c
2632 systemd_reply_password_LDADD = \
2633 libsystemd-shared.la
2635 # ------------------------------------------------------------------------------
2636 systemd_cgls_SOURCES = \
2639 systemd_cgls_LDADD = \
2640 libsystemd-internal.la \
2641 libsystemd-shared.la
2643 # ------------------------------------------------------------------------------
2644 systemd_cgtop_SOURCES = \
2647 systemd_cgtop_LDADD = \
2648 libsystemd-shared.la
2650 # ------------------------------------------------------------------------------
2651 systemd_nspawn_SOURCES = \
2652 src/nspawn/nspawn.c \
2653 src/core/mount-setup.c \
2654 src/core/mount-setup.h \
2655 src/core/loopback-setup.c \
2656 src/core/loopback-setup.h
2658 systemd_nspawn_CFLAGS = \
2663 systemd_nspawn_LDADD = \
2664 libsystemd-label.la \
2665 libsystemd-internal.la \
2666 libudev-internal.la \
2667 libsystemd-shared.la \
2671 systemd_nspawn_LDADD += \
2672 libsystemd-seccomp.la \
2677 systemd_nspawn_LDADD += \
2681 # ------------------------------------------------------------------------------
2682 systemd_run_SOURCES = \
2685 systemd_run_LDADD = \
2686 libsystemd-label.la \
2687 libsystemd-internal.la \
2688 libsystemd-shared.la
2690 # ------------------------------------------------------------------------------
2691 noinst_LTLIBRARIES += \
2694 libsystemd_proxy_la_SOURCES = \
2695 src/bus-proxyd/bus-xml-policy.c \
2696 src/bus-proxyd/bus-xml-policy.h \
2697 src/bus-proxyd/driver.c \
2698 src/bus-proxyd/driver.h \
2699 src/bus-proxyd/proxy.c \
2700 src/bus-proxyd/proxy.h \
2701 src/bus-proxyd/synthesize.c \
2702 src/bus-proxyd/synthesize.h
2704 libsystemd_proxy_la_CFLAGS = \
2708 libsystemd_proxy_la_LIBADD = \
2709 libsystemd-internal.la \
2710 libsystemd-shared.la
2712 systemd_bus_proxyd_SOURCES = \
2713 src/bus-proxyd/bus-proxyd.c
2715 systemd_bus_proxyd_CFLAGS = \
2719 systemd_bus_proxyd_LDADD = \
2720 libsystemd-proxy.la \
2721 libsystemd-internal.la \
2722 libsystemd-shared.la
2724 systemd_stdio_bridge_SOURCES = \
2725 src/bus-proxyd/stdio-bridge.c
2727 systemd_stdio_bridge_LDADD = \
2728 libsystemd-proxy.la \
2729 libsystemd-internal.la \
2730 libsystemd-shared.la
2733 nodist_systemunit_DATA += \
2734 units/systemd-bus-proxyd.service
2736 dist_systemunit_DATA += \
2737 units/systemd-bus-proxyd.socket
2739 nodist_userunit_DATA += \
2740 units/user/systemd-bus-proxyd.service
2742 dist_userunit_DATA += \
2743 units/user/systemd-bus-proxyd.socket
2747 units/systemd-bus-proxyd.service.m4.in \
2748 units/user/systemd-bus-proxyd.service.in
2751 units/systemd-bus-proxyd.service.m4
2754 bus-proxyd-set-cap-hook:
2755 -$(SETCAP) cap_mac_admin+ei $(DESTDIR)$(rootlibexecdir)/systemd-bus-proxyd
2757 INSTALL_EXEC_HOOKS += bus-proxyd-set-cap-hook
2760 # ------------------------------------------------------------------------------
2761 systemd_tty_ask_password_agent_SOURCES = \
2762 src/tty-ask-password-agent/tty-ask-password-agent.c
2764 systemd_tty_ask_password_agent_LDADD = \
2765 libsystemd-label.la \
2766 libsystemd-shared.la
2768 # ------------------------------------------------------------------------------
2769 libsystemd_internal_la_SOURCES = \
2770 src/systemd/sd-bus.h \
2771 src/systemd/sd-bus-protocol.h \
2772 src/systemd/sd-bus-vtable.h \
2773 src/systemd/sd-utf8.h \
2774 src/systemd/sd-event.h \
2775 src/systemd/sd-rtnl.h \
2776 src/systemd/sd-resolve.h \
2777 src/systemd/sd-login.h \
2778 src/systemd/sd-id128.h \
2779 src/systemd/sd-daemon.h \
2780 src/systemd/sd-path.h \
2781 src/systemd/sd-network.h \
2782 src/systemd/sd-hwdb.h \
2783 src/libsystemd/sd-bus/sd-bus.c \
2784 src/libsystemd/sd-bus/bus-control.c \
2785 src/libsystemd/sd-bus/bus-control.h \
2786 src/libsystemd/sd-bus/bus-error.c \
2787 src/libsystemd/sd-bus/bus-error.h \
2788 src/libsystemd/sd-bus/bus-common-errors.h \
2789 src/libsystemd/sd-bus/bus-common-errors.c \
2790 src/libsystemd/sd-bus/bus-internal.c \
2791 src/libsystemd/sd-bus/bus-internal.h \
2792 src/libsystemd/sd-bus/bus-socket.c \
2793 src/libsystemd/sd-bus/bus-socket.h \
2794 src/libsystemd/sd-bus/bus-kernel.c \
2795 src/libsystemd/sd-bus/bus-kernel.h \
2796 src/libsystemd/sd-bus/bus-container.c \
2797 src/libsystemd/sd-bus/bus-container.h \
2798 src/libsystemd/sd-bus/bus-message.c \
2799 src/libsystemd/sd-bus/bus-message.h \
2800 src/libsystemd/sd-bus/bus-creds.c \
2801 src/libsystemd/sd-bus/bus-creds.h \
2802 src/libsystemd/sd-bus/bus-signature.c \
2803 src/libsystemd/sd-bus/bus-signature.h \
2804 src/libsystemd/sd-bus/bus-type.c \
2805 src/libsystemd/sd-bus/bus-type.h \
2806 src/libsystemd/sd-bus/bus-match.c \
2807 src/libsystemd/sd-bus/bus-match.h \
2808 src/libsystemd/sd-bus/bus-bloom.c \
2809 src/libsystemd/sd-bus/bus-bloom.h \
2810 src/libsystemd/sd-bus/bus-introspect.c \
2811 src/libsystemd/sd-bus/bus-introspect.h \
2812 src/libsystemd/sd-bus/bus-objects.c \
2813 src/libsystemd/sd-bus/bus-objects.h \
2814 src/libsystemd/sd-bus/bus-gvariant.c \
2815 src/libsystemd/sd-bus/bus-gvariant.h \
2816 src/libsystemd/sd-bus/bus-convenience.c \
2817 src/libsystemd/sd-bus/bus-track.c \
2818 src/libsystemd/sd-bus/bus-track.h \
2819 src/libsystemd/sd-bus/bus-util.c \
2820 src/libsystemd/sd-bus/bus-util.h \
2821 src/libsystemd/sd-bus/bus-slot.c \
2822 src/libsystemd/sd-bus/bus-slot.h \
2823 src/libsystemd/sd-bus/bus-protocol.h \
2824 src/libsystemd/sd-bus/kdbus.h \
2825 src/libsystemd/sd-utf8/sd-utf8.c \
2826 src/libsystemd/sd-event/sd-event.c \
2827 src/libsystemd/sd-event/event-util.h \
2828 src/libsystemd/sd-rtnl/sd-rtnl.c \
2829 src/libsystemd/sd-rtnl/rtnl-internal.h \
2830 src/libsystemd/sd-rtnl/rtnl-message.c \
2831 src/libsystemd/sd-rtnl/rtnl-types.h \
2832 src/libsystemd/sd-rtnl/rtnl-types.c \
2833 src/libsystemd/sd-rtnl/rtnl-util.h \
2834 src/libsystemd/sd-rtnl/rtnl-util.c \
2835 src/libsystemd/sd-rtnl/local-addresses.h \
2836 src/libsystemd/sd-rtnl/local-addresses.c \
2837 src/libsystemd/sd-id128/sd-id128.c \
2838 src/libsystemd/sd-daemon/sd-daemon.c \
2839 src/libsystemd/sd-login/sd-login.c \
2840 src/libsystemd/sd-path/sd-path.c \
2841 src/libsystemd/sd-network/sd-network.c \
2842 src/libsystemd/sd-network/network-util.h \
2843 src/libsystemd/sd-network/network-util.c \
2844 src/libsystemd/sd-hwdb/sd-hwdb.c \
2845 src/libsystemd/sd-hwdb/hwdb-util.h \
2846 src/libsystemd/sd-hwdb/hwdb-internal.h
2848 nodist_libsystemd_internal_la_SOURCES = \
2849 src/libsystemd/libsystemd.sym
2851 libsystemd_internal_la_CFLAGS = \
2855 libsystemd_internal_la_LIBADD = \
2858 libsystemd_resolve_la_SOURCES = \
2859 src/libsystemd/sd-resolve/sd-resolve.c \
2860 src/libsystemd/sd-resolve/resolve-util.h
2862 libsystemd_resolve_la_CFLAGS = \
2866 libsystemd_resolve_la_LIBADD = \
2869 noinst_LTLIBRARIES += \
2870 libsystemd-internal.la \
2871 libsystemd-resolve.la
2873 libsystemd_dump_la_SOURCES = \
2874 src/libsystemd/sd-bus/bus-dump.c \
2875 src/libsystemd/sd-bus/bus-dump.h
2877 noinst_LTLIBRARIES += \
2881 src/libsystemd/libsystemd.sym.m4 \
2882 src/libsystemd/libsystemd.pc.in \
2883 src/libsystemd/sd-bus/DIFFERENCES \
2884 src/libsystemd/sd-bus/GVARIANT-SERIALIZATION
2887 src/libsystemd/libsystemd.sym
2890 src/libsystemd/libsystemd.sym
2892 libsystemd_la_SOURCES = \
2893 $(libsystemd_internal_la_SOURCES) \
2894 $(libsystemd_resolve_la_SOURCES) \
2895 $(libsystemd_journal_internal_la_SOURCES)
2897 nodist_libsystemd_la_SOURCES = \
2898 $(nodist_libsystemd_internal_la_SOURCES)
2900 libsystemd_la_CFLAGS = \
2901 $(libsystemd_internal_la_CFLAGS) \
2902 $(libsystemd_resolve_la_CFLAGS) \
2903 $(libsystemd_journal_internal_la_CFLAGS)
2905 libsystemd_la_LDFLAGS = \
2907 -version-info $(LIBSYSTEMD_CURRENT):$(LIBSYSTEMD_REVISION):$(LIBSYSTEMD_AGE) \
2908 -Wl,--version-script=$(top_builddir)/src/libsystemd/libsystemd.sym
2910 libsystemd_la_LIBADD = \
2911 libsystemd-shared.la \
2912 $(libsystemd_internal_la_LIBADD) \
2913 $(libsystemd_journal_internal_la_LIBADD) \
2914 $(libsystemd_resolve_la_LIBADD)
2916 libsystemd-install-hook:
2917 libname=libsystemd.so && $(move-to-rootlibdir)
2919 libsystemd-uninstall-hook:
2920 rm -f $(DESTDIR)$(rootlibdir)/libsystemd.so*
2922 INSTALL_EXEC_HOOKS += libsystemd-install-hook
2923 UNINSTALL_EXEC_HOOKS += libsystemd-uninstall-hook
2925 pkgconfiglib_DATA += \
2926 src/libsystemd/libsystemd.pc
2928 pkginclude_HEADERS += \
2929 src/systemd/sd-login.h \
2930 src/systemd/sd-id128.h \
2931 src/systemd/sd-daemon.h
2934 pkginclude_HEADERS += \
2935 src/systemd/sd-bus.h \
2936 src/systemd/sd-bus-protocol.h \
2937 src/systemd/sd-bus-vtable.h \
2938 src/systemd/sd-utf8.h \
2939 src/systemd/sd-event.h \
2940 src/systemd/sd-rtnl.h \
2941 src/systemd/sd-resolve.h \
2942 src/systemd/sd-path.h
2945 lib_LTLIBRARIES += \
2950 test-bus-signature \
2956 test-bus-kernel-bloom \
2957 test-bus-kernel-benchmark \
2958 test-bus-zero-copy \
2959 test-bus-introspect \
2966 test-local-addresses \
2972 test_bus_marshal_SOURCES = \
2973 src/libsystemd/sd-bus/test-bus-marshal.c
2975 test_bus_marshal_LDADD = \
2976 libsystemd-dump.la \
2977 libsystemd-internal.la \
2978 libsystemd-shared.la \
2982 test_bus_marshal_CFLAGS = \
2987 test_bus_signature_SOURCES = \
2988 src/libsystemd/sd-bus/test-bus-signature.c
2990 test_bus_signature_LDADD = \
2991 libsystemd-internal.la \
2992 libsystemd-shared.la
2994 test_bus_chat_SOURCES = \
2995 src/libsystemd/sd-bus/test-bus-chat.c
2997 test_bus_chat_CFLAGS = \
3001 test_bus_chat_LDADD = \
3002 libsystemd-internal.la \
3003 libsystemd-shared.la
3005 test_bus_cleanup_SOURCES = \
3006 src/libsystemd/sd-bus/test-bus-cleanup.c
3008 test_bus_cleanup_CFLAGS = \
3012 test_bus_cleanup_LDADD = \
3013 libsystemd-internal.la \
3014 libsystemd-shared.la
3016 test_bus_server_SOURCES = \
3017 src/libsystemd/sd-bus/test-bus-server.c
3019 test_bus_server_CFLAGS = \
3023 test_bus_server_LDADD = \
3024 libsystemd-internal.la \
3025 libsystemd-shared.la
3027 test_bus_objects_SOURCES = \
3028 src/libsystemd/sd-bus/test-bus-objects.c
3030 test_bus_objects_CFLAGS = \
3034 test_bus_objects_LDADD = \
3035 libsystemd-dump.la \
3036 libsystemd-internal.la \
3037 libsystemd-shared.la
3039 test_bus_error_SOURCES = \
3040 src/libsystemd/sd-bus/test-bus-error.c
3042 test_bus_error_LDADD = \
3043 libsystemd-internal.la \
3044 libsystemd-shared.la
3046 test_bus_gvariant_SOURCES = \
3047 src/libsystemd/sd-bus/test-bus-gvariant.c
3049 test_bus_gvariant_LDADD = \
3050 libsystemd-dump.la \
3051 libsystemd-internal.la \
3052 libsystemd-shared.la \
3055 test_bus_gvariant_CFLAGS = \
3059 test_bus_creds_SOURCES = \
3060 src/libsystemd/sd-bus/test-bus-creds.c
3062 test_bus_creds_LDADD = \
3063 libsystemd-dump.la \
3064 libsystemd-internal.la \
3065 libsystemd-shared.la
3067 test_bus_match_SOURCES = \
3068 src/libsystemd/sd-bus/test-bus-match.c
3070 test_bus_match_LDADD = \
3071 libsystemd-internal.la \
3072 libsystemd-shared.la
3074 test_bus_kernel_SOURCES = \
3075 src/libsystemd/sd-bus/test-bus-kernel.c
3077 test_bus_kernel_LDADD = \
3078 libsystemd-dump.la \
3079 libsystemd-internal.la \
3080 libsystemd-shared.la
3082 test_bus_kernel_bloom_SOURCES = \
3083 src/libsystemd/sd-bus/test-bus-kernel-bloom.c
3085 test_bus_kernel_bloom_LDADD = \
3086 libsystemd-internal.la \
3087 libsystemd-shared.la
3089 test_bus_kernel_benchmark_SOURCES = \
3090 src/libsystemd/sd-bus/test-bus-kernel-benchmark.c
3092 test_bus_kernel_benchmark_LDADD = \
3093 libsystemd-internal.la \
3094 libsystemd-shared.la
3096 test_bus_zero_copy_SOURCES = \
3097 src/libsystemd/sd-bus/test-bus-zero-copy.c
3099 test_bus_zero_copy_LDADD = \
3100 libsystemd-dump.la \
3101 libsystemd-internal.la \
3102 libsystemd-shared.la
3104 test_bus_introspect_SOURCES = \
3105 src/libsystemd/sd-bus/test-bus-introspect.c
3107 test_bus_introspect_LDADD = \
3108 libsystemd-internal.la \
3109 libsystemd-shared.la
3111 test_event_SOURCES = \
3112 src/libsystemd/sd-event/test-event.c
3114 test_event_LDADD = \
3115 libsystemd-internal.la \
3116 libsystemd-shared.la
3118 test_rtnl_SOURCES = \
3119 src/libsystemd/sd-rtnl/test-rtnl.c
3122 libsystemd-internal.la \
3123 libsystemd-shared.la
3125 test_local_addresses_SOURCES = \
3126 src/libsystemd/sd-rtnl/test-local-addresses.c
3128 test_local_addresses_LDADD = \
3129 libsystemd-internal.la \
3130 libsystemd-shared.la
3132 test_resolve_SOURCES = \
3133 src/libsystemd/sd-resolve/test-resolve.c
3135 test_resolve_LDADD = \
3136 libsystemd-resolve.la \
3137 libsystemd-internal.la \
3138 libsystemd-shared.la
3140 test_resolve_CFLAGS = \
3145 src/libsystemd/sd-bus/busctl.c \
3146 src/libsystemd/sd-bus/busctl-introspect.c \
3147 src/libsystemd/sd-bus/busctl-introspect.h
3150 libsystemd-dump.la \
3151 libsystemd-internal.la \
3152 libsystemd-shared.la
3154 # ------------------------------------------------------------------------------
3155 noinst_LTLIBRARIES += \
3156 libsystemd-network.la
3158 libsystemd_network_la_CFLAGS = \
3162 libsystemd_network_la_SOURCES = \
3163 src/systemd/sd-dhcp-client.h \
3164 src/systemd/sd-dhcp-server.h \
3165 src/systemd/sd-dhcp-lease.h \
3166 src/systemd/sd-ipv4ll.h \
3167 src/systemd/sd-icmp6-nd.h \
3168 src/systemd/sd-dhcp6-client.h \
3169 src/systemd/sd-dhcp6-lease.h \
3170 src/systemd/sd-pppoe.h \
3171 src/systemd/sd-lldp.h \
3172 src/libsystemd-network/sd-dhcp-client.c \
3173 src/libsystemd-network/sd-dhcp-server.c \
3174 src/libsystemd-network/dhcp-network.c \
3175 src/libsystemd-network/dhcp-option.c \
3176 src/libsystemd-network/dhcp-packet.c \
3177 src/libsystemd-network/dhcp-internal.h \
3178 src/libsystemd-network/dhcp-server-internal.h \
3179 src/libsystemd-network/dhcp-protocol.h \
3180 src/libsystemd-network/dhcp-lease-internal.h \
3181 src/libsystemd-network/sd-dhcp-lease.c \
3182 src/libsystemd-network/sd-ipv4ll.c \
3183 src/libsystemd-network/ipv4ll-network.c \
3184 src/libsystemd-network/ipv4ll-packet.c \
3185 src/libsystemd-network/ipv4ll-internal.h \
3186 src/libsystemd-network/sd-pppoe.c \
3187 src/libsystemd-network/network-internal.c \
3188 src/libsystemd-network/network-internal.h \
3189 src/libsystemd-network/sd-icmp6-nd.c \
3190 src/libsystemd-network/sd-dhcp6-client.c \
3191 src/libsystemd-network/dhcp6-internal.h \
3192 src/libsystemd-network/dhcp6-protocol.h \
3193 src/libsystemd-network/dhcp6-network.c \
3194 src/libsystemd-network/dhcp6-option.c \
3195 src/libsystemd-network/dhcp6-lease-internal.h \
3196 src/libsystemd-network/sd-dhcp6-lease.c \
3197 src/libsystemd-network/dhcp-identifier.h \
3198 src/libsystemd-network/dhcp-identifier.c \
3199 src/libsystemd-network/lldp.h \
3200 src/libsystemd-network/lldp-tlv.h \
3201 src/libsystemd-network/lldp-tlv.c \
3202 src/libsystemd-network/lldp-network.h \
3203 src/libsystemd-network/lldp-network.c \
3204 src/libsystemd-network/lldp-port.h \
3205 src/libsystemd-network/lldp-port.c \
3206 src/libsystemd-network/lldp-internal.h \
3207 src/libsystemd-network/lldp-internal.c \
3208 src/libsystemd-network/lldp-util.h \
3209 src/libsystemd-network/sd-lldp.c
3211 libsystemd_network_la_LIBADD = \
3212 libudev-internal.la \
3213 libsystemd-label.la \
3214 libsystemd-internal.la \
3215 libsystemd-shared.la \
3218 test_dhcp_option_SOURCES = \
3219 src/libsystemd-network/dhcp-protocol.h \
3220 src/libsystemd-network/dhcp-internal.h \
3221 src/libsystemd-network/test-dhcp-option.c
3223 test_dhcp_option_LDADD = \
3224 libsystemd-network.la \
3225 libsystemd-internal.la \
3226 libsystemd-shared.la
3228 test_dhcp_client_SOURCES = \
3229 src/systemd/sd-dhcp-client.h \
3230 src/libsystemd-network/dhcp-protocol.h \
3231 src/libsystemd-network/dhcp-internal.h \
3232 src/libsystemd-network/test-dhcp-client.c
3234 test_dhcp_client_LDADD = \
3235 libsystemd-network.la \
3236 libsystemd-label.la \
3237 libsystemd-internal.la \
3238 libsystemd-shared.la
3240 test_dhcp_server_SOURCES = \
3241 src/libsystemd-network/test-dhcp-server.c
3243 test_dhcp_server_LDADD = \
3244 libsystemd-network.la \
3245 libsystemd-internal.la \
3246 libsystemd-shared.la
3248 test_ipv4ll_SOURCES = \
3249 src/systemd/sd-ipv4ll.h \
3250 src/libsystemd-network/ipv4ll-internal.h \
3251 src/libsystemd-network/test-ipv4ll.c
3253 test_ipv4ll_LDADD = \
3254 libsystemd-network.la \
3255 libsystemd-label.la \
3256 libsystemd-internal.la \
3257 libsystemd-shared.la
3259 test_pppoe_SOURCES = \
3260 src/systemd/sd-pppoe.h \
3261 src/libsystemd-network/test-pppoe.c
3263 test_pppoe_LDADD = \
3264 libsystemd-network.la \
3265 libsystemd-shared.la
3267 test_icmp6_rs_SOURCES = \
3268 src/systemd/sd-dhcp6-client.h \
3269 src/systemd/sd-icmp6-nd.h \
3270 src/libsystemd-network/dhcp6-internal.h \
3271 src/libsystemd-network/test-icmp6-rs.c \
3272 src/libsystemd-network/dhcp-identifier.h \
3273 src/libsystemd-network/dhcp-identifier.c
3275 test_icmp6_rs_LDADD = \
3276 libsystemd-network.la \
3277 libsystemd-internal.la \
3278 libsystemd-shared.la
3280 test_dhcp6_client_SOURCES = \
3281 src/systemd/sd-dhcp6-client.h \
3282 src/libsystemd-network/dhcp6-internal.h \
3283 src/libsystemd-network/test-dhcp6-client.c \
3284 src/libsystemd-network/dhcp-identifier.h \
3285 src/libsystemd-network/dhcp-identifier.c
3287 test_dhcp6_client_LDADD = \
3288 libsystemd-network.la \
3289 libsystemd-internal.la \
3290 libsystemd-shared.la
3292 test_lldp_SOURCES = \
3293 src/libsystemd-network/lldp.h \
3294 src/libsystemd-network/lldp-tlv.h \
3295 src/libsystemd-network/lldp-tlv.c \
3296 src/libsystemd-network/test-lldp.c
3299 libsystemd-network.la \
3300 libsystemd-internal.la \
3301 libsystemd-shared.la
3315 # ------------------------------------------------------------------------------
3317 noinst_LTLIBRARIES += \
3318 libsystemd-terminal.la
3320 rootlibexec_PROGRAMS += \
3323 noinst_PROGRAMS += \
3328 dist_pkgdata_DATA += \
3329 src/libsystemd-terminal/unifont-glyph-array.bin
3331 nodist_userunit_DATA += \
3332 units/user/systemd-consoled.service
3334 USER_DEFAULT_TARGET_WANTS += \
3335 systemd-consoled.service
3344 units/user/systemd-consoled.service.in
3346 libsystemd_terminal_la_CFLAGS = \
3350 libsystemd_terminal_la_SOURCES = \
3351 src/libsystemd-terminal/grdev.h \
3352 src/libsystemd-terminal/grdev-internal.h \
3353 src/libsystemd-terminal/grdev.c \
3354 src/libsystemd-terminal/grdev-drm.c \
3355 src/libsystemd-terminal/idev.h \
3356 src/libsystemd-terminal/idev-internal.h \
3357 src/libsystemd-terminal/idev.c \
3358 src/libsystemd-terminal/idev-evdev.c \
3359 src/libsystemd-terminal/idev-keyboard.c \
3360 src/libsystemd-terminal/sysview.h \
3361 src/libsystemd-terminal/sysview-internal.h \
3362 src/libsystemd-terminal/sysview.c \
3363 src/libsystemd-terminal/term.h \
3364 src/libsystemd-terminal/term-internal.h \
3365 src/libsystemd-terminal/term-charset.c \
3366 src/libsystemd-terminal/term-page.c \
3367 src/libsystemd-terminal/term-parser.c \
3368 src/libsystemd-terminal/term-screen.c \
3369 src/libsystemd-terminal/term-wcwidth.c \
3370 src/libsystemd-terminal/unifont.h \
3371 src/libsystemd-terminal/unifont-def.h \
3372 src/libsystemd-terminal/unifont.c
3374 libsystemd_terminal_la_LIBADD = \
3375 libudev-internal.la \
3376 libsystemd-internal.la \
3377 libsystemd-shared.la \
3380 systemd_consoled_CFLAGS = \
3384 systemd_consoled_SOURCES = \
3385 src/console/consoled.h \
3386 src/console/consoled.c \
3387 src/console/consoled-display.c \
3388 src/console/consoled-manager.c \
3389 src/console/consoled-session.c \
3390 src/console/consoled-terminal.c \
3391 src/console/consoled-workspace.c
3393 systemd_consoled_LDADD = \
3394 libsystemd-terminal.la \
3395 libsystemd-internal.la \
3396 libsystemd-shared.la \
3399 systemd_evcat_CFLAGS = \
3403 systemd_evcat_SOURCES = \
3404 src/libsystemd-terminal/evcat.c
3406 systemd_evcat_LDADD = \
3407 libsystemd-terminal.la \
3408 libsystemd-internal.la \
3409 libsystemd-shared.la \
3412 systemd_modeset_CFLAGS = \
3416 systemd_modeset_SOURCES = \
3417 src/libsystemd-terminal/modeset.c
3419 systemd_modeset_LDADD = \
3420 libsystemd-terminal.la \
3421 libsystemd-internal.la \
3422 libsystemd-shared.la \
3425 systemd_subterm_SOURCES = \
3426 src/libsystemd-terminal/subterm.c
3428 systemd_subterm_LDADD = \
3429 libsystemd-terminal.la \
3430 libsystemd-internal.la \
3431 libsystemd-shared.la
3433 test_term_page_SOURCES = \
3434 src/libsystemd-terminal/test-term-page.c
3436 test_term_page_LDADD = \
3437 libsystemd-terminal.la \
3438 libsystemd-internal.la \
3439 libsystemd-shared.la
3441 test_term_parser_SOURCES = \
3442 src/libsystemd-terminal/test-term-parser.c
3444 test_term_parser_LDADD = \
3445 libsystemd-terminal.la \
3446 libsystemd-internal.la \
3447 libsystemd-shared.la
3449 test_unifont_SOURCES = \
3450 src/libsystemd-terminal/test-unifont.c
3452 test_unifont_LDADD = \
3453 libsystemd-terminal.la \
3454 libsystemd-internal.la \
3455 libsystemd-shared.la
3457 .PHONY: update-unifont
3458 update-unifont: tools/compile-unifont.py
3459 $(AM_V_GEN)$(PYTHON) $< \
3460 <$(top_srcdir)/src/libsystemd-terminal/unifont.hex \
3461 >$(top_srcdir)/src/libsystemd-terminal/unifont-glyph-array.bin
3462 @echo "unifont-glyph-array.bin has been regenerated"
3464 # ------------------------------------------------------------------------------
3474 include_HEADERS += \
3475 src/libudev/libudev.h
3477 lib_LTLIBRARIES += \
3480 libudev_la_SOURCES =\
3481 src/libudev/libudev.sym \
3482 src/libudev/libudev-private.h \
3483 src/libudev/libudev.c \
3484 src/libudev/libudev-list.c \
3485 src/libudev/libudev-util.c \
3486 src/libudev/libudev-device.c \
3487 src/libudev/libudev-enumerate.c \
3488 src/libudev/libudev-monitor.c \
3489 src/libudev/libudev-queue.c \
3490 src/libudev/libudev-hwdb.c
3492 libudev_la_CFLAGS = \
3496 libudev_la_LDFLAGS = \
3498 -version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \
3499 -Wl,--version-script=$(top_srcdir)/src/libudev/libudev.sym
3501 libudev_la_LIBADD = \
3502 libsystemd-internal.la \
3503 libsystemd-shared.la
3505 pkgconfiglib_DATA += \
3506 src/libudev/libudev.pc
3509 src/libudev/libudev.pc.in
3512 src/libudev/libudev.pc \
3517 $(AM_V_at)$(MKDIR_P) $(dir $@)
3518 $(AM_V_LN)$(LN_S) -f ../libudev/html $@
3521 $(AM_V_at)$(MKDIR_P) $(dir $@)
3522 $(AM_V_LN)$(LN_S) -f ../gudev/html $@
3524 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
3525 libudev-install-hook:
3526 libname=libudev.so && $(move-to-rootlibdir)
3528 libudev-uninstall-hook:
3529 rm -f $(DESTDIR)$(rootlibdir)/libudev.so*
3531 INSTALL_EXEC_HOOKS += libudev-install-hook
3532 UNINSTALL_EXEC_HOOKS += libudev-uninstall-hook
3534 # ------------------------------------------------------------------------------
3535 noinst_LTLIBRARIES += \
3538 libudev_internal_la_SOURCES =\
3539 $(libudev_la_SOURCES) \
3540 src/libudev/libudev-device-private.c
3542 libudev_internal_la_CFLAGS = \
3544 -fvisibility=default
3546 # ------------------------------------------------------------------------------
3548 $(sysconfdir)/udev/rules.d
3550 dist_network_DATA = \
3551 network/99-default.link \
3552 network/80-container-host0.network \
3553 network/80-container-ve.network
3555 dist_udevrules_DATA += \
3556 rules/42-usb-hid-pm.rules \
3557 rules/50-udev-default.rules \
3558 rules/60-drm.rules \
3559 rules/60-keyboard.rules \
3560 rules/70-mouse.rules \
3561 rules/60-persistent-storage-tape.rules \
3562 rules/60-persistent-serial.rules \
3563 rules/60-persistent-input.rules \
3564 rules/60-persistent-alsa.rules \
3565 rules/60-persistent-storage.rules \
3566 rules/64-btrfs.rules \
3567 rules/75-net-description.rules \
3568 rules/75-tty-description.rules \
3569 rules/78-sound-card.rules \
3570 rules/80-net-setup-link.rules \
3571 rules/95-udev-late.rules
3573 nodist_udevrules_DATA += \
3574 rules/99-systemd.rules
3576 udevconfdir = $(sysconfdir)/udev
3577 dist_udevconf_DATA = \
3580 sharepkgconfigdir = $(datadir)/pkgconfig
3581 sharepkgconfig_DATA = \
3585 rules/99-systemd.rules.in \
3589 rules/99-systemd.rules \
3593 units/systemd-udevd.service.in \
3594 units/systemd-udev-trigger.service.in \
3595 units/systemd-udev-settle.service.in
3598 units/systemd-udevd.service \
3599 units/systemd-udev-trigger.service \
3600 units/systemd-udev-settle.service
3602 SOCKETS_TARGET_WANTS += \
3603 systemd-udevd-control.socket \
3604 systemd-udevd-kernel.socket
3606 SYSINIT_TARGET_WANTS += \
3607 systemd-udevd.service \
3608 systemd-udev-trigger.service
3610 rootbin_PROGRAMS += \
3613 rootlibexec_PROGRAMS += \
3616 noinst_LTLIBRARIES += \
3619 src/udev/keyboard-keys.txt:
3620 $(AM_V_at)$(MKDIR_P) $(dir $@)
3621 $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/input.h - < /dev/null | $(AWK) '/^#define[ \t]+KEY_[^ ]+[ \t]+[0-9]/ { if ($$2 != "KEY_MAX") { print $$2 } }' | sed 's/^KEY_COFFEE$$/KEY_SCREENLOCK/' > $@
3623 src/udev/keyboard-keys-from-name.gperf: src/udev/keyboard-keys.txt
3624 $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print tolower(substr($$1 ,5)) ", " $$1 }' < $< > $@
3626 src/udev/keyboard-keys-from-name.h: src/udev/keyboard-keys-from-name.gperf
3627 $(AM_V_GPERF)$(GPERF) -L ANSI-C -t -N keyboard_lookup_key -H hash_key_name -p -C < $< > $@
3629 src/udev/keyboard-keys-to-name.h: src/udev/keyboard-keys.txt
3630 $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char* const key_names[KEY_CNT] = { "} { print "[" $$1 "] = \"" $$1 "\"," } END{print "};"}' < $< > $@
3632 libudev_core_la_SOURCES = \
3634 src/udev/udev-event.c \
3635 src/udev/udev-watch.c \
3636 src/udev/udev-node.c \
3637 src/udev/udev-rules.c \
3638 src/udev/udev-ctrl.c \
3639 src/udev/udev-builtin.c \
3640 src/udev/udev-builtin-btrfs.c \
3641 src/udev/udev-builtin-hwdb.c \
3642 src/udev/udev-builtin-input_id.c \
3643 src/udev/udev-builtin-keyboard.c \
3644 src/udev/udev-builtin-net_id.c \
3645 src/udev/udev-builtin-net_setup_link.c \
3646 src/udev/udev-builtin-path_id.c \
3647 src/udev/udev-builtin-usb_id.c \
3648 src/udev/net/link-config.h \
3649 src/udev/net/link-config.c \
3650 src/udev/net/ethtool-util.h \
3651 src/udev/net/ethtool-util.c
3653 nodist_libudev_core_la_SOURCES = \
3654 src/udev/keyboard-keys-from-name.h \
3655 src/udev/keyboard-keys-to-name.h \
3656 src/udev/net/link-config-gperf.c
3659 $(nodist_libudev_core_la_SOURCES)
3662 src/udev/keyboard-keys-from-name.gperf \
3663 src/udev/keyboard-keys.txt \
3664 src/udev/net/link-config-gperf.c
3667 src/udev/net/link-config-gperf.gperf
3669 libudev_core_la_CFLAGS = \
3674 libudev_core_la_LIBADD = \
3675 libudev-internal.la \
3676 libsystemd-label.la \
3677 libsystemd-internal.la \
3678 libsystemd-network.la \
3679 libsystemd-shared.la \
3684 libudev_core_la_SOURCES += \
3685 src/udev/udev-builtin-kmod.c
3687 dist_udevrules_DATA += \
3688 rules/80-drivers.rules
3692 libudev_core_la_SOURCES += \
3693 src/udev/udev-builtin-blkid.c
3697 libudev_core_la_SOURCES += \
3698 src/udev/udev-builtin-uaccess.c \
3699 src/login/logind-acl.c \
3700 src/libsystemd/sd-login/sd-login.c \
3701 src/systemd/sd-login.h
3703 libudev_core_la_LIBADD += \
3707 systemd_udevd_SOURCES = \
3710 systemd_udevd_LDADD = \
3714 src/udev/udevadm.c \
3715 src/udev/udevadm-info.c \
3716 src/udev/udevadm-control.c \
3717 src/udev/udevadm-monitor.c \
3718 src/udev/udevadm-hwdb.c \
3719 src/udev/udevadm-settle.c \
3720 src/udev/udevadm-trigger.c \
3721 src/udev/udevadm-test.c \
3722 src/udev/udevadm-test-builtin.c \
3723 src/udev/udevadm-util.c \
3724 src/udev/udevadm-util.h
3729 # ------------------------------------------------------------------------------
3732 $(sysconfdir)/udev/hwdb.d
3734 systemd_hwdb_SOURCES = \
3735 src/libsystemd/sd-hwdb/hwdb-internal.h \
3738 systemd_hwdb_LDADD = \
3739 libsystemd-shared.la \
3740 libsystemd-internal.la \
3743 rootbin_PROGRAMS += \
3746 dist_udevhwdb_DATA = \
3747 hwdb/20-pci-vendor-model.hwdb \
3748 hwdb/20-pci-classes.hwdb \
3749 hwdb/20-usb-vendor-model.hwdb \
3750 hwdb/20-usb-classes.hwdb \
3751 hwdb/20-sdio-vendor-model.hwdb \
3752 hwdb/20-sdio-classes.hwdb \
3753 hwdb/20-bluetooth-vendor-product.hwdb \
3754 hwdb/20-acpi-vendor.hwdb \
3756 hwdb/20-net-ifname.hwdb \
3757 hwdb/60-keyboard.hwdb \
3761 units/systemd-hwdb-update.service.in
3764 units/systemd-hwdb-update.service
3766 SYSINIT_TARGET_WANTS += \
3767 systemd-hwdb-update.service
3769 # Update hwdb on installation. Do not bother if installing
3770 # in DESTDIR, since this is likely for packaging purposes.
3772 -test -n "$(DESTDIR)" || $(rootbindir)/systemd-hwdb update
3774 INSTALL_DATA_HOOKS += \
3778 -test -n "$(DESTDIR)" || rm -f /etc/udev/hwdb.bin
3781 # ------------------------------------------------------------------------------
3788 test/rule-syntax-check.py \
3789 test/sysv-generator-test.py \
3797 test_libudev_SOURCES = \
3798 src/test/test-libudev.c
3800 test_libudev_LDADD = \
3801 libsystemd-label.la \
3802 libudev-internal.la \
3803 libsystemd-shared.la \
3804 libsystemd-internal.la
3806 test_udev_SOURCES = \
3807 src/test/test-udev.c
3816 test_udev_LDADD += \
3823 # packed sysfs test tree
3825 $(AM_V_at)$(MKDIR_P) $(dir $@)
3826 $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
3830 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean