chiark / gitweb /
5a17642f7b7c3bbf246f300297544b5f55a79017
[elogind.git] / Makefile.am
1 #  -*- Mode: makefile; indent-tabs-mode: t -*-
2 #
3 #  This file is part of systemd.
4 #
5 #  Copyright 2010-2012 Lennart Poettering
6 #  Copyright 2010-2012 Kay Sievers
7 #  Copyright 2013 Zbigniew Jędrzejewski-Szmek
8 #  Copyright 2013 David Strauss
9 #
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.
14 #
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.
19 #
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/>.
22
23 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
24 AM_MAKEFLAGS = --no-print-directory
25 AUTOMAKE_OPTIONS = color-tests parallel-tests
26
27 GCC_COLORS ?= 'ooh, shiny!'
28 export GCC_COLORS
29
30 SUBDIRS = . po
31
32 # remove targets if the command fails
33 .DELETE_ON_ERROR:
34
35 # keep intermediate files
36 .SECONDARY:
37
38 # Keep the test-suite.log
39 .PRECIOUS: $(TEST_SUITE_LOG) Makefile
40
41 LIBUDEV_CURRENT=7
42 LIBUDEV_REVISION=2
43 LIBUDEV_AGE=6
44
45 LIBGUDEV_CURRENT=2
46 LIBGUDEV_REVISION=0
47 LIBGUDEV_AGE=2
48
49 LIBSYSTEMD_CURRENT=6
50 LIBSYSTEMD_REVISION=0
51 LIBSYSTEMD_AGE=6
52
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
58
59 LIBSYSTEMD_DAEMON_CURRENT=0
60 LIBSYSTEMD_DAEMON_REVISION=12
61 LIBSYSTEMD_DAEMON_AGE=0
62
63 LIBSYSTEMD_ID128_CURRENT=0
64 LIBSYSTEMD_ID128_REVISION=28
65 LIBSYSTEMD_ID128_AGE=0
66
67 LIBSYSTEMD_JOURNAL_CURRENT=11
68 LIBSYSTEMD_JOURNAL_REVISION=5
69 LIBSYSTEMD_JOURNAL_AGE=11
70
71 # Dirs of external packages
72 dbuspolicydir=@dbuspolicydir@
73 dbussessionservicedir=@dbussessionservicedir@
74 dbussystemservicedir=@dbussystemservicedir@
75 pamlibdir=@pamlibdir@
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
88
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
114 sd_bootlibdir = $(prefix)/lib/systemd/sd-boot
115
116 # And these are the special ones for /
117 rootprefix=@rootprefix@
118 rootbindir=$(rootprefix)/bin
119 rootlibexecdir=$(rootprefix)/lib/systemd
120
121 CLEANFILES = $(BUILT_SOURCES)
122 DISTCLEANFILES =
123 EXTRA_DIST =
124 BUILT_SOURCES =
125 INSTALL_EXEC_HOOKS =
126 UNINSTALL_EXEC_HOOKS =
127 INSTALL_DATA_HOOKS =
128 UNINSTALL_DATA_HOOKS =
129 DISTCLEAN_LOCAL_HOOKS =
130 CLEAN_LOCAL_HOOKS =
131 pkginclude_HEADERS =
132 noinst_LTLIBRARIES =
133 lib_LTLIBRARIES =
134 include_HEADERS =
135 noinst_DATA =
136 pkgconfiglib_DATA =
137 polkitpolicy_in_in_files =
138 polkitpolicy_in_files =
139 polkitpolicy_files =
140 dist_udevrules_DATA =
141 nodist_udevrules_DATA =
142 dist_pkgsysconf_DATA =
143 nodist_pkgsysconf_DATA =
144 dist_pkgdata_DATA =
145 dist_dbuspolicy_DATA =
146 dist_dbussystemservice_DATA =
147 dist_systemunit_DATA_busnames =
148 check_PROGRAMS =
149 check_DATA =
150 tests=
151 manual_tests =
152 TEST_EXTENSIONS = .py
153 PY_LOG_COMPILER = $(PYTHON)
154 if ENABLE_TESTS
155 noinst_PROGRAMS = $(manual_tests) $(tests)
156 TESTS = $(tests)
157 else
158 noinst_PROGRAMS =
159 TESTS =
160 endif
161 udevlibexec_PROGRAMS =
162
163 .PHONY: $(INSTALL_EXEC_HOOKS) $(UNINSTALL_EXEC_HOOKS) \
164         $(INSTALL_DATA_HOOKS) $(UNINSTALL_DATA_HOOKS) \
165         $(DISTCLEAN_LOCAL_HOOKS) $(CLEAN_LOCAL_HOOKS)
166
167 AM_CPPFLAGS = \
168         -include $(top_builddir)/config.h \
169         -DPKGSYSCONFDIR=\"$(pkgsysconfdir)\" \
170         -DSYSTEM_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/system\" \
171         -DSYSTEM_DATA_UNIT_PATH=\"$(systemunitdir)\" \
172         -DSYSTEM_SYSVINIT_PATH=\"$(SYSTEM_SYSVINIT_PATH)\" \
173         -DSYSTEM_SYSVRCND_PATH=\"$(SYSTEM_SYSVRCND_PATH)\" \
174         -DUSER_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/user\" \
175         -DUSER_DATA_UNIT_PATH=\"$(userunitdir)\" \
176         -DCERTIFICATE_ROOT=\"$(CERTIFICATEROOT)\" \
177         -DCATALOG_DATABASE=\"$(catalogstatedir)/database\" \
178         -DSYSTEMD_CGROUP_AGENT_PATH=\"$(rootlibexecdir)/systemd-cgroups-agent\" \
179         -DSYSTEMD_BINARY_PATH=\"$(rootlibexecdir)/systemd\" \
180         -DSYSTEMD_SHUTDOWN_BINARY_PATH=\"$(rootlibexecdir)/systemd-shutdown\" \
181         -DSYSTEMD_SLEEP_BINARY_PATH=\"$(rootlibexecdir)/systemd-sleep\" \
182         -DSYSTEMCTL_BINARY_PATH=\"$(rootbindir)/systemctl\" \
183         -DSYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH=\"$(rootbindir)/systemd-tty-ask-password-agent\" \
184         -DSYSTEMD_STDIO_BRIDGE_BINARY_PATH=\"$(bindir)/systemd-stdio-bridge\" \
185         -DROOTPREFIX=\"$(rootprefix)\" \
186         -DRANDOM_SEED_DIR=\"$(localstatedir)/lib/systemd/\" \
187         -DRANDOM_SEED=\"$(localstatedir)/lib/systemd/random-seed\" \
188         -DSYSTEMD_CRYPTSETUP_PATH=\"$(rootlibexecdir)/systemd-cryptsetup\" \
189         -DSYSTEM_GENERATOR_PATH=\"$(systemgeneratordir)\" \
190         -DUSER_GENERATOR_PATH=\"$(usergeneratordir)\" \
191         -DSYSTEM_SHUTDOWN_PATH=\"$(systemshutdowndir)\" \
192         -DSYSTEM_SLEEP_PATH=\"$(systemsleepdir)\" \
193         -DSYSTEMD_KBD_MODEL_MAP=\"$(pkgdatadir)/kbd-model-map\" \
194         -DSYSTEMD_LANGUAGE_FALLBACK_MAP=\"$(pkgdatadir)/language-fallback-map\" \
195         -DX_SERVER=\"$(bindir)/X\" \
196         -DUDEVLIBEXECDIR=\"$(udevlibexecdir)\" \
197         -DPOLKIT_AGENT_BINARY_PATH=\"$(bindir)/pkttyagent\" \
198         -DQUOTACHECK=\"$(QUOTACHECK)\" \
199         -DKEXEC=\"$(KEXEC)\" \
200         -DLIBDIR=\"$(libdir)\" \
201         -DROOTLIBDIR=\"$(rootlibdir)\" \
202         -DTEST_DIR=\"$(abs_top_srcdir)/test\" \
203         -I $(top_srcdir)/src \
204         -I $(top_builddir)/src/shared \
205         -I $(top_srcdir)/src/shared \
206         -I $(top_srcdir)/src/network \
207         -I $(top_srcdir)/src/login \
208         -I $(top_srcdir)/src/journal \
209         -I $(top_srcdir)/src/timedate \
210         -I $(top_srcdir)/src/timesync \
211         -I $(top_srcdir)/src/resolve \
212         -I $(top_builddir)/src/resolve \
213         -I $(top_srcdir)/src/systemd \
214         -I $(top_builddir)/src/core \
215         -I $(top_srcdir)/src/core \
216         -I $(top_srcdir)/src/libudev \
217         -I $(top_srcdir)/src/udev \
218         -I $(top_srcdir)/src/udev/net \
219         -I $(top_builddir)/src/udev \
220         -I $(top_srcdir)/src/libsystemd/sd-bus \
221         -I $(top_srcdir)/src/libsystemd/sd-event \
222         -I $(top_srcdir)/src/libsystemd/sd-rtnl \
223         -I $(top_srcdir)/src/libsystemd/sd-network \
224         -I $(top_srcdir)/src/libsystemd/sd-hwdb \
225         -I $(top_srcdir)/src/libsystemd-network \
226         -I $(top_srcdir)/src/libsystemd-terminal \
227         $(OUR_CPPFLAGS)
228
229 AM_CFLAGS = $(OUR_CFLAGS)
230 AM_LDFLAGS = $(OUR_LDFLAGS)
231
232 # ------------------------------------------------------------------------------
233 define move-to-rootlibdir
234         if test "$(libdir)" != "$(rootlibdir)"; then \
235                 $(MKDIR_P) $(DESTDIR)$(rootlibdir) && \
236                 so_img_name=$$(readlink $(DESTDIR)$(libdir)/$$libname) && \
237                 rm -f $(DESTDIR)$(libdir)/$$libname && \
238                 $(LN_S) --relative -f $(DESTDIR)$(rootlibdir)/$$so_img_name $(DESTDIR)$(libdir)/$$libname && \
239                 mv $(DESTDIR)$(libdir)/$$libname.* $(DESTDIR)$(rootlibdir); \
240         fi
241 endef
242
243 INSTALL_DIRS =
244
245 RUNLEVEL1_TARGET_WANTS =
246 RUNLEVEL2_TARGET_WANTS =
247 RUNLEVEL3_TARGET_WANTS =
248 RUNLEVEL4_TARGET_WANTS =
249 RUNLEVEL5_TARGET_WANTS =
250 SHUTDOWN_TARGET_WANTS =
251 LOCAL_FS_TARGET_WANTS =
252 MULTI_USER_TARGET_WANTS =
253 SYSINIT_TARGET_WANTS =
254 SOCKETS_TARGET_WANTS =
255 BUSNAMES_TARGET_WANTS =
256 TIMERS_TARGET_WANTS =
257 USER_SOCKETS_TARGET_WANTS =
258 USER_DEFAULT_TARGET_WANTS =
259 USER_BUSNAMES_TARGET_WANTS =
260
261 SYSTEM_UNIT_ALIASES =
262 USER_UNIT_ALIASES =
263 GENERAL_ALIASES =
264
265 install-target-wants-hook:
266         what="$(RUNLEVEL1_TARGET_WANTS)" && wants=runlevel1.target && dir=$(systemunitdir) && $(add-wants)
267         what="$(RUNLEVEL2_TARGET_WANTS)" && wants=runlevel2.target && dir=$(systemunitdir) && $(add-wants)
268         what="$(RUNLEVEL3_TARGET_WANTS)" && wants=runlevel3.target && dir=$(systemunitdir) && $(add-wants)
269         what="$(RUNLEVEL4_TARGET_WANTS)" && wants=runlevel4.target && dir=$(systemunitdir) && $(add-wants)
270         what="$(RUNLEVEL5_TARGET_WANTS)" && wants=runlevel5.target && dir=$(systemunitdir) && $(add-wants)
271         what="$(SHUTDOWN_TARGET_WANTS)" && wants=shutdown.target && dir=$(systemunitdir) && $(add-wants)
272         what="$(LOCAL_FS_TARGET_WANTS)" && wants=local-fs.target && dir=$(systemunitdir) && $(add-wants)
273         what="$(MULTI_USER_TARGET_WANTS)" && wants=multi-user.target && dir=$(systemunitdir) && $(add-wants)
274         what="$(SYSINIT_TARGET_WANTS)" && wants=sysinit.target && dir=$(systemunitdir) && $(add-wants)
275         what="$(SOCKETS_TARGET_WANTS)" && wants=sockets.target && dir=$(systemunitdir) && $(add-wants)
276         what="$(TIMERS_TARGET_WANTS)" && wants=timers.target && dir=$(systemunitdir) && $(add-wants)
277         what="$(SLICES_TARGET_WANTS)" && wants=slices.target && dir=$(systemunitdir) && $(add-wants)
278         what="$(USER_SOCKETS_TARGET_WANTS)" && wants=sockets.target && dir=$(userunitdir) && $(add-wants)
279         what="$(USER_DEFAULT_TARGET_WANTS)" && wants=default.target && dir=$(userunitdir) && $(add-wants)
280
281 install-busnames-target-wants-hook:
282         what="$(BUSNAMES_TARGET_WANTS)" && wants=busnames.target && dir=$(systemunitdir) && $(add-wants)
283         what="$(USER_BUSNAMES_TARGET_WANTS)" && wants=busnames.target && dir=$(userunitdir) && $(add-wants)
284
285 define add-wants
286         [ -z "$$what" ] || ( \
287           dir=$(DESTDIR)$$dir/$$wants.wants && \
288           $(MKDIR_P) -m 0755 $$dir && \
289           cd $$dir && \
290           rm -f $$what && \
291           for i in $$what; do $(LN_S) ../$$i . || exit $$? ; done )
292 endef
293
294 install-directories-hook:
295         $(MKDIR_P) $(addprefix $(DESTDIR),$(INSTALL_DIRS))
296
297 install-aliases-hook:
298         set -- $(SYSTEM_UNIT_ALIASES) && \
299                 dir=$(systemunitdir) && $(install-aliases)
300         set -- $(USER_UNIT_ALIASES) && \
301                 dir=$(userunitdir) && $(install-relative-aliases)
302         set -- $(GENERAL_ALIASES) && \
303                 dir= && $(install-relative-aliases)
304
305 define install-aliases
306         while [ -n "$$1" ]; do \
307                 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
308                 rm -f $(DESTDIR)$$dir/$$2 && \
309                 $(LN_S) $$1 $(DESTDIR)$$dir/$$2 && \
310                 shift 2 || exit $$?; \
311         done
312 endef
313
314 define install-relative-aliases
315         while [ -n "$$1" ]; do \
316                 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
317                 rm -f $(DESTDIR)$$dir/$$2 && \
318                 $(LN_S) --relative $(DESTDIR)$$1 $(DESTDIR)$$dir/$$2 && \
319                 shift 2 || exit $$?; \
320         done
321 endef
322
323 install-touch-usr-hook:
324         touch -c $(DESTDIR)/$(prefix)
325
326 INSTALL_EXEC_HOOKS += \
327         install-target-wants-hook \
328         install-directories-hook \
329         install-aliases-hook \
330         install-touch-usr-hook
331
332 if ENABLE_KDBUS
333 INSTALL_EXEC_HOOKS += \
334         install-busnames-target-wants-hook
335 endif
336
337 # ------------------------------------------------------------------------------
338 AM_V_M4 = $(AM_V_M4_$(V))
339 AM_V_M4_ = $(AM_V_M4_$(AM_DEFAULT_VERBOSITY))
340 AM_V_M4_0 = @echo "  M4      " $@;
341
342 AM_V_XSLT = $(AM_V_XSLT_$(V))
343 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
344 AM_V_XSLT_0 = @echo "  XSLT    " $@;
345
346 AM_V_GPERF = $(AM_V_GPERF_$(V))
347 AM_V_GPERF_ = $(AM_V_GPERF_$(AM_DEFAULT_VERBOSITY))
348 AM_V_GPERF_0 = @echo "  GPERF   " $@;
349
350 AM_V_LN = $(AM_V_LN_$(V))
351 AM_V_LN_ = $(AM_V_LN_$(AM_DEFAULT_VERBOSITY))
352 AM_V_LN_0 = @echo "  LN      " $@;
353
354 AM_V_RM = $(AM_V_RM_$(V))
355 AM_V_RM_ = $(AM_V_RM_$(AM_DEFAULT_VERBOSITY))
356 AM_V_RM_0 = @echo "  RM      " $@;
357
358 # ------------------------------------------------------------------------------
359 rootbin_PROGRAMS = \
360         systemctl \
361         systemd-notify \
362         systemd-ask-password \
363         systemd-tty-ask-password-agent \
364         systemd-machine-id-setup \
365         systemd-escape
366
367 bin_PROGRAMS = \
368         systemd-cgls \
369         systemd-cgtop \
370         systemd-nspawn \
371         systemd-detect-virt \
372         systemd-delta \
373         systemd-analyze \
374         systemd-run \
375         systemd-stdio-bridge \
376         systemd-path
377
378 dist_bin_SCRIPTS = \
379         src/kernel-install/kernel-install
380
381 dist_kernelinstall_SCRIPTS = \
382         src/kernel-install/50-depmod.install \
383         src/kernel-install/90-loaderentry.install
384
385 rootlibexec_PROGRAMS = \
386         systemd \
387         systemd-cgroups-agent \
388         systemd-initctl \
389         systemd-shutdownd \
390         systemd-shutdown \
391         systemd-remount-fs \
392         systemd-reply-password \
393         systemd-fsck \
394         systemd-machine-id-commit \
395         systemd-ac-power \
396         systemd-sysctl \
397         systemd-sleep \
398         systemd-bus-proxyd \
399         systemd-socket-proxyd \
400         systemd-update-done
401
402 if HAVE_UTMP
403 rootlibexec_PROGRAMS += \
404         systemd-update-utmp
405 endif
406
407 systemgenerator_PROGRAMS = \
408         systemd-getty-generator \
409         systemd-fstab-generator \
410         systemd-system-update-generator \
411         systemd-debug-generator
412
413 dist_bashcompletion_DATA = \
414         shell-completion/bash/busctl \
415         shell-completion/bash/journalctl \
416         shell-completion/bash/systemd-analyze \
417         shell-completion/bash/systemd-cat \
418         shell-completion/bash/systemd-cgls \
419         shell-completion/bash/systemd-cgtop \
420         shell-completion/bash/systemd-delta \
421         shell-completion/bash/systemd-detect-virt \
422         shell-completion/bash/systemd-nspawn \
423         shell-completion/bash/systemd-run \
424         shell-completion/bash/udevadm \
425         shell-completion/bash/kernel-install
426
427 nodist_bashcompletion_DATA = \
428         shell-completion/bash/systemctl
429
430 dist_zshcompletion_DATA = \
431         shell-completion/zsh/_journalctl \
432         shell-completion/zsh/_udevadm \
433         shell-completion/zsh/_kernel-install \
434         shell-completion/zsh/_systemd-nspawn \
435         shell-completion/zsh/_systemd-analyze \
436         shell-completion/zsh/_systemd-run \
437         shell-completion/zsh/_sd_hosts_or_user_at_host \
438         shell-completion/zsh/_sd_outputmodes \
439         shell-completion/zsh/_sd_unit_files \
440         shell-completion/zsh/_systemd-delta \
441         shell-completion/zsh/_systemd
442
443 nodist_zshcompletion_DATA = \
444         shell-completion/zsh/_systemctl
445
446 EXTRA_DIST += \
447         shell-completion/bash/systemctl.in \
448         shell-completion/zsh/_systemctl.in
449
450 CLEANFILES += \
451         $(nodist_bashcompletion_DATA) \
452         $(nodist_zshcompletion_DATA)
453
454 dist_sysctl_DATA = \
455         sysctl.d/50-default.conf
456
457 dist_systemunit_DATA = \
458         units/graphical.target \
459         units/multi-user.target \
460         units/emergency.target \
461         units/sysinit.target \
462         units/basic.target \
463         units/getty.target \
464         units/halt.target \
465         units/kexec.target \
466         units/local-fs.target \
467         units/local-fs-pre.target \
468         units/initrd.target \
469         units/initrd-fs.target \
470         units/initrd-root-fs.target \
471         units/remote-fs.target \
472         units/remote-fs-pre.target \
473         units/network.target \
474         units/network-pre.target \
475         units/network-online.target \
476         units/nss-lookup.target \
477         units/nss-user-lookup.target \
478         units/poweroff.target \
479         units/reboot.target \
480         units/rescue.target \
481         units/rpcbind.target \
482         units/time-sync.target \
483         units/shutdown.target \
484         units/final.target \
485         units/umount.target \
486         units/sigpwr.target \
487         units/sleep.target \
488         units/sockets.target \
489         units/timers.target \
490         units/paths.target \
491         units/suspend.target \
492         units/swap.target \
493         units/slices.target \
494         units/system.slice \
495         units/x-.slice \
496         units/systemd-initctl.socket \
497         units/systemd-shutdownd.socket \
498         units/syslog.socket \
499         units/dev-hugepages.mount \
500         units/dev-mqueue.mount \
501         units/sys-kernel-config.mount \
502         units/sys-kernel-debug.mount \
503         units/sys-fs-fuse-connections.mount \
504         units/tmp.mount \
505         units/printer.target \
506         units/sound.target \
507         units/bluetooth.target \
508         units/smartcard.target \
509         units/systemd-ask-password-wall.path \
510         units/systemd-ask-password-console.path \
511         units/systemd-udevd-control.socket \
512         units/systemd-udevd-kernel.socket \
513         units/system-update.target \
514         units/initrd-switch-root.target \
515         units/machines.target
516
517 if ENABLE_KDBUS
518 dist_systemunit_DATA += \
519         $(dist_systemunit_DATA_busnames)
520 endif
521
522 dist_systemunit_DATA_busnames += \
523         units/busnames.target
524
525 nodist_systemunit_DATA = \
526         units/getty@.service \
527         units/serial-getty@.service \
528         units/console-shell.service \
529         units/console-getty.service \
530         units/container-getty@.service \
531         units/systemd-initctl.service \
532         units/systemd-shutdownd.service \
533         units/systemd-remount-fs.service \
534         units/systemd-ask-password-wall.service \
535         units/systemd-ask-password-console.service \
536         units/systemd-sysctl.service \
537         units/emergency.service \
538         units/rescue.service \
539         units/user@.service \
540         units/systemd-suspend.service \
541         units/systemd-halt.service \
542         units/systemd-poweroff.service \
543         units/systemd-reboot.service \
544         units/systemd-kexec.service \
545         units/systemd-fsck@.service \
546         units/systemd-fsck-root.service \
547         units/systemd-machine-id-commit.service \
548         units/systemd-udevd.service \
549         units/systemd-udev-trigger.service \
550         units/systemd-udev-settle.service \
551         units/systemd-hwdb-update.service \
552         units/debug-shell.service \
553         units/initrd-parse-etc.service \
554         units/initrd-cleanup.service \
555         units/initrd-udevadm-cleanup-db.service \
556         units/initrd-switch-root.service \
557         units/systemd-nspawn@.service \
558         units/systemd-update-done.service
559
560 if HAVE_UTMP
561 nodist_systemunit_DATA += \
562         units/systemd-update-utmp.service \
563         units/systemd-update-utmp-runlevel.service
564 endif
565
566 dist_userunit_DATA = \
567         units/user/basic.target \
568         units/user/default.target \
569         units/user/exit.target
570
571 nodist_userunit_DATA = \
572         units/user/systemd-exit.service
573
574 dist_systempreset_DATA = \
575         system-preset/90-systemd.preset
576
577 EXTRA_DIST += \
578         units/getty@.service.m4 \
579         units/serial-getty@.service.m4 \
580         units/console-shell.service.m4.in \
581         units/console-getty.service.m4.in \
582         units/container-getty@.service.m4.in \
583         units/rescue.service.in \
584         units/systemd-initctl.service.in \
585         units/systemd-shutdownd.service.in \
586         units/systemd-remount-fs.service.in \
587         units/systemd-update-utmp.service.in \
588         units/systemd-update-utmp-runlevel.service.in \
589         units/systemd-ask-password-wall.service.in \
590         units/systemd-ask-password-console.service.in \
591         units/systemd-sysctl.service.in \
592         units/emergency.service.in \
593         units/systemd-halt.service.in \
594         units/systemd-poweroff.service.in \
595         units/systemd-reboot.service.in \
596         units/systemd-kexec.service.in \
597         units/user/systemd-exit.service.in \
598         units/systemd-fsck@.service.in \
599         units/systemd-fsck-root.service.in \
600         units/systemd-machine-id-commit.service.in \
601         units/user@.service.m4.in \
602         units/debug-shell.service.in \
603         units/systemd-suspend.service.in \
604         units/quotaon.service.in \
605         units/initrd-parse-etc.service.in \
606         units/initrd-cleanup.service.in \
607         units/initrd-udevadm-cleanup-db.service.in \
608         units/initrd-switch-root.service.in \
609         units/systemd-nspawn@.service.in \
610         units/systemd-update-done.service.in
611
612 CLEANFILES += \
613         units/console-shell.service.m4 \
614         units/console-getty.service.m4 \
615         units/container-getty@.service.m4 \
616         units/user@.service.m4
617
618 if HAVE_SYSV_COMPAT
619 nodist_systemunit_DATA += \
620         units/rc-local.service \
621         units/halt-local.service
622
623 systemgenerator_PROGRAMS += \
624         systemd-sysv-generator \
625         systemd-rc-local-generator
626 endif
627
628 EXTRA_DIST += \
629         units/rc-local.service.in \
630         units/halt-local.service.in
631
632 # automake is broken and can't handle files with a dash in front
633 # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14728#8
634 units-install-hook:
635         mv $(DESTDIR)$(systemunitdir)/x-.slice $(DESTDIR)/$(systemunitdir)/-.slice
636
637 units-uninstall-hook:
638         rm -f $(DESTDIR)/$(systemunitdir)/-.slice
639
640 INSTALL_DATA_HOOKS += units-install-hook
641 UNINSTALL_DATA_HOOKS += units-uninstall-hook
642
643 dist_doc_DATA = \
644         README \
645         NEWS \
646         LICENSE.LGPL2.1 \
647         LICENSE.GPL2 \
648         LICENSE.MIT \
649         DISTRO_PORTING \
650         src/libsystemd/sd-bus/PORTING-DBUS1 \
651         src/libsystemd/sd-bus/DIFFERENCES \
652         src/libsystemd/sd-bus/GVARIANT-SERIALIZATION
653
654 @INTLTOOL_POLICY_RULE@
655
656 # ------------------------------------------------------------------------------
657
658 MANPAGES =
659 MANPAGES_ALIAS =
660
661 include Makefile-man.am
662
663 .PHONY: man update-man-list
664 man: $(MANPAGES) $(MANPAGES_ALIAS) $(HTML_FILES) $(HTML_ALIAS)
665
666 XML_FILES = \
667         ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}}}}
668 HTML_FILES = \
669         ${XML_FILES:.xml=.html}
670 HTML_ALIAS = \
671         ${patsubst %.1,%.html,${patsubst %.3,%.html,${patsubst %.5,%.html,${patsubst %.7,%.html,${patsubst %.8,%.html,$(MANPAGES_ALIAS)}}}}}
672
673 if ENABLE_MANPAGES
674 man_MANS = \
675         $(MANPAGES) \
676         $(MANPAGES_ALIAS)
677
678 noinst_DATA += \
679         $(HTML_FILES) \
680         $(HTML_ALIAS)
681
682 CLEANFILES += \
683         $(man_MANS) \
684         $(HTML_FILES) \
685         $(HTML_ALIAS)
686
687 docs/html/man:
688         $(AM_V_at)$(MKDIR_P) $(dir $@)
689         $(AM_V_LN)$(LN_S) -f ../../man $@
690
691 noinst_DATA += \
692         docs/html/man
693
694 CLEANFILES += \
695         docs/html/man
696
697 if HAVE_PYTHON
698 man/index.html: man/systemd.index.html
699         $(AM_V_LN)$(LN_S) -f systemd.index.html $@
700
701 noinst_DATA += \
702         man/index.html
703
704 CLEANFILES += \
705         man/index.html
706
707 XML_GLOB = $(wildcard $(top_srcdir)/man/*.xml $(top_builddir)/man/*.xml)
708 NON_INDEX_XML_FILES = $(filter-out man/systemd.index.xml,$(XML_FILES))
709 SOURCE_XML_FILES = $(filter-out man/systemd.directives.xml,$(NON_INDEX_XML_FILES))
710
711 update-man-list: $(top_srcdir)/tools/make-man-rules.py $(XML_GLOB)
712         $(AM_V_GEN)$(PYTHON) $^ > $(top_srcdir)/Makefile-man.tmp
713         $(AM_V_at)mv $(top_srcdir)/Makefile-man.tmp $(top_srcdir)/Makefile-man.am
714         @echo "Makefile-man.am has been regenerated"
715
716 man/systemd.index.xml: $(top_srcdir)/tools/make-man-index.py $(NON_INDEX_XML_FILES)
717         $(AM_V_at)$(MKDIR_P) $(dir $@)
718         $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
719
720 man/systemd.directives.xml: $(top_srcdir)/tools/make-directive-index.py $(SOURCE_XML_FILES)
721         $(AM_V_at)$(MKDIR_P) $(dir $@)
722         $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
723
724 EXTRA_DIST += \
725         man/systemd.index.xml \
726         man/index.html \
727         man/systemd.directives.xml \
728         man/glib-event-glue.c
729
730 CLEANFILES += \
731         man/systemd.index.xml \
732         man/systemd.directives.xml
733
734 endif
735
736 endif
737
738 EXTRA_DIST += \
739         $(XML_FILES) \
740         $(HTML_FILES) \
741         $(HTML_ALIAS) \
742         $(man_MANS) \
743         tools/make-man-index.py \
744         tools/make-directive-index.py \
745         tools/xml_helper.py
746
747 # ------------------------------------------------------------------------------
748 noinst_LTLIBRARIES += \
749         libsystemd-shared.la
750
751 libsystemd_shared_la_SOURCES = \
752         src/shared/capability.c \
753         src/shared/capability.h \
754         src/shared/linux/auto_dev-ioctl.h \
755         src/shared/ioprio.h \
756         src/shared/missing.h \
757         src/shared/initreq.h \
758         src/shared/securebits.h \
759         src/shared/special.h \
760         src/shared/list.h \
761         src/shared/unaligned.h \
762         src/shared/macro.h \
763         src/shared/def.h \
764         src/shared/sparse-endian.h \
765         src/shared/refcnt.h \
766         src/shared/udev-util.h \
767         src/shared/device-nodes.c \
768         src/shared/device-nodes.h \
769         src/shared/util.c \
770         src/shared/util.h \
771         src/shared/virt.c \
772         src/shared/virt.h \
773         src/shared/architecture.c \
774         src/shared/architecture.h \
775         src/shared/efivars.c \
776         src/shared/efivars.h \
777         src/shared/fstab-util.c \
778         src/shared/fstab-util.h \
779         src/shared/path-util.c \
780         src/shared/path-util.h \
781         src/shared/time-util.c \
782         src/shared/time-util.h \
783         src/shared/locale-util.c \
784         src/shared/locale-util.h \
785         src/shared/mempool.c \
786         src/shared/mempool.h \
787         src/shared/hashmap.c \
788         src/shared/hashmap.h \
789         src/shared/siphash24.c \
790         src/shared/siphash24.h \
791         src/shared/set.h \
792         src/shared/fdset.c \
793         src/shared/fdset.h \
794         src/shared/prioq.c \
795         src/shared/prioq.h \
796         src/shared/sleep-config.c \
797         src/shared/sleep-config.h \
798         src/shared/strv.c \
799         src/shared/strv.h \
800         src/shared/env-util.c \
801         src/shared/env-util.h \
802         src/shared/strbuf.c \
803         src/shared/strbuf.h \
804         src/shared/strxcpyx.c \
805         src/shared/strxcpyx.h \
806         src/shared/conf-parser.c \
807         src/shared/conf-parser.h \
808         src/shared/log.c \
809         src/shared/log.h \
810         src/shared/ratelimit.h \
811         src/shared/ratelimit.c \
812         src/shared/exit-status.c \
813         src/shared/exit-status.h \
814         src/shared/utf8.c \
815         src/shared/utf8.h \
816         src/shared/gunicode.c \
817         src/shared/gunicode.h \
818         src/shared/pager.c \
819         src/shared/pager.h \
820         src/shared/socket-util.c \
821         src/shared/socket-util.h \
822         src/shared/in-addr-util.c \
823         src/shared/in-addr-util.h \
824         src/shared/ether-addr-util.h \
825         src/shared/conf-files.c \
826         src/shared/conf-files.h \
827         src/shared/cgroup-util.c \
828         src/shared/cgroup-util.h \
829         src/shared/cgroup-show.c \
830         src/shared/cgroup-show.h \
831         src/shared/unit-name.c \
832         src/shared/unit-name.h \
833         src/shared/utmp-wtmp.h \
834         src/shared/watchdog.c \
835         src/shared/watchdog.h \
836         src/shared/spawn-ask-password-agent.c \
837         src/shared/spawn-ask-password-agent.h \
838         src/shared/replace-var.c \
839         src/shared/replace-var.h \
840         src/shared/spawn-polkit-agent.c \
841         src/shared/spawn-polkit-agent.h \
842         src/shared/clock-util.c \
843         src/shared/clock-util.h \
844         src/shared/time-dst.c \
845         src/shared/time-dst.h \
846         src/shared/calendarspec.c \
847         src/shared/calendarspec.h \
848         src/shared/fileio.c \
849         src/shared/fileio.h \
850         src/shared/output-mode.h \
851         src/shared/MurmurHash2.c \
852         src/shared/MurmurHash2.h \
853         src/shared/acpi-fpdt.h \
854         src/shared/acpi-fpdt.c \
855         src/shared/boot-timestamps.h \
856         src/shared/boot-timestamps.c \
857         src/shared/mkdir.c \
858         src/shared/mkdir.h \
859         src/shared/smack-util.c \
860         src/shared/smack-util.h \
861         src/shared/apparmor-util.c \
862         src/shared/apparmor-util.h \
863         src/shared/ima-util.c \
864         src/shared/ima-util.h \
865         src/shared/ptyfwd.c \
866         src/shared/ptyfwd.h \
867         src/shared/errno-list.c \
868         src/shared/errno-list.h \
869         src/shared/af-list.c \
870         src/shared/af-list.h \
871         src/shared/arphrd-list.c \
872         src/shared/arphrd-list.h \
873         src/shared/cap-list.c \
874         src/shared/cap-list.h \
875         src/shared/audit.c \
876         src/shared/audit.h \
877         src/shared/xml.c \
878         src/shared/xml.h \
879         src/shared/json.c \
880         src/shared/json.h \
881         src/shared/bus-label.c \
882         src/shared/bus-label.h \
883         src/shared/gpt.h \
884         src/shared/clean-ipc.h \
885         src/shared/clean-ipc.c \
886         src/shared/login-shared.c \
887         src/shared/login-shared.h \
888         src/shared/ring.c \
889         src/shared/ring.h \
890         src/shared/barrier.c \
891         src/shared/barrier.h \
892         src/shared/pty.c \
893         src/shared/pty.h \
894         src/shared/async.c \
895         src/shared/async.h \
896         src/shared/base-filesystem.c \
897         src/shared/base-filesystem.h \
898         src/shared/memfd-util.c \
899         src/shared/memfd-util.h \
900         src/shared/uid-range.c \
901         src/shared/uid-range.h \
902         src/shared/nss-util.h \
903         src/shared/verbs.c \
904         src/shared/verbs.h \
905         src/shared/sigbus.c \
906         src/shared/sigbus.h \
907         src/shared/build.h \
908         src/shared/import-util.c \
909         src/shared/import-util.h
910
911 if HAVE_UTMP
912 libsystemd_shared_la_SOURCES += \
913         src/shared/utmp-wtmp.c
914 endif
915
916 nodist_libsystemd_shared_la_SOURCES = \
917         src/shared/errno-from-name.h \
918         src/shared/errno-to-name.h \
919         src/shared/af-from-name.h \
920         src/shared/af-to-name.h \
921         src/shared/arphrd-from-name.h \
922         src/shared/arphrd-to-name.h \
923         src/shared/cap-from-name.h \
924         src/shared/cap-to-name.h
925
926 libsystemd_shared_la_CFLAGS = \
927         $(AM_CFLAGS) \
928         $(CAP_CFLAGS) \
929         $(SECCOMP_CFLAGS) \
930         -pthread
931
932 libsystemd_shared_la_LIBADD = \
933         $(CAP_LIBS) \
934         -lm
935
936 # ------------------------------------------------------------------------------
937 noinst_LTLIBRARIES += \
938         libsystemd-units.la
939
940 libsystemd_units_la_SOURCES = \
941         src/shared/install.c \
942         src/shared/install.h \
943         src/shared/install-printf.c \
944         src/shared/install-printf.h \
945         src/shared/path-lookup.c \
946         src/shared/path-lookup.h \
947         src/shared/specifier.c \
948         src/shared/specifier.h
949
950 # ------------------------------------------------------------------------------
951 noinst_LTLIBRARIES += \
952         libsystemd-label.la
953
954 libsystemd_label_la_SOURCES = \
955         src/shared/socket-label.c \
956         src/shared/label.c \
957         src/shared/label.h \
958         src/shared/selinux-util.c \
959         src/shared/selinux-util.h \
960         src/shared/mkdir-label.c \
961         src/shared/ask-password-api.c \
962         src/shared/ask-password-api.h \
963         src/shared/switch-root.h \
964         src/shared/switch-root.c \
965         src/shared/fileio-label.c \
966         src/shared/fileio-label.h \
967         src/shared/dev-setup.c \
968         src/shared/dev-setup.h \
969         src/shared/dropin.c \
970         src/shared/dropin.h \
971         src/shared/condition.c \
972         src/shared/condition.h \
973         src/shared/generator.h \
974         src/shared/generator.c \
975         src/shared/btrfs-util.c \
976         src/shared/btrfs-util.h \
977         src/shared/btrfs-ctree.h \
978         src/shared/machine-image.c \
979         src/shared/machine-image.h \
980         src/shared/copy.c \
981         src/shared/copy.h
982
983 libsystemd_label_la_CFLAGS = \
984         $(AM_CFLAGS) \
985         $(SELINUX_CFLAGS)
986
987 libsystemd_label_la_LIBADD = \
988         $(SELINUX_LIBS)
989
990 # -----------------------------------------------------------------------------
991
992 if HAVE_LIBIPTC
993 noinst_LTLIBRARIES += \
994         libsystemd-fw.la
995
996 libsystemd_fw_la_SOURCES = \
997         src/shared/fw-util.h \
998         src/shared/fw-util.c
999
1000 libsystemd_fw_la_CFLAGS = \
1001         $(AM_CFLAGS) \
1002         $(LIBIPTC_CFLAGS)
1003
1004 libsystemd_fw_la_LIBADD = \
1005         $(LIBIPTC_LIBS)
1006 endif
1007
1008 # -----------------------------------------------------------------------------
1009
1010 if ENABLE_LDCONFIG
1011 dist_systemunit_DATA += \
1012         units/ldconfig.service
1013
1014 SYSINIT_TARGET_WANTS += \
1015         ldconfig.service
1016 endif
1017
1018 # ------------------------------------------------------------------------------
1019
1020 if HAVE_SECCOMP
1021 noinst_LTLIBRARIES += \
1022         libsystemd-seccomp.la
1023
1024 libsystemd_seccomp_la_SOURCES = \
1025         src/shared/seccomp-util.h \
1026         src/shared/seccomp-util.c
1027
1028 libsystemd_seccomp_la_CFLAGS = \
1029         $(AM_CFLAGS) \
1030         $(SECCOMP_CFLAGS)
1031
1032 libsystemd_seccomp_la_LIBADD = \
1033         $(SECCOMP_LIBS)
1034 endif
1035
1036 # ------------------------------------------------------------------------------
1037 noinst_LTLIBRARIES += \
1038         libsystemd-logs.la
1039
1040 libsystemd_logs_la_SOURCES = \
1041         src/shared/logs-show.c \
1042         src/shared/logs-show.h
1043
1044 # ------------------------------------------------------------------------------
1045 if HAVE_ACL
1046 noinst_LTLIBRARIES += \
1047         libsystemd-acl.la
1048
1049 libsystemd_acl_la_SOURCES = \
1050         src/shared/acl-util.c \
1051         src/shared/acl-util.h
1052
1053 libsystemd_acl_la_CFLAGS = \
1054         $(AM_CFLAGS) \
1055         $(ACL_CFLAGS)
1056
1057 libsystemd_acl_la_LIBADD = \
1058         $(ACL_LIBS)
1059 endif
1060
1061 # ------------------------------------------------------------------------------
1062 noinst_LTLIBRARIES += \
1063         libsystemd-core.la
1064
1065 libsystemd_core_la_SOURCES = \
1066         src/core/unit.c \
1067         src/core/unit.h \
1068         src/core/unit-printf.c \
1069         src/core/unit-printf.h \
1070         src/core/job.c \
1071         src/core/job.h \
1072         src/core/manager.c \
1073         src/core/manager.h \
1074         src/core/transaction.c \
1075         src/core/transaction.h \
1076         src/core/load-fragment.c \
1077         src/core/load-fragment.h \
1078         src/core/service.c \
1079         src/core/service.h \
1080         src/core/socket.c \
1081         src/core/socket.h \
1082         src/core/busname.c \
1083         src/core/busname.h \
1084         src/core/bus-endpoint.c \
1085         src/core/bus-endpoint.h \
1086         src/core/bus-policy.c \
1087         src/core/bus-policy.h \
1088         src/core/target.c \
1089         src/core/target.h \
1090         src/core/snapshot.c \
1091         src/core/snapshot.h \
1092         src/core/device.c \
1093         src/core/device.h \
1094         src/core/mount.c \
1095         src/core/mount.h \
1096         src/core/automount.c \
1097         src/core/automount.h \
1098         src/core/swap.c \
1099         src/core/swap.h \
1100         src/core/timer.c \
1101         src/core/timer.h \
1102         src/core/path.c \
1103         src/core/path.h \
1104         src/core/slice.c \
1105         src/core/slice.h \
1106         src/core/scope.c \
1107         src/core/scope.h \
1108         src/core/load-dropin.c \
1109         src/core/load-dropin.h \
1110         src/core/execute.c \
1111         src/core/execute.h \
1112         src/core/kill.c \
1113         src/core/kill.h \
1114         src/core/dbus.c \
1115         src/core/dbus.h \
1116         src/core/dbus-manager.c \
1117         src/core/dbus-manager.h \
1118         src/core/dbus-unit.c \
1119         src/core/dbus-unit.h \
1120         src/core/dbus-job.c \
1121         src/core/dbus-job.h \
1122         src/core/dbus-service.c \
1123         src/core/dbus-service.h \
1124         src/core/dbus-socket.c \
1125         src/core/dbus-socket.h \
1126         src/core/dbus-busname.c \
1127         src/core/dbus-busname.h \
1128         src/core/dbus-target.c \
1129         src/core/dbus-target.h \
1130         src/core/dbus-snapshot.c \
1131         src/core/dbus-snapshot.h \
1132         src/core/dbus-device.c \
1133         src/core/dbus-device.h \
1134         src/core/dbus-mount.c \
1135         src/core/dbus-mount.h \
1136         src/core/dbus-automount.c \
1137         src/core/dbus-automount.h \
1138         src/core/dbus-swap.c \
1139         src/core/dbus-swap.h \
1140         src/core/dbus-timer.c \
1141         src/core/dbus-timer.h \
1142         src/core/dbus-path.c \
1143         src/core/dbus-path.h \
1144         src/core/dbus-slice.c \
1145         src/core/dbus-slice.h \
1146         src/core/dbus-scope.c \
1147         src/core/dbus-scope.h \
1148         src/core/dbus-execute.c \
1149         src/core/dbus-execute.h \
1150         src/core/dbus-kill.c \
1151         src/core/dbus-kill.h \
1152         src/core/dbus-cgroup.c \
1153         src/core/dbus-cgroup.h \
1154         src/core/cgroup.c \
1155         src/core/cgroup.h \
1156         src/core/selinux-access.c \
1157         src/core/selinux-access.h \
1158         src/core/selinux-setup.c \
1159         src/core/selinux-setup.h \
1160         src/core/smack-setup.c \
1161         src/core/smack-setup.h \
1162         src/core/ima-setup.c \
1163         src/core/ima-setup.h \
1164         src/core/locale-setup.h \
1165         src/core/locale-setup.c \
1166         src/core/hostname-setup.c \
1167         src/core/hostname-setup.h \
1168         src/core/machine-id-setup.c \
1169         src/core/machine-id-setup.h \
1170         src/core/mount-setup.c \
1171         src/core/mount-setup.h \
1172         src/core/kmod-setup.c \
1173         src/core/kmod-setup.h \
1174         src/core/loopback-setup.h \
1175         src/core/loopback-setup.c \
1176         src/core/namespace.c \
1177         src/core/namespace.h \
1178         src/core/killall.h \
1179         src/core/killall.c \
1180         src/core/audit-fd.c \
1181         src/core/audit-fd.h \
1182         src/core/show-status.c \
1183         src/core/show-status.h \
1184         src/core/failure-action.c \
1185         src/core/failure-action.h
1186
1187 nodist_libsystemd_core_la_SOURCES = \
1188         src/core/load-fragment-gperf.c \
1189         src/core/load-fragment-gperf-nulstr.c
1190
1191 libsystemd_core_la_CFLAGS = \
1192         $(AM_CFLAGS) \
1193         $(PAM_CFLAGS) \
1194         $(AUDIT_CFLAGS) \
1195         $(KMOD_CFLAGS) \
1196         $(APPARMOR_CFLAGS) \
1197         $(SECCOMP_CFLAGS) \
1198         $(MOUNT_CFLAGS) \
1199         -pthread
1200
1201 libsystemd_core_la_LIBADD = \
1202         libsystemd-units.la \
1203         libsystemd-label.la \
1204         libudev-internal.la \
1205         libsystemd-shared.la \
1206         libsystemd-internal.la \
1207         $(PAM_LIBS) \
1208         $(AUDIT_LIBS) \
1209         $(KMOD_LIBS) \
1210         $(APPARMOR_LIBS) \
1211         $(SECCOMP_LIBS) \
1212         $(MOUNT_LIBS)
1213
1214 if HAVE_SECCOMP
1215 libsystemd_core_la_LIBADD += \
1216         libsystemd-seccomp.la
1217 endif
1218
1219 src/core/load-fragment-gperf-nulstr.c: src/core/load-fragment-gperf.gperf
1220         $(AM_V_at)$(MKDIR_P) $(dir $@)
1221         $(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
1223 EXTRA_DIST += \
1224         src/core/load-fragment-gperf.gperf.m4
1225
1226 CLEANFILES += \
1227         src/core/load-fragment-gperf.gperf \
1228         src/core/load-fragment-gperf.c \
1229         src/core/load-fragment-gperf-nulstr.c \
1230         src/shared/errno-list.txt \
1231         src/shared/errno-from-name.gperf \
1232         src/shared/af-list.txt \
1233         src/shared/af-from-name.gperf \
1234         src/shared/arphrd-list.txt \
1235         src/shared/arphrd-from-name.gperf \
1236         src/shared/cap-list.txt \
1237         src/shared/cap-from-name.gperf \
1238         src/resolve/dns_type-list.txt \
1239         src/resolve/dns_type-from-name.gperf
1240
1241 BUILT_SOURCES += \
1242         src/shared/errno-from-name.h \
1243         src/shared/errno-to-name.h \
1244         src/shared/af-from-name.h \
1245         src/shared/af-to-name.h \
1246         src/shared/arphrd-from-name.h \
1247         src/shared/arphrd-to-name.h \
1248         src/shared/cap-from-name.h \
1249         src/shared/cap-to-name.h \
1250         src/resolve/dns_type-from-name.h \
1251         src/resolve/dns_type-to-name.h
1252
1253 %-from-name.gperf: %-list.txt
1254         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct $(notdir $*)_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
1255
1256 %-from-name.h: %-from-name.gperf
1257         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_$(notdir $*) -H hash_$(notdir $*)_name -p -C <$< >$@
1258
1259
1260 src/shared/errno-list.txt:
1261         $(AM_V_at)$(MKDIR_P) $(dir $@)
1262         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include errno.h - </dev/null | $(AWK) '/^#define[ \t]+E[^ _]+[ \t]+/ { print $$2; }' >$@
1263
1264 src/shared/errno-to-name.h: src/shared/errno-list.txt
1265         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const errno_names[] = { "} !/EDEADLOCK/ && !/EWOULDBLOCK/ && !/ENOTSUP/ { printf "[%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
1266
1267
1268 src/shared/af-list.txt:
1269         $(AM_V_at)$(MKDIR_P) $(dir $@)
1270         $(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; }' >$@
1271
1272 src/shared/af-to-name.h: src/shared/af-list.txt
1273         $(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
1275
1276 src/shared/arphrd-list.txt:
1277         $(AM_V_at)$(MKDIR_P) $(dir $@)
1278         $(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_//' >$@
1279
1280 src/shared/arphrd-to-name.h: src/shared/arphrd-list.txt
1281         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const arphrd_names[] = { "} !/CISCO/ { printf "[ARPHRD_%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
1282
1283 src/shared/arphrd-from-name.gperf: src/shared/arphrd-list.txt
1284         $(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
1286
1287 src/shared/cap-list.txt:
1288         $(AM_V_at)$(MKDIR_P) $(dir $@)
1289         $(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 >$@
1290
1291 src/shared/cap-to-name.h: src/shared/cap-list.txt
1292         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const capability_names[] = { "} { printf "[%s] = \"%s\",\n", $$1, tolower($$1) } END{print "};"}' <$< >$@
1293
1294 src/shared/cap-from-name.gperf: src/shared/cap-list.txt
1295         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct capability_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
1296
1297 src/shared/cap-from-name.h: src/shared/cap-from-name.gperf
1298         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_capability -H hash_capability_name -p -C <$< >$@
1299
1300
1301 src/resolve/dns_type-list.txt: src/resolve/dns-type.h
1302         $(AM_V_at)$(MKDIR_P) $(dir $@)
1303         $(AM_V_GEN)$(SED) -n -r 's/.* DNS_TYPE_(\w+).*/\1/p' <$< >$@
1304
1305 src/resolve/dns_type-to-name.h: src/resolve/dns_type-list.txt
1306         $(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" }' <$< >$@
1307
1308 src/resolve/dns_type-from-name.gperf: src/resolve/dns_type-list.txt
1309         $(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 }' <$< >$@
1310
1311 # ------------------------------------------------------------------------------
1312 systemd_SOURCES = \
1313         src/core/main.c
1314
1315 systemd_CFLAGS = \
1316         $(AM_CFLAGS) \
1317         $(SECCOMP_CFLAGS)
1318
1319 systemd_LDADD = \
1320         libsystemd-core.la \
1321         $(RT_LIBS)
1322
1323 dist_pkgsysconf_DATA += \
1324         src/core/system.conf \
1325         src/core/user.conf
1326
1327 dist_dbuspolicy_DATA += \
1328         src/core/org.freedesktop.systemd1.conf
1329
1330 dist_dbussystemservice_DATA += \
1331         src/core/org.freedesktop.systemd1.service
1332
1333 polkitpolicy_in_in_files += \
1334         src/core/org.freedesktop.systemd1.policy.in.in
1335
1336 pkgconfiglib_DATA += \
1337         src/core/systemd.pc
1338
1339 nodist_rpmmacros_DATA = \
1340         src/core/macros.systemd
1341
1342 EXTRA_DIST += \
1343         src/core/systemd.pc.in \
1344         src/core/macros.systemd.in
1345
1346 CLEANFILES += \
1347         src/core/macros.systemd \
1348         src/core/org.freedesktop.systemd1.policy.in
1349
1350 # ------------------------------------------------------------------------------
1351
1352 manual_tests += \
1353         test-ns \
1354         test-loopback \
1355         test-hostname \
1356         test-daemon \
1357         test-cgroup \
1358         test-install \
1359         test-watchdog \
1360         test-log \
1361         test-ipcrm \
1362         test-btrfs
1363
1364 if HAVE_LIBIPTC
1365 manual_tests += \
1366         test-fw-util
1367 endif
1368
1369 if HAVE_KMOD
1370 manual_tests += \
1371         test-rtnl-manual
1372 endif
1373
1374 tests += \
1375         test-engine \
1376         test-cgroup-mask \
1377         test-job-type \
1378         test-env-replace \
1379         test-strbuf \
1380         test-strv \
1381         test-path \
1382         test-path-util \
1383         test-strxcpyx \
1384         test-unit-name \
1385         test-unit-file \
1386         test-utf8 \
1387         test-ellipsize \
1388         test-util \
1389         test-path-lookup \
1390         test-ring \
1391         test-barrier \
1392         test-pty \
1393         test-tmpfiles \
1394         test-namespace \
1395         test-date \
1396         test-sleep \
1397         test-replace-var \
1398         test-sched-prio \
1399         test-calendarspec \
1400         test-strip-tab-ansi \
1401         test-cgroup-util \
1402         test-fstab-util \
1403         test-prioq \
1404         test-fileio \
1405         test-time \
1406         test-hashmap \
1407         test-set \
1408         test-list \
1409         test-unaligned \
1410         test-tables \
1411         test-device-nodes \
1412         test-xml \
1413         test-json \
1414         test-architecture \
1415         test-socket-util \
1416         test-fdset \
1417         test-conf-files \
1418         test-capability \
1419         test-async \
1420         test-ratelimit \
1421         test-condition \
1422         test-uid-range \
1423         test-bus-policy \
1424         test-locale-util \
1425         test-execute \
1426         test-copy \
1427         test-cap-list \
1428         test-sigbus \
1429         test-verbs
1430
1431 EXTRA_DIST += \
1432         test/a.service \
1433         test/basic.target \
1434         test/b.service \
1435         test/c.service \
1436         test/daughter.service \
1437         test/d.service \
1438         test/end.service.in \
1439         test/e.service \
1440         test/f.service \
1441         test/grandchild.service \
1442         test/g.service \
1443         test/hello-after-sleep.target \
1444         test/hello.service \
1445         test/h.service \
1446         test/parent-deep.slice \
1447         test/parent.slice \
1448         test/paths.target \
1449         test/sched_idle_bad.service \
1450         test/sched_idle_ok.service \
1451         test/sched_rr_bad.service \
1452         test/sched_rr_change.service \
1453         test/sched_rr_ok.service \
1454         test/shutdown.target \
1455         test/sleep.service \
1456         test/sockets.target \
1457         test/son.service \
1458         test/sysinit.target \
1459         test/testsuite.target \
1460         test/timers.target \
1461         test/unstoppable.service \
1462         test/path-changed.service \
1463         test/path-directorynotempty.service \
1464         test/path-existsglob.service \
1465         test/path-exists.service \
1466         test/path-makedirectory.service \
1467         test/path-modified.service \
1468         test/path-mycustomunit.service \
1469         test/path-service.service \
1470         test/path-changed.path \
1471         test/path-directorynotempty.path \
1472         test/path-existsglob.path \
1473         test/path-exists.path \
1474         test/path-makedirectory.path \
1475         test/path-modified.path \
1476         test/path-unit.path \
1477         test/exec-environment-empty.service \
1478         test/exec-environment-multiple.service \
1479         test/exec-environment.service \
1480         test/exec-group.service \
1481         test/exec-ignoresigpipe-no.service \
1482         test/exec-ignoresigpipe-yes.service \
1483         test/exec-personality-x86-64.service \
1484         test/exec-personality-x86.service \
1485         test/exec-privatedevices-no.service \
1486         test/exec-privatedevices-yes.service \
1487         test/exec-privatetmp-no.service \
1488         test/exec-privatetmp-yes.service \
1489         test/exec-systemcallerrornumber.service \
1490         test/exec-systemcallfilter-failing2.service \
1491         test/exec-systemcallfilter-failing.service \
1492         test/exec-systemcallfilter-not-failing2.service \
1493         test/exec-systemcallfilter-not-failing.service \
1494         test/exec-user.service \
1495         test/exec-workingdirectory.service \
1496         test/exec-umask-0177.service \
1497         test/exec-umask-default.service \
1498         test/bus-policy/hello.conf \
1499         test/bus-policy/methods.conf \
1500         test/bus-policy/ownerships.conf \
1501         test/bus-policy/signals.conf \
1502         test/bus-policy/check-own-rules.conf \
1503         test/bus-policy/many-rules.conf \
1504         test/bus-policy/test.conf
1505
1506
1507 EXTRA_DIST += \
1508         src/test/test-helper.h
1509
1510 test_device_nodes_SOURCES = \
1511         src/test/test-device-nodes.c
1512
1513 test_device_nodes_LDADD = \
1514         libsystemd-shared.la
1515
1516 test_engine_SOURCES = \
1517         src/test/test-engine.c
1518
1519 test_engine_CFLAGS = \
1520         $(AM_CFLAGS) \
1521         $(SECCOMP_CFLAGS)
1522
1523 test_engine_LDADD = \
1524         libsystemd-core.la \
1525         $(RT_LIBS)
1526
1527 test_job_type_SOURCES = \
1528         src/test/test-job-type.c
1529
1530 test_job_type_CFLAGS = \
1531         $(AM_CFLAGS) \
1532         $(SECCOMP_CFLAGS)
1533
1534 test_job_type_LDADD = \
1535         libsystemd-core.la \
1536         $(RT_LIBS)
1537
1538 test_ns_SOURCES = \
1539         src/test/test-ns.c
1540
1541 test_ns_CFLAGS = \
1542         $(AM_CFLAGS) \
1543         $(SECCOMP_CFLAGS)
1544
1545 test_ns_LDADD = \
1546         libsystemd-core.la
1547
1548 test_loopback_SOURCES = \
1549         src/test/test-loopback.c
1550
1551 test_loopback_LDADD = \
1552         libsystemd-core.la
1553
1554 test_hostname_SOURCES = \
1555         src/test/test-hostname.c
1556
1557 test_hostname_LDADD = \
1558         libsystemd-core.la
1559
1560 if ENABLE_EFI
1561 manual_tests += \
1562         test-boot-timestamp
1563
1564 test_boot_timestamp_SOURCES = \
1565         src/test/test-boot-timestamps.c
1566
1567 test_boot_timestamp_LDADD = \
1568         libsystemd-shared.la
1569 endif
1570
1571 test_unit_name_SOURCES = \
1572         src/test/test-unit-name.c
1573
1574 test_unit_name_CFLAGS = \
1575         $(AM_CFLAGS) \
1576         $(SECCOMP_CFLAGS)
1577
1578 test_unit_name_LDADD = \
1579         libsystemd-core.la \
1580         $(RT_LIBS)
1581
1582 test_unit_file_SOURCES = \
1583         src/test/test-unit-file.c
1584
1585 test_unit_file_CFLAGS = \
1586         $(AM_CFLAGS) \
1587         $(SECCOMP_CFLAGS)
1588
1589 test_unit_file_LDADD = \
1590         libsystemd-core.la \
1591         $(RT_LIBS)
1592
1593 test_utf8_SOURCES = \
1594         src/test/test-utf8.c
1595
1596 test_utf8_LDADD = \
1597         libsystemd-shared.la
1598
1599 test_capability_SOURCES = \
1600         src/test/test-capability.c
1601
1602 test_capability_LDADD = \
1603         libsystemd-shared.la
1604
1605 test_async_SOURCES = \
1606         src/test/test-async.c
1607
1608 test_async_LDADD = \
1609         libsystemd-shared.la
1610
1611 test_locale_util_SOURCES = \
1612         src/test/test-locale-util.c
1613
1614 test_locale_util_LDADD = \
1615         libsystemd-shared.la
1616
1617 test_copy_SOURCES = \
1618         src/test/test-copy.c
1619
1620 test_copy_LDADD = \
1621         libsystemd-label.la \
1622         libsystemd-shared.la
1623
1624 test_sigbus_SOURCES = \
1625         src/test/test-sigbus.c
1626
1627 test_sigbus_LDADD = \
1628         libsystemd-shared.la
1629
1630 test_condition_SOURCES = \
1631         src/test/test-condition.c
1632
1633 test_condition_LDADD = \
1634         libsystemd-label.la \
1635         libsystemd-internal.la \
1636         libsystemd-shared.la
1637
1638 test_fdset_SOURCES = \
1639         src/test/test-fdset.c
1640
1641 test_fdset_LDADD = \
1642         libsystemd-shared.la \
1643         libsystemd-internal.la
1644
1645 test_fstab_util_SOURCES = \
1646         src/test/test-fstab-util.c
1647
1648 test_fstab_util_LDADD = \
1649         libsystemd-shared.la
1650
1651 test_ratelimit_SOURCES = \
1652         src/test/test-ratelimit.c
1653
1654 test_ratelimit_LDADD = \
1655         libsystemd-shared.la
1656
1657 test_util_SOURCES = \
1658         src/test/test-util.c
1659
1660 test_util_LDADD = \
1661         libsystemd-shared.la
1662
1663 test_path_lookup_SOURCES = \
1664         src/test/test-path-lookup.c
1665
1666 test_path_lookup_LDADD = \
1667         -lm \
1668         libsystemd-units.la \
1669         libsystemd-shared.la
1670
1671 test_uid_range_SOURCES = \
1672         src/test/test-uid-range.c
1673
1674 test_uid_range_LDADD = \
1675         libsystemd-shared.la
1676
1677 test_cap_list_SOURCES = \
1678         src/test/test-cap-list.c
1679
1680 test_cap_list_LDADD = \
1681         libsystemd-shared.la
1682
1683 test_socket_util_SOURCES = \
1684         src/test/test-socket-util.c
1685
1686 test_socket_util_LDADD = \
1687         libsystemd-shared.la
1688
1689 test_ring_SOURCES = \
1690         src/test/test-ring.c
1691
1692 test_ring_LDADD = \
1693         libsystemd-shared.la
1694
1695 test_barrier_SOURCES = \
1696         src/test/test-barrier.c
1697
1698 test_barrier_LDADD = \
1699         libsystemd-shared.la
1700
1701 test_pty_SOURCES = \
1702         src/test/test-pty.c
1703
1704 test_pty_LDADD = \
1705         libsystemd-core.la
1706
1707 test_tmpfiles_SOURCES = \
1708         src/test/test-tmpfiles.c
1709
1710 test_tmpfiles_LDADD = \
1711         libsystemd-shared.la
1712
1713 test_namespace_SOURCES = \
1714         src/test/test-namespace.c
1715
1716 test_verbs_SOURCES = \
1717         src/test/test-verbs.c
1718
1719 test_verbs_LDADD = \
1720         libsystemd-shared.la
1721
1722 test_namespace_LDADD = \
1723         libsystemd-core.la
1724
1725 CLEANFILES += \
1726         src/test/test-hashmap-ordered.c
1727
1728 BUILT_SOURCES += \
1729         src/test/test-hashmap-ordered.c
1730
1731 src/test/test-hashmap-ordered.c: src/test/test-hashmap-plain.c
1732         $(AM_V_at)$(MKDIR_P) $(dir $@)
1733         $(AM_V_GEN)$(AWK) 'BEGIN { print "/* GENERATED FILE */\n#define ORDERED" } \
1734                            { if (!match($$0, "^#include"))          \
1735                                  gsub(/hashmap/, "ordered_hashmap"); \
1736                              gsub(/HASHMAP/, "ORDERED_HASHMAP");     \
1737                              gsub(/Hashmap/, "OrderedHashmap");      \
1738                              print }' <$< >$@
1739
1740 nodist_test_hashmap_SOURCES = \
1741         src/test/test-hashmap-ordered.c
1742
1743 test_hashmap_SOURCES = \
1744         src/test/test-hashmap.c \
1745         src/test/test-hashmap-plain.c
1746
1747 test_hashmap_LDADD = \
1748         libsystemd-shared.la
1749
1750 test_set_SOURCES = \
1751         src/test/test-set.c
1752
1753 test_set_LDADD = \
1754         libsystemd-shared.la
1755
1756 test_xml_SOURCES = \
1757         src/test/test-xml.c
1758
1759 test_xml_LDADD = \
1760         libsystemd-shared.la
1761
1762 test_json_SOURCES = \
1763         src/test/test-json.c
1764
1765 test_json_LDADD = \
1766         libsystemd-shared.la
1767
1768 test_list_SOURCES = \
1769         src/test/test-list.c
1770
1771 test_list_LDADD = \
1772         libsystemd-shared.la
1773
1774 test_unaligned_LDADD = \
1775         libsystemd-shared.la
1776
1777 test_unaligned_SOURCES = \
1778         src/test/test-unaligned.c
1779
1780 test_tables_SOURCES = \
1781         src/test/test-tables.c \
1782         src/shared/test-tables.h \
1783         src/bus-proxyd/bus-xml-policy.c \
1784         src/bus-proxyd/bus-xml-policy.h \
1785         src/journal/journald-server.c \
1786         src/journal/journald-server.h
1787
1788 test_tables_CPPFLAGS = \
1789         $(AM_CPPFLAGS) \
1790         -I$(top_srcdir)/src/bus-proxyd
1791
1792 test_tables_CFLAGS = \
1793         $(AM_CFLAGS) \
1794         $(SECCOMP_CFLAGS)
1795
1796 test_tables_LDADD = \
1797         libsystemd-logs.la \
1798         libsystemd-journal-internal.la \
1799         libsystemd-journal-core.la \
1800         libsystemd-core.la \
1801         libudev-core.la \
1802         $(RT_LIBS)
1803
1804 test_prioq_SOURCES = \
1805         src/test/test-prioq.c
1806
1807 test_prioq_LDADD = \
1808         libsystemd-shared.la
1809
1810 test_fileio_SOURCES = \
1811         src/test/test-fileio.c
1812
1813 test_fileio_LDADD = \
1814         libsystemd-shared.la
1815
1816 test_time_SOURCES = \
1817         src/test/test-time.c
1818
1819 test_time_LDADD = \
1820         libsystemd-shared.la
1821
1822 test_architecture_SOURCES = \
1823         src/test/test-architecture.c
1824
1825 test_architecture_LDADD = \
1826         libsystemd-shared.la
1827
1828 test_log_SOURCES = \
1829         src/test/test-log.c
1830
1831 test_log_LDADD = \
1832         libsystemd-shared.la
1833
1834 test_ipcrm_SOURCES = \
1835         src/test/test-ipcrm.c
1836
1837 test_ipcrm_LDADD = \
1838         libsystemd-shared.la \
1839         -lrt
1840
1841 test_btrfs_SOURCES = \
1842         src/test/test-btrfs.c
1843
1844 test_btrfs_LDADD = \
1845         libsystemd-label.la \
1846         libsystemd-shared.la
1847
1848 if HAVE_LIBIPTC
1849 test_fw_util_SOURCES = \
1850         src/test/test-fw-util.c
1851
1852 test_fw_util_CFLAGS = \
1853         $(AM_CFLAGS) \
1854         $(LIBIPTC_CFLAGS)
1855
1856 test_fw_util_LDADD = \
1857         libsystemd-fw.la \
1858         libsystemd-shared.la \
1859         $(LIBIPTC_LIBS)
1860 endif
1861
1862 test_rtnl_manual_SOURCES = \
1863         src/test/test-rtnl-manual.c
1864
1865 test_rtnl_manual_CFLAGS = \
1866         $(AM_CFLAGS) \
1867         $(KMOD_CFLAGS)
1868
1869 test_rtnl_manual_LDADD = \
1870         libsystemd-internal.la \
1871         libsystemd-shared.la \
1872         $(KMOD_LIBS)
1873
1874 test_ellipsize_SOURCES = \
1875         src/test/test-ellipsize.c
1876
1877 test_ellipsize_LDADD = \
1878         libsystemd-shared.la
1879
1880 test_date_SOURCES = \
1881         src/test/test-date.c
1882
1883 test_date_LDADD = \
1884         libsystemd-shared.la
1885
1886 test_sleep_SOURCES = \
1887         src/test/test-sleep.c
1888
1889 test_sleep_LDADD = \
1890         libsystemd-core.la
1891
1892 test_replace_var_SOURCES = \
1893         src/test/test-replace-var.c
1894
1895 test_replace_var_LDADD = \
1896         libsystemd-shared.la
1897
1898 test_calendarspec_SOURCES = \
1899         src/test/test-calendarspec.c
1900
1901 test_calendarspec_LDADD = \
1902         libsystemd-shared.la
1903
1904 test_strip_tab_ansi_SOURCES = \
1905         src/test/test-strip-tab-ansi.c
1906
1907 test_strip_tab_ansi_LDADD = \
1908         libsystemd-shared.la
1909
1910 test_daemon_SOURCES = \
1911         src/test/test-daemon.c
1912
1913 test_daemon_LDADD = \
1914         libsystemd-internal.la \
1915         libsystemd-shared.la
1916
1917 test_cgroup_SOURCES = \
1918         src/test/test-cgroup.c
1919
1920 test_cgroup_LDADD = \
1921         libsystemd-label.la \
1922         libsystemd-shared.la \
1923         libsystemd-internal.la
1924
1925 test_cgroup_mask_SOURCES = \
1926         src/test/test-cgroup-mask.c
1927
1928 test_cgroup_mask_CPPFLAGS = \
1929         $(AM_CPPFLAGS)
1930
1931 test_cgroup_mask_CFLAGS = \
1932         $(AM_CFLAGS) \
1933         $(SECCOMP_CFLAGS)
1934
1935 test_cgroup_mask_LDADD = \
1936         libsystemd-core.la \
1937         $(RT_LIBS)
1938
1939 test_cgroup_util_SOURCES = \
1940         src/test/test-cgroup-util.c
1941
1942 test_cgroup_util_LDADD = \
1943         libsystemd-label.la \
1944         libsystemd-internal.la \
1945         libsystemd-shared.la
1946
1947 test_env_replace_SOURCES = \
1948         src/test/test-env-replace.c
1949
1950 test_env_replace_LDADD = \
1951         libsystemd-shared.la
1952
1953 test_strbuf_SOURCES = \
1954         src/test/test-strbuf.c
1955
1956 test_strbuf_LDADD = \
1957         libsystemd-shared.la
1958
1959 test_strv_SOURCES = \
1960         src/test/test-strv.c
1961
1962 test_strv_LDADD = \
1963         libsystemd-units.la \
1964         libsystemd-internal.la \
1965         libsystemd-shared.la
1966
1967 test_path_util_SOURCES = \
1968         src/test/test-path-util.c
1969
1970 test_path_util_LDADD = \
1971         libsystemd-shared.la
1972
1973 test_path_SOURCES = \
1974         src/test/test-path.c
1975
1976 test_path_CFLAGS = \
1977         $(AM_CFLAGS)
1978
1979 test_path_LDADD = \
1980         libsystemd-core.la
1981
1982 test_execute_SOURCES = \
1983         src/test/test-execute.c
1984
1985 test_execute_CFLAGS = \
1986         $(AM_CFLAGS)
1987
1988 test_execute_LDADD = \
1989         libsystemd-core.la
1990
1991 test_strxcpyx_SOURCES = \
1992         src/test/test-strxcpyx.c
1993
1994 test_strxcpyx_LDADD = \
1995         libsystemd-shared.la
1996
1997 test_install_SOURCES = \
1998         src/test/test-install.c
1999
2000 test_install_LDADD = \
2001         libsystemd-units.la \
2002         libsystemd-label.la \
2003         libsystemd-shared.la \
2004         libsystemd-internal.la
2005
2006 test_watchdog_SOURCES = \
2007         src/test/test-watchdog.c
2008
2009 test_watchdog_LDADD = \
2010         libsystemd-shared.la
2011
2012 test_sched_prio_SOURCES = \
2013         src/test/test-sched-prio.c
2014
2015 test_sched_prio_CPPFLAGS = \
2016         $(AM_CPPFLAGS)
2017
2018 test_sched_prio_CFLAGS = \
2019         $(AM_CFLAGS) \
2020         $(SECCOMP_CFLAGS)
2021
2022 test_sched_prio_LDADD = \
2023         libsystemd-core.la \
2024         $(RT_LIBS)
2025
2026 test_conf_files_SOURCES = \
2027         src/test/test-conf-files.c
2028
2029 test_conf_files_LDADD = \
2030         libsystemd-shared.la
2031
2032 test_bus_policy_SOURCES = \
2033         src/bus-proxyd/test-bus-xml-policy.c
2034
2035 test_bus_policy_LDADD = \
2036         libsystemd-proxy.la \
2037         libsystemd-internal.la \
2038         libsystemd-shared.la
2039
2040 # ------------------------------------------------------------------------------
2041 ## .PHONY so it always rebuilds it
2042 .PHONY: coverage lcov-run lcov-report coverage-sync
2043
2044 # run lcov from scratch, always
2045 coverage: all
2046         $(MAKE) lcov-run
2047         $(MAKE) lcov-report
2048
2049 coverage_dir = coverage
2050 coverage_opts = --base-directory $(srcdir) --directory $(builddir) --rc 'geninfo_adjust_src_path=$(abspath $(srcdir))=>$(abspath $(builddir))'
2051
2052 if ENABLE_COVERAGE
2053 # reset run coverage tests
2054 lcov-run:
2055         @rm -rf $(coverage_dir)
2056         lcov $(coverage_opts) --zerocounters
2057         -$(MAKE) check
2058
2059 # generate report based on current coverage data
2060 lcov-report:
2061         $(MKDIR_P) $(coverage_dir)
2062         lcov $(coverage_opts) --compat-libtool --capture --no-external \
2063                 | sed 's|$(abspath $(builddir))|$(abspath $(srcdir))|' > $(coverage_dir)/.lcov.info
2064         lcov --remove $(coverage_dir)/.lcov.info --output-file $(coverage_dir)/.lcov-clean.info 'test-*'
2065         genhtml -t "systemd test coverage" -o $(coverage_dir) $(coverage_dir)/.lcov-clean.info
2066         @echo "Coverage report generated in $(abs_builddir)/$(coverage_dir)/index.html"
2067
2068 # lcov doesn't work properly with vpath builds, make sure that bad
2069 # output is not uploaded by mistake.
2070 coverage-sync: coverage
2071         test "$(builddir)" = "$(srcdir)"
2072         rsync -rlv --delete --omit-dir-times coverage/ $(www_target)/coverage
2073
2074 else
2075 lcov-run lcov-report:
2076         echo "Need to reconfigure with --enable-coverage"
2077 endif
2078
2079 # ------------------------------------------------------------------------------
2080 systemd_analyze_SOURCES = \
2081         src/analyze/analyze.c \
2082         src/analyze/analyze-verify.c \
2083         src/analyze/analyze-verify.h
2084
2085 systemd_verify_CFLAGS = \
2086         $(AM_CFLAGS) \
2087         $(SECCOMP_CFLAGS)
2088
2089 systemd_analyze_LDADD = \
2090         libsystemd-core.la \
2091         libsystemd-internal.la \
2092         libsystemd-shared.la \
2093         $(RT_LIBS)
2094
2095 # ------------------------------------------------------------------------------
2096 systemd_initctl_SOURCES = \
2097         src/initctl/initctl.c
2098
2099 systemd_initctl_LDADD = \
2100         libsystemd-internal.la \
2101         libsystemd-shared.la
2102
2103 # ------------------------------------------------------------------------------
2104 systemd_update_utmp_SOURCES = \
2105         src/update-utmp/update-utmp.c
2106
2107 systemd_update_utmp_CFLAGS = \
2108         $(AM_CFLAGS) \
2109         $(AUDIT_CFLAGS)
2110
2111 systemd_update_utmp_LDADD = \
2112         libsystemd-internal.la \
2113         libsystemd-shared.la \
2114         $(AUDIT_LIBS)
2115
2116 # ------------------------------------------------------------------------------
2117 systemd_update_done_SOURCES = \
2118         src/update-done/update-done.c
2119
2120 systemd_update_done_LDADD = \
2121         libsystemd-internal.la \
2122         libsystemd-label.la \
2123         libsystemd-shared.la
2124
2125 # ------------------------------------------------------------------------------
2126 systemd_shutdownd_SOURCES = \
2127         src/shutdownd/shutdownd.c
2128
2129 systemd_shutdownd_LDADD = \
2130         libsystemd-label.la \
2131         libsystemd-internal.la \
2132         libsystemd-shared.la
2133
2134 dist_doc_DATA += \
2135         src/systemd/sd-shutdown.h
2136
2137 # ------------------------------------------------------------------------------
2138 systemd_shutdown_SOURCES = \
2139         src/core/umount.c \
2140         src/core/umount.h \
2141         src/core/shutdown.c \
2142         src/core/mount-setup.c \
2143         src/core/mount-setup.h \
2144         src/core/killall.h \
2145         src/core/killall.c
2146
2147 systemd_shutdown_LDADD = \
2148         libsystemd-label.la \
2149         libudev-internal.la \
2150         libsystemd-shared.la
2151
2152 # ------------------------------------------------------------------------------
2153 if HAVE_KMOD
2154 systemd_modules_load_SOURCES = \
2155         src/modules-load/modules-load.c
2156
2157 systemd_modules_load_CFLAGS = \
2158         $(AM_CFLAGS) \
2159         $(KMOD_CFLAGS)
2160
2161 systemd_modules_load_LDADD = \
2162         libsystemd-shared.la \
2163         $(KMOD_LIBS)
2164
2165 rootlibexec_PROGRAMS += \
2166         systemd-modules-load
2167
2168 nodist_systemunit_DATA += \
2169         units/systemd-modules-load.service
2170
2171 SYSINIT_TARGET_WANTS += \
2172         systemd-modules-load.service
2173
2174 if ENABLE_TMPFILES
2175 nodist_systemunit_DATA += \
2176         units/kmod-static-nodes.service
2177
2178 SYSINIT_TARGET_WANTS += \
2179         kmod-static-nodes.service
2180 endif
2181 endif
2182
2183 EXTRA_DIST += \
2184         units/systemd-modules-load.service.in \
2185         units/kmod-static-nodes.service.in
2186
2187 # ------------------------------------------------------------------------------
2188 if ENABLE_TMPFILES
2189 systemd_tmpfiles_SOURCES = \
2190         src/tmpfiles/tmpfiles.c
2191
2192 systemd_tmpfiles_LDADD = \
2193         libsystemd-units.la \
2194         libsystemd-label.la \
2195         libsystemd-internal.la \
2196         libsystemd-shared.la
2197
2198 if HAVE_ACL
2199 systemd_tmpfiles_LDADD += \
2200         libsystemd-acl.la
2201 endif
2202
2203 rootbin_PROGRAMS += \
2204         systemd-tmpfiles
2205
2206 dist_systemunit_DATA += \
2207         units/systemd-tmpfiles-clean.timer
2208
2209 nodist_systemunit_DATA += \
2210         units/systemd-tmpfiles-setup-dev.service \
2211         units/systemd-tmpfiles-setup.service \
2212         units/systemd-tmpfiles-clean.service
2213
2214 nodist_tmpfiles_DATA = \
2215         tmpfiles.d/etc.conf
2216
2217 dist_tmpfiles_DATA = \
2218         tmpfiles.d/systemd.conf \
2219         tmpfiles.d/systemd-nologin.conf \
2220         tmpfiles.d/tmp.conf \
2221         tmpfiles.d/x11.conf \
2222         tmpfiles.d/var.conf
2223
2224 if HAVE_SYSV_COMPAT
2225 dist_tmpfiles_DATA += \
2226         tmpfiles.d/legacy.conf
2227 endif
2228
2229 SYSINIT_TARGET_WANTS += \
2230         systemd-tmpfiles-setup-dev.service \
2231         systemd-tmpfiles-setup.service
2232
2233 dist_zshcompletion_DATA += \
2234         shell-completion/zsh/_systemd-tmpfiles
2235
2236 TIMERS_TARGET_WANTS += \
2237         systemd-tmpfiles-clean.timer
2238
2239 INSTALL_DIRS += \
2240         $(tmpfilesdir) \
2241         $(sysconfdir)/tmpfiles.d
2242 endif
2243
2244 EXTRA_DIST += \
2245         tmpfiles.d/etc.conf.m4 \
2246         units/systemd-tmpfiles-setup-dev.service.in \
2247         units/systemd-tmpfiles-setup.service.in \
2248         units/systemd-tmpfiles-clean.service.in
2249
2250 CLEANFILES += \
2251         tmpfiles.d/etc.conf
2252
2253 # ------------------------------------------------------------------------------
2254 if ENABLE_SYSUSERS
2255 systemd_sysusers_SOURCES = \
2256         src/sysusers/sysusers.c
2257
2258 systemd_sysusers_LDADD = \
2259         libsystemd-units.la \
2260         libsystemd-label.la \
2261         libsystemd-internal.la \
2262         libsystemd-shared.la
2263
2264 rootbin_PROGRAMS += \
2265         systemd-sysusers
2266
2267 nodist_systemunit_DATA += \
2268         units/systemd-sysusers.service
2269
2270 SYSINIT_TARGET_WANTS += \
2271         systemd-sysusers.service
2272
2273 dist_sysusers_DATA = \
2274         sysusers.d/systemd.conf
2275
2276 nodist_sysusers_DATA = \
2277         sysusers.d/basic.conf
2278
2279 EXTRA_DIST += \
2280         units/systemd-sysusers.service.in \
2281         sysusers.d/basic.conf.in
2282
2283 CLEANFILES += \
2284         sysusers.d/basic.conf
2285
2286 INSTALL_DIRS += \
2287         $(sysusersdir)
2288 endif
2289
2290 # ------------------------------------------------------------------------------
2291 dist_factory_etc_DATA = \
2292         factory/etc/nsswitch.conf
2293
2294 if HAVE_PAM
2295 dist_factory_pam_DATA = \
2296         factory/etc/pam.d/system-auth \
2297         factory/etc/pam.d/other
2298 endif
2299
2300 # ------------------------------------------------------------------------------
2301 if ENABLE_FIRSTBOOT
2302 systemd_firstboot_SOURCES = \
2303         src/firstboot/firstboot.c
2304
2305 systemd_firstboot_LDADD = \
2306         libsystemd-units.la \
2307         libsystemd-label.la \
2308         libsystemd-internal.la \
2309         libsystemd-shared.la \
2310         -lcrypt
2311
2312 rootbin_PROGRAMS += \
2313         systemd-firstboot
2314
2315 nodist_systemunit_DATA += \
2316         units/systemd-firstboot.service
2317
2318 EXTRA_DIST += \
2319         units/systemd-firstboot.service.in
2320
2321 SYSINIT_TARGET_WANTS += \
2322         systemd-firstboot.service
2323 endif
2324
2325 # ------------------------------------------------------------------------------
2326 systemd_machine_id_setup_SOURCES = \
2327         src/machine-id-setup/machine-id-setup-main.c \
2328         src/core/machine-id-setup.c \
2329         src/core/machine-id-setup.h
2330
2331 systemd_machine_id_setup_LDADD = \
2332         libsystemd-label.la \
2333         libsystemd-internal.la \
2334         libsystemd-shared.la
2335
2336 # ------------------------------------------------------------------------------
2337 systemd_sysctl_SOURCES = \
2338         src/sysctl/sysctl.c
2339
2340 systemd_sysctl_LDADD = \
2341         libsystemd-shared.la
2342
2343 # ------------------------------------------------------------------------------
2344 systemd_sleep_SOURCES = \
2345         src/sleep/sleep.c
2346
2347 systemd_sleep_LDADD = \
2348         libsystemd-shared.la
2349
2350 # ------------------------------------------------------------------------------
2351 systemd_fsck_SOURCES = \
2352         src/fsck/fsck.c
2353
2354 systemd_fsck_LDADD = \
2355         libsystemd-internal.la \
2356         libudev-internal.la \
2357         libsystemd-shared.la
2358
2359 # ------------------------------------------------------------------------------
2360 systemd_machine_id_commit_SOURCES = \
2361         src/machine-id-commit/machine-id-commit.c \
2362         src/core/machine-id-setup.c \
2363         src/core/machine-id-setup.h
2364
2365 systemd_machine_id_commit_LDADD = \
2366         libsystemd-label.la \
2367         libsystemd-internal.la \
2368         libsystemd-shared.la
2369
2370 SYSINIT_TARGET_WANTS += \
2371         systemd-machine-id-commit.service
2372
2373 # ------------------------------------------------------------------------------
2374 systemd_ac_power_SOURCES = \
2375         src/ac-power/ac-power.c
2376
2377 systemd_ac_power_LDADD = \
2378         libudev-internal.la \
2379         libsystemd-shared.la
2380
2381 # ------------------------------------------------------------------------------
2382 systemd_detect_virt_SOURCES = \
2383         src/detect-virt/detect-virt.c
2384
2385 systemd_detect_virt_LDADD = \
2386         libsystemd-shared.la
2387
2388 INSTALL_EXEC_HOOKS += \
2389         systemd-detect-virt-install-hook
2390
2391 # ------------------------------------------------------------------------------
2392 systemd_delta_SOURCES = \
2393         src/delta/delta.c
2394
2395 systemd_delta_LDADD = \
2396         libsystemd-shared.la
2397
2398 # ------------------------------------------------------------------------------
2399 systemd_getty_generator_SOURCES = \
2400         src/getty-generator/getty-generator.c
2401
2402 systemd_getty_generator_LDADD = \
2403         libsystemd-label.la \
2404         libsystemd-shared.la
2405
2406 # ------------------------------------------------------------------------------
2407 systemd_debug_generator_SOURCES = \
2408         src/debug-generator/debug-generator.c
2409
2410 systemd_debug_generator_LDADD = \
2411         libsystemd-label.la \
2412         libsystemd-shared.la
2413
2414 # ------------------------------------------------------------------------------
2415 systemd_fstab_generator_SOURCES = \
2416         src/fstab-generator/fstab-generator.c \
2417         src/core/mount-setup.c
2418
2419 systemd_fstab_generator_LDADD = \
2420         libsystemd-label.la \
2421         libsystemd-shared.la
2422
2423 # ------------------------------------------------------------------------------
2424 systemd_system_update_generator_SOURCES = \
2425         src/system-update-generator/system-update-generator.c
2426
2427 systemd_system_update_generator_LDADD = \
2428         libsystemd-label.la \
2429         libsystemd-shared.la
2430
2431 # ------------------------------------------------------------------------------
2432 if ENABLE_HIBERNATE
2433 systemgenerator_PROGRAMS += \
2434         systemd-hibernate-resume-generator
2435
2436 rootlibexec_PROGRAMS += \
2437         systemd-hibernate-resume
2438
2439 systemd_hibernate_resume_SOURCES = \
2440         src/hibernate-resume/hibernate-resume.c
2441
2442 systemd_hibernate_resume_LDADD = \
2443         libsystemd-internal.la \
2444         libsystemd-shared.la
2445
2446 systemd_hibernate_resume_generator_SOURCES = \
2447         src/hibernate-resume/hibernate-resume-generator.c
2448
2449 systemd_hibernate_resume_generator_LDADD = \
2450         libsystemd-label.la \
2451         libsystemd-shared.la
2452
2453 EXTRA_DIST += \
2454         units/systemd-hibernate.service.in \
2455         units/systemd-hibernate-resume@.service.in \
2456         units/systemd-hybrid-sleep.service.in
2457
2458 dist_systemunit_DATA += \
2459         units/hibernate.target \
2460         units/hybrid-sleep.target
2461
2462 nodist_systemunit_DATA += \
2463         units/systemd-hibernate.service \
2464         units/systemd-hibernate-resume@.service \
2465         units/systemd-hybrid-sleep.service
2466 endif
2467
2468 # ------------------------------------------------------------------------------
2469 if ENABLE_EFI
2470 systemgenerator_PROGRAMS +=  \
2471         systemd-efi-boot-generator
2472
2473 systemd_efi_boot_generator_SOURCES = \
2474         src/efi-boot-generator/efi-boot-generator.c
2475
2476 systemd_efi_boot_generator_LDADD = \
2477         libsystemd-label.la \
2478         libsystemd-shared.la
2479
2480 # ------------------------------------------------------------------------------
2481 bootctl_SOURCES = \
2482         src/boot/bootctl.c
2483
2484 bootctl_CPPFLAGS = \
2485         $(AM_CPPFLAGS) \
2486         -DEFI_MACHINE_TYPE_NAME=\"$(EFI_MACHINE_TYPE_NAME)\" \
2487         -DSD_BOOTLIBDIR=\"$(sd_bootlibdir)\"
2488
2489 bootctl_CFLAGS = \
2490         $(AM_CFLAGS) \
2491         $(BLKID_CFLAGS)
2492
2493 bootctl_LDADD = \
2494         libsystemd-shared.la \
2495         libsystemd-internal.la \
2496         $(BLKID_LIBS)
2497
2498 bin_PROGRAMS += \
2499         bootctl
2500
2501 dist_bashcompletion_DATA += \
2502         shell-completion/bash/bootctl
2503
2504 dist_zshcompletion_DATA += \
2505         shell-completion/zsh/_bootctl
2506
2507 # ------------------------------------------------------------------------------
2508 efi_cppflags = \
2509         $(EFI_CPPFLAGS) \
2510         -I$(top_builddir) -include config.h \
2511         -I$(EFI_INC_DIR)/efi \
2512         -I$(EFI_INC_DIR)/efi/$(EFI_ARCH) \
2513         -DEFI_MACHINE_TYPE_NAME=\"$(EFI_MACHINE_TYPE_NAME)\"
2514
2515 efi_cflags = \
2516         $(EFI_CFLAGS) \
2517         -Wall \
2518         -Wextra \
2519         -nostdinc \
2520         -ggdb -O0 \
2521         -fpic \
2522         -fshort-wchar \
2523         -nostdinc \
2524         -ffreestanding \
2525         -fno-strict-aliasing \
2526         -fno-stack-protector \
2527         -Wsign-compare \
2528         -mno-sse \
2529         -mno-mmx
2530
2531 if ARCH_X86_64
2532 efi_cflags += \
2533         -mno-red-zone \
2534         -DEFI_FUNCTION_WRAPPER \
2535         -DGNU_EFI_USE_MS_ABI
2536 endif
2537
2538 efi_ldflags = \
2539         $(EFI_LDFLAGS) \
2540         -T $(EFI_LDS_DIR)/elf_$(EFI_ARCH)_efi.lds \
2541         -shared \
2542         -Bsymbolic \
2543         -nostdlib \
2544         -znocombreloc \
2545         -L $(EFI_LIB_DIR) \
2546         $(EFI_LDS_DIR)/crt0-efi-$(EFI_ARCH).o
2547
2548 # ------------------------------------------------------------------------------
2549 sd_boot_headers = \
2550         src/sd-boot/util.h \
2551         src/sd-boot/console.h \
2552         src/sd-boot/graphics.h \
2553         src/sd-boot/pefile.h
2554
2555 sd_boot_sources = \
2556         src/sd-boot/util.c \
2557         src/sd-boot/console.c \
2558         src/sd-boot/graphics.c \
2559         src/sd-boot/pefile.c \
2560         src/sd-boot/sd-boot.c
2561
2562 sd_boot_objects = $(addprefix $(top_builddir)/,$(sd_boot_sources:.c=.o))
2563 sd_boot_solib = $(top_builddir)/src/sd-boot/sd_boot.so
2564 sd_boot = sd-boot$(EFI_MACHINE_TYPE_NAME).efi
2565
2566 sd_bootlib_DATA = $(sd_boot)
2567 CLEANFILES += $(sd_boot_objects) $(sd_boot_solib) $(sd_boot)
2568 EXTRA_DIST += $(sd_boot_sources) $(sd_boot_headers)
2569
2570 $(top_builddir)/src/sd-boot/%.o: $(top_srcdir)/src/sd-boot/%.c $(addprefix $(top_srcdir)/,$(sd_boot_headers))
2571         @$(MKDIR_P) $(top_builddir)/src/sd-boot/
2572         $(AM_V_CC)$(EFI_CC) $(efi_cppflags) $(efi_cflags) -c $< -o $@
2573
2574 $(sd_boot_solib): $(sd_boot_objects)
2575         $(AM_V_CCLD)$(LD) $(efi_ldflags) $(sd_boot_objects) \
2576                 -o $@ -lefi -lgnuefi $(shell $(CC) -print-libgcc-file-name); \
2577         nm -D -u $@ | grep ' U ' && exit 1 || :
2578
2579 $(sd_boot): $(sd_boot_solib)
2580         $(AM_V_GEN) objcopy -j .text -j .sdata -j .data -j .dynamic \
2581           -j .dynsym -j .rel -j .rela -j .reloc \
2582           --target=efi-app-$(EFI_ARCH) $< $@
2583
2584 # ------------------------------------------------------------------------------
2585 stub_headers = \
2586         src/sd-boot/util.h \
2587         src/sd-boot/pefile.h \
2588         src/sd-boot/linux.h
2589
2590 stub_sources = \
2591         src/sd-boot/util.c \
2592         src/sd-boot/pefile.c \
2593         src/sd-boot/linux.c \
2594         src/sd-boot/stub.c
2595
2596 stub_objects = $(addprefix $(top_builddir)/,$(stub_sources:.c=.o))
2597 stub_solib = $(top_builddir)/src/sd-boot/stub.so
2598 stub = linux$(EFI_MACHINE_TYPE_NAME).efi.stub
2599
2600 sd_bootlib_DATA += $(stub)
2601 CLEANFILES += $(stub_objects) $(stub_solib) $(stub)
2602 EXTRA_DIST += $(stub_sources) $(stub_headers)
2603
2604 $(top_builddir)/src/sd-boot/%.o: $(top_srcdir)/src/sd-boot/%.c $(addprefix $(top_srcdir)/,$(stub_headers))
2605         @$(MKDIR_P) $(top_builddir)/src/sd-boot/
2606         $(AM_V_CC)$(EFI_CC) $(efi_cppflags) $(efi_cflags) -c $< -o $@
2607
2608 $(stub_solib): $(stub_objects)
2609         $(AM_V_CCLD)$(LD) $(efi_ldflags) $(stub_objects) \
2610                 -o $@ -lefi -lgnuefi $(shell $(CC) -print-libgcc-file-name); \
2611         nm -D -u $@ | grep ' U ' && exit 1 || :
2612
2613 $(stub): $(stub_solib)
2614         $(AM_V_GEN) objcopy -j .text -j .sdata -j .data -j .dynamic \
2615           -j .dynsym -j .rel -j .rela -j .reloc \
2616           --target=efi-app-$(EFI_ARCH) $< $@
2617
2618 # ------------------------------------------------------------------------------
2619 CLEANFILES += test-efi-disk.img
2620 EXTRA_DIST += test/test-efi-create-disk.sh
2621
2622 test-efi-disk.img: $(sd_boot) $(stub) test/test-efi-create-disk.sh
2623         $(AM_V_GEN)test/test-efi-create-disk.sh
2624
2625 test-efi: test-efi-disk.img
2626         $(QEMU) -machine accel=kvm -m 1024 -bios $(QEMU_BIOS) -snapshot test-efi-disk.img
2627 endif
2628
2629 # ------------------------------------------------------------------------------
2630 if HAVE_BLKID
2631 systemgenerator_PROGRAMS +=  \
2632         systemd-gpt-auto-generator
2633
2634 systemd_gpt_auto_generator_SOURCES = \
2635         src/gpt-auto-generator/gpt-auto-generator.c \
2636         src/shared/blkid-util.h
2637
2638 systemd_gpt_auto_generator_LDADD = \
2639         libsystemd-label.la \
2640         libsystemd-internal.la \
2641         libudev-internal.la \
2642         libsystemd-shared.la \
2643         $(BLKID_LIBS)
2644
2645 systemd_gpt_auto_generator_CFLAGS = \
2646         $(AM_CFLAGS) \
2647         $(BLKID_CFLAGS)
2648 endif
2649
2650 # ------------------------------------------------------------------------------
2651 if ENABLE_KDBUS
2652 systemgenerator_PROGRAMS +=  \
2653         systemd-dbus1-generator
2654
2655 systemd_dbus1_generator_SOURCES = \
2656         src/dbus1-generator/dbus1-generator.c
2657
2658 systemd_dbus1_generator_LDADD = \
2659         libsystemd-label.la \
2660         libsystemd-internal.la \
2661         libsystemd-shared.la
2662
2663 dbus1-generator-install-hook:
2664         $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(usergeneratordir)
2665         $(AM_V_RM)rm -f $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2666         $(AM_V_LN)$(LN_S) --relative -f $(DESTDIR)$(systemgeneratordir)/systemd-dbus1-generator $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2667
2668 dbus1-generator-uninstall-hook:
2669         rm -f $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2670
2671 dist_xinitrc_SCRIPTS = \
2672         xorg/50-systemd-user.sh
2673
2674 INSTALL_EXEC_HOOKS += dbus1-generator-install-hook
2675 UNINSTALL_EXEC_HOOKS += dbus1-generator-uninstall-hook
2676 endif
2677
2678 # ------------------------------------------------------------------------------
2679 systemd_sysv_generator_SOURCES = \
2680         src/sysv-generator/sysv-generator.c
2681
2682 systemd_sysv_generator_LDADD = \
2683         libsystemd-core.la \
2684         libsystemd-label.la \
2685         libsystemd-shared.la
2686
2687 # ------------------------------------------------------------------------------
2688 systemd_rc_local_generator_SOURCES = \
2689         src/rc-local-generator/rc-local-generator.c
2690
2691 systemd_rc_local_generator_LDADD = \
2692         libsystemd-label.la \
2693         libsystemd-shared.la
2694
2695 # ------------------------------------------------------------------------------
2696 systemd_remount_fs_SOURCES = \
2697         src/remount-fs/remount-fs.c \
2698         src/core/mount-setup.c \
2699         src/core/mount-setup.h
2700
2701 systemd_remount_fs_LDADD = \
2702         libsystemd-label.la \
2703         libsystemd-shared.la
2704
2705 # ------------------------------------------------------------------------------
2706 systemd_cgroups_agent_SOURCES = \
2707         src/cgroups-agent/cgroups-agent.c
2708
2709 systemd_cgroups_agent_LDADD = \
2710         libsystemd-internal.la \
2711         libsystemd-shared.la
2712
2713 # ------------------------------------------------------------------------------
2714 systemd_escape_SOURCES = \
2715         src/escape/escape.c
2716
2717 systemd_escape_LDADD = \
2718         libsystemd-shared.la
2719
2720 # -----------------------------------------------------------------------------
2721 systemctl_SOURCES = \
2722         src/systemctl/systemctl.c
2723
2724 systemctl_LDADD = \
2725         libsystemd-units.la \
2726         libsystemd-label.la \
2727         libsystemd-internal.la \
2728         libsystemd-logs.la \
2729         libsystemd-journal-internal.la \
2730         libsystemd-shared.la
2731
2732 # ------------------------------------------------------------------------------
2733 systemd_notify_SOURCES = \
2734         src/notify/notify.c
2735
2736 systemd_notify_LDADD = \
2737         libsystemd-internal.la \
2738         libsystemd-shared.la
2739
2740 # ------------------------------------------------------------------------------
2741 systemd_path_SOURCES = \
2742         src/path/path.c
2743
2744 systemd_path_LDADD = \
2745         libsystemd-internal.la \
2746         libsystemd-shared.la
2747
2748 # ------------------------------------------------------------------------------
2749 systemd_ask_password_SOURCES = \
2750         src/ask-password/ask-password.c
2751
2752 systemd_ask_password_LDADD = \
2753         libsystemd-label.la \
2754         libsystemd-shared.la
2755
2756 # ------------------------------------------------------------------------------
2757 systemd_reply_password_SOURCES = \
2758         src/reply-password/reply-password.c
2759
2760 systemd_reply_password_LDADD = \
2761         libsystemd-shared.la
2762
2763 # ------------------------------------------------------------------------------
2764 systemd_cgls_SOURCES = \
2765         src/cgls/cgls.c
2766
2767 systemd_cgls_LDADD = \
2768         libsystemd-internal.la \
2769         libsystemd-shared.la
2770
2771 # ------------------------------------------------------------------------------
2772 systemd_cgtop_SOURCES = \
2773         src/cgtop/cgtop.c
2774
2775 systemd_cgtop_LDADD = \
2776         libsystemd-shared.la
2777
2778 # ------------------------------------------------------------------------------
2779 systemd_nspawn_SOURCES = \
2780         src/nspawn/nspawn.c \
2781         src/core/mount-setup.c \
2782         src/core/mount-setup.h \
2783         src/core/loopback-setup.c \
2784         src/core/loopback-setup.h
2785
2786 systemd_nspawn_CFLAGS = \
2787         $(AM_CFLAGS) \
2788         $(SECCOMP_CFLAGS) \
2789         $(BLKID_CFLAGS)
2790
2791 systemd_nspawn_LDADD = \
2792         libsystemd-label.la \
2793         libsystemd-internal.la \
2794         libudev-internal.la \
2795         libsystemd-shared.la \
2796         $(BLKID_LIBS)
2797
2798 if HAVE_SECCOMP
2799 systemd_nspawn_LDADD += \
2800         libsystemd-seccomp.la \
2801         $(SECCOMP_LIBS)
2802 endif
2803
2804 if HAVE_LIBIPTC
2805 systemd_nspawn_LDADD += \
2806         libsystemd-fw.la
2807 endif
2808
2809 # ------------------------------------------------------------------------------
2810 systemd_run_SOURCES = \
2811         src/run/run.c
2812
2813 systemd_run_LDADD = \
2814         libsystemd-label.la \
2815         libsystemd-internal.la \
2816         libsystemd-shared.la
2817
2818 # ------------------------------------------------------------------------------
2819 noinst_LTLIBRARIES += \
2820         libsystemd-proxy.la
2821
2822 libsystemd_proxy_la_SOURCES = \
2823         src/bus-proxyd/bus-xml-policy.c \
2824         src/bus-proxyd/bus-xml-policy.h \
2825         src/bus-proxyd/driver.c \
2826         src/bus-proxyd/driver.h \
2827         src/bus-proxyd/proxy.c \
2828         src/bus-proxyd/proxy.h \
2829         src/bus-proxyd/synthesize.c \
2830         src/bus-proxyd/synthesize.h
2831
2832 libsystemd_proxy_la_CFLAGS = \
2833         $(AM_CFLAGS) \
2834         -pthread
2835
2836 libsystemd_proxy_la_LIBADD = \
2837         libsystemd-internal.la \
2838         libsystemd-shared.la
2839
2840 systemd_bus_proxyd_SOURCES = \
2841         src/bus-proxyd/bus-proxyd.c
2842
2843 systemd_bus_proxyd_CFLAGS = \
2844         $(AM_CFLAGS) \
2845         -pthread
2846
2847 systemd_bus_proxyd_LDADD = \
2848         libsystemd-proxy.la \
2849         libsystemd-internal.la \
2850         libsystemd-shared.la
2851
2852 systemd_stdio_bridge_SOURCES = \
2853         src/bus-proxyd/stdio-bridge.c
2854
2855 systemd_stdio_bridge_LDADD = \
2856         libsystemd-proxy.la \
2857         libsystemd-internal.la \
2858         libsystemd-shared.la
2859
2860 if ENABLE_KDBUS
2861 nodist_systemunit_DATA += \
2862         units/systemd-bus-proxyd.service
2863
2864 dist_systemunit_DATA += \
2865         units/systemd-bus-proxyd.socket
2866
2867 nodist_userunit_DATA += \
2868         units/user/systemd-bus-proxyd.service
2869
2870 dist_userunit_DATA += \
2871         units/user/systemd-bus-proxyd.socket
2872 endif
2873
2874 EXTRA_DIST += \
2875         units/systemd-bus-proxyd.service.m4.in \
2876         units/user/systemd-bus-proxyd.service.in
2877
2878 CLEANFILES += \
2879         units/systemd-bus-proxyd.service.m4
2880
2881 if HAVE_SMACK
2882 bus-proxyd-set-cap-hook:
2883         -$(SETCAP) cap_mac_admin+ei $(DESTDIR)$(rootlibexecdir)/systemd-bus-proxyd
2884
2885 INSTALL_EXEC_HOOKS += bus-proxyd-set-cap-hook
2886 endif
2887
2888 # ------------------------------------------------------------------------------
2889 systemd_tty_ask_password_agent_SOURCES = \
2890         src/tty-ask-password-agent/tty-ask-password-agent.c
2891
2892 systemd_tty_ask_password_agent_LDADD = \
2893         libsystemd-label.la \
2894         libsystemd-shared.la
2895
2896 # ------------------------------------------------------------------------------
2897 libsystemd_internal_la_SOURCES = \
2898         src/systemd/sd-bus.h \
2899         src/systemd/sd-bus-protocol.h \
2900         src/systemd/sd-bus-vtable.h \
2901         src/systemd/sd-utf8.h \
2902         src/systemd/sd-event.h \
2903         src/systemd/sd-rtnl.h \
2904         src/systemd/sd-resolve.h \
2905         src/systemd/sd-login.h \
2906         src/systemd/sd-id128.h \
2907         src/systemd/sd-daemon.h \
2908         src/systemd/sd-path.h \
2909         src/systemd/sd-network.h \
2910         src/systemd/sd-hwdb.h \
2911         src/libsystemd/sd-bus/sd-bus.c \
2912         src/libsystemd/sd-bus/bus-control.c \
2913         src/libsystemd/sd-bus/bus-control.h \
2914         src/libsystemd/sd-bus/bus-error.c \
2915         src/libsystemd/sd-bus/bus-error.h \
2916         src/libsystemd/sd-bus/bus-common-errors.h \
2917         src/libsystemd/sd-bus/bus-common-errors.c \
2918         src/libsystemd/sd-bus/bus-internal.c \
2919         src/libsystemd/sd-bus/bus-internal.h \
2920         src/libsystemd/sd-bus/bus-socket.c \
2921         src/libsystemd/sd-bus/bus-socket.h \
2922         src/libsystemd/sd-bus/bus-kernel.c \
2923         src/libsystemd/sd-bus/bus-kernel.h \
2924         src/libsystemd/sd-bus/bus-container.c \
2925         src/libsystemd/sd-bus/bus-container.h \
2926         src/libsystemd/sd-bus/bus-message.c \
2927         src/libsystemd/sd-bus/bus-message.h \
2928         src/libsystemd/sd-bus/bus-creds.c \
2929         src/libsystemd/sd-bus/bus-creds.h \
2930         src/libsystemd/sd-bus/bus-signature.c \
2931         src/libsystemd/sd-bus/bus-signature.h \
2932         src/libsystemd/sd-bus/bus-type.c \
2933         src/libsystemd/sd-bus/bus-type.h \
2934         src/libsystemd/sd-bus/bus-match.c \
2935         src/libsystemd/sd-bus/bus-match.h \
2936         src/libsystemd/sd-bus/bus-bloom.c \
2937         src/libsystemd/sd-bus/bus-bloom.h \
2938         src/libsystemd/sd-bus/bus-introspect.c \
2939         src/libsystemd/sd-bus/bus-introspect.h \
2940         src/libsystemd/sd-bus/bus-objects.c \
2941         src/libsystemd/sd-bus/bus-objects.h \
2942         src/libsystemd/sd-bus/bus-gvariant.c \
2943         src/libsystemd/sd-bus/bus-gvariant.h \
2944         src/libsystemd/sd-bus/bus-convenience.c \
2945         src/libsystemd/sd-bus/bus-track.c \
2946         src/libsystemd/sd-bus/bus-track.h \
2947         src/libsystemd/sd-bus/bus-util.c \
2948         src/libsystemd/sd-bus/bus-util.h \
2949         src/libsystemd/sd-bus/bus-slot.c \
2950         src/libsystemd/sd-bus/bus-slot.h \
2951         src/libsystemd/sd-bus/bus-protocol.h \
2952         src/libsystemd/sd-bus/kdbus.h \
2953         src/libsystemd/sd-utf8/sd-utf8.c \
2954         src/libsystemd/sd-event/sd-event.c \
2955         src/libsystemd/sd-event/event-util.h \
2956         src/libsystemd/sd-rtnl/sd-rtnl.c \
2957         src/libsystemd/sd-rtnl/rtnl-internal.h \
2958         src/libsystemd/sd-rtnl/rtnl-message.c \
2959         src/libsystemd/sd-rtnl/rtnl-types.h \
2960         src/libsystemd/sd-rtnl/rtnl-types.c \
2961         src/libsystemd/sd-rtnl/rtnl-util.h \
2962         src/libsystemd/sd-rtnl/rtnl-util.c \
2963         src/libsystemd/sd-rtnl/local-addresses.h \
2964         src/libsystemd/sd-rtnl/local-addresses.c \
2965         src/libsystemd/sd-id128/sd-id128.c \
2966         src/libsystemd/sd-daemon/sd-daemon.c \
2967         src/libsystemd/sd-login/sd-login.c \
2968         src/libsystemd/sd-path/sd-path.c \
2969         src/libsystemd/sd-network/sd-network.c \
2970         src/libsystemd/sd-network/network-util.h \
2971         src/libsystemd/sd-network/network-util.c \
2972         src/libsystemd/sd-hwdb/sd-hwdb.c \
2973         src/libsystemd/sd-hwdb/hwdb-util.h \
2974         src/libsystemd/sd-hwdb/hwdb-internal.h
2975
2976 nodist_libsystemd_internal_la_SOURCES = \
2977         src/libsystemd/libsystemd.sym
2978
2979 libsystemd_internal_la_CFLAGS = \
2980         $(AM_CFLAGS) \
2981         -pthread
2982
2983 libsystemd_internal_la_LIBADD = \
2984         $(RT_LIBS)
2985
2986 libsystemd_resolve_la_SOURCES = \
2987         src/libsystemd/sd-resolve/sd-resolve.c \
2988         src/libsystemd/sd-resolve/resolve-util.h
2989
2990 libsystemd_resolve_la_CFLAGS = \
2991         $(AM_CFLAGS) \
2992         -pthread
2993
2994 libsystemd_resolve_la_LIBADD = \
2995         -lresolv
2996
2997 noinst_LTLIBRARIES += \
2998         libsystemd-internal.la \
2999         libsystemd-resolve.la
3000
3001 libsystemd_dump_la_SOURCES = \
3002         src/libsystemd/sd-bus/bus-dump.c \
3003         src/libsystemd/sd-bus/bus-dump.h
3004
3005 noinst_LTLIBRARIES += \
3006         libsystemd-dump.la
3007
3008 EXTRA_DIST += \
3009         src/libsystemd/libsystemd.sym.m4 \
3010         src/libsystemd/libsystemd.pc.in \
3011         src/libsystemd/sd-bus/DIFFERENCES \
3012         src/libsystemd/sd-bus/GVARIANT-SERIALIZATION
3013
3014 CLEANFILES += \
3015         src/libsystemd/libsystemd.sym
3016
3017 BUILT_SOURCES += \
3018         src/libsystemd/libsystemd.sym
3019
3020 libsystemd_la_SOURCES = \
3021         $(libsystemd_internal_la_SOURCES) \
3022         $(libsystemd_resolve_la_SOURCES) \
3023         $(libsystemd_journal_internal_la_SOURCES)
3024
3025 nodist_libsystemd_la_SOURCES = \
3026         $(nodist_libsystemd_internal_la_SOURCES)
3027
3028 libsystemd_la_CFLAGS = \
3029         $(libsystemd_internal_la_CFLAGS) \
3030         $(libsystemd_resolve_la_CFLAGS) \
3031         $(libsystemd_journal_internal_la_CFLAGS)
3032
3033 libsystemd_la_LDFLAGS = \
3034         $(AM_LDFLAGS) \
3035         -version-info $(LIBSYSTEMD_CURRENT):$(LIBSYSTEMD_REVISION):$(LIBSYSTEMD_AGE) \
3036         -Wl,--version-script=$(top_builddir)/src/libsystemd/libsystemd.sym
3037
3038 libsystemd_la_LIBADD = \
3039         libsystemd-shared.la \
3040         $(libsystemd_internal_la_LIBADD) \
3041         $(libsystemd_journal_internal_la_LIBADD) \
3042         $(libsystemd_resolve_la_LIBADD)
3043
3044 libsystemd-install-hook:
3045         libname=libsystemd.so && $(move-to-rootlibdir)
3046
3047 libsystemd-uninstall-hook:
3048         rm -f $(DESTDIR)$(rootlibdir)/libsystemd.so*
3049
3050 INSTALL_EXEC_HOOKS += libsystemd-install-hook
3051 UNINSTALL_EXEC_HOOKS += libsystemd-uninstall-hook
3052
3053 pkgconfiglib_DATA += \
3054         src/libsystemd/libsystemd.pc
3055
3056 pkginclude_HEADERS += \
3057         src/systemd/sd-login.h \
3058         src/systemd/sd-id128.h \
3059         src/systemd/sd-daemon.h
3060
3061 if ENABLE_KDBUS
3062 pkginclude_HEADERS += \
3063         src/systemd/sd-bus.h \
3064         src/systemd/sd-bus-protocol.h \
3065         src/systemd/sd-bus-vtable.h \
3066         src/systemd/sd-utf8.h \
3067         src/systemd/sd-event.h \
3068         src/systemd/sd-rtnl.h \
3069         src/systemd/sd-resolve.h \
3070         src/systemd/sd-path.h
3071 endif
3072
3073 lib_LTLIBRARIES += \
3074         libsystemd.la
3075
3076 tests += \
3077         test-bus-marshal \
3078         test-bus-signature \
3079         test-bus-chat \
3080         test-bus-cleanup \
3081         test-bus-server \
3082         test-bus-match \
3083         test-bus-kernel \
3084         test-bus-kernel-bloom \
3085         test-bus-kernel-benchmark \
3086         test-bus-zero-copy \
3087         test-bus-introspect \
3088         test-bus-objects \
3089         test-bus-error \
3090         test-bus-creds \
3091         test-bus-gvariant \
3092         test-event \
3093         test-rtnl \
3094         test-local-addresses \
3095         test-resolve
3096
3097 bin_PROGRAMS += \
3098         busctl
3099
3100 test_bus_marshal_SOURCES = \
3101         src/libsystemd/sd-bus/test-bus-marshal.c
3102
3103 test_bus_marshal_LDADD = \
3104         libsystemd-dump.la \
3105         libsystemd-internal.la \
3106         libsystemd-shared.la \
3107         $(GLIB_LIBS) \
3108         $(DBUS_LIBS)
3109
3110 test_bus_marshal_CFLAGS = \
3111         $(AM_CFLAGS) \
3112         $(GLIB_CFLAGS) \
3113         $(DBUS_CFLAGS)
3114
3115 test_bus_signature_SOURCES = \
3116         src/libsystemd/sd-bus/test-bus-signature.c
3117
3118 test_bus_signature_LDADD = \
3119         libsystemd-internal.la \
3120         libsystemd-shared.la
3121
3122 test_bus_chat_SOURCES = \
3123         src/libsystemd/sd-bus/test-bus-chat.c
3124
3125 test_bus_chat_CFLAGS = \
3126         $(AM_CFLAGS) \
3127         -pthread
3128
3129 test_bus_chat_LDADD = \
3130         libsystemd-internal.la \
3131         libsystemd-shared.la
3132
3133 test_bus_cleanup_SOURCES = \
3134         src/libsystemd/sd-bus/test-bus-cleanup.c
3135
3136 test_bus_cleanup_CFLAGS = \
3137         $(AM_CFLAGS) \
3138         $(SECCOMP_CFLAGS)
3139
3140 test_bus_cleanup_LDADD = \
3141         libsystemd-internal.la \
3142         libsystemd-shared.la
3143
3144 test_bus_server_SOURCES = \
3145         src/libsystemd/sd-bus/test-bus-server.c
3146
3147 test_bus_server_CFLAGS = \
3148         $(AM_CFLAGS) \
3149         -pthread
3150
3151 test_bus_server_LDADD = \
3152         libsystemd-internal.la \
3153         libsystemd-shared.la
3154
3155 test_bus_objects_SOURCES = \
3156         src/libsystemd/sd-bus/test-bus-objects.c
3157
3158 test_bus_objects_CFLAGS = \
3159         $(AM_CFLAGS) \
3160         -pthread
3161
3162 test_bus_objects_LDADD = \
3163         libsystemd-dump.la \
3164         libsystemd-internal.la \
3165         libsystemd-shared.la
3166
3167 test_bus_error_SOURCES = \
3168         src/libsystemd/sd-bus/test-bus-error.c
3169
3170 test_bus_error_LDADD = \
3171         libsystemd-internal.la \
3172         libsystemd-shared.la
3173
3174 test_bus_gvariant_SOURCES = \
3175         src/libsystemd/sd-bus/test-bus-gvariant.c
3176
3177 test_bus_gvariant_LDADD = \
3178         libsystemd-dump.la \
3179         libsystemd-internal.la \
3180         libsystemd-shared.la \
3181         $(GLIB_LIBS)
3182
3183 test_bus_gvariant_CFLAGS = \
3184         $(AM_CFLAGS) \
3185         $(GLIB_CFLAGS)
3186
3187 test_bus_creds_SOURCES = \
3188         src/libsystemd/sd-bus/test-bus-creds.c
3189
3190 test_bus_creds_LDADD = \
3191         libsystemd-dump.la \
3192         libsystemd-internal.la \
3193         libsystemd-shared.la
3194
3195 test_bus_match_SOURCES = \
3196         src/libsystemd/sd-bus/test-bus-match.c
3197
3198 test_bus_match_LDADD = \
3199         libsystemd-internal.la \
3200         libsystemd-shared.la
3201
3202 test_bus_kernel_SOURCES = \
3203         src/libsystemd/sd-bus/test-bus-kernel.c
3204
3205 test_bus_kernel_LDADD = \
3206         libsystemd-dump.la \
3207         libsystemd-internal.la \
3208         libsystemd-shared.la
3209
3210 test_bus_kernel_bloom_SOURCES = \
3211         src/libsystemd/sd-bus/test-bus-kernel-bloom.c
3212
3213 test_bus_kernel_bloom_LDADD = \
3214         libsystemd-internal.la \
3215         libsystemd-shared.la
3216
3217 test_bus_kernel_benchmark_SOURCES = \
3218         src/libsystemd/sd-bus/test-bus-kernel-benchmark.c
3219
3220 test_bus_kernel_benchmark_LDADD = \
3221         libsystemd-internal.la \
3222         libsystemd-shared.la
3223
3224 test_bus_zero_copy_SOURCES = \
3225         src/libsystemd/sd-bus/test-bus-zero-copy.c
3226
3227 test_bus_zero_copy_LDADD = \
3228         libsystemd-dump.la \
3229         libsystemd-internal.la \
3230         libsystemd-shared.la
3231
3232 test_bus_introspect_SOURCES = \
3233         src/libsystemd/sd-bus/test-bus-introspect.c
3234
3235 test_bus_introspect_LDADD = \
3236         libsystemd-internal.la \
3237         libsystemd-shared.la
3238
3239 test_event_SOURCES = \
3240         src/libsystemd/sd-event/test-event.c
3241
3242 test_event_LDADD = \
3243         libsystemd-internal.la \
3244         libsystemd-shared.la
3245
3246 test_rtnl_SOURCES = \
3247         src/libsystemd/sd-rtnl/test-rtnl.c
3248
3249 test_rtnl_LDADD = \
3250         libsystemd-internal.la \
3251         libsystemd-shared.la
3252
3253 test_local_addresses_SOURCES = \
3254         src/libsystemd/sd-rtnl/test-local-addresses.c
3255
3256 test_local_addresses_LDADD = \
3257         libsystemd-internal.la \
3258         libsystemd-shared.la
3259
3260 test_resolve_SOURCES = \
3261         src/libsystemd/sd-resolve/test-resolve.c
3262
3263 test_resolve_LDADD = \
3264         libsystemd-resolve.la \
3265         libsystemd-internal.la \
3266         libsystemd-shared.la
3267
3268 test_resolve_CFLAGS = \
3269         $(AM_CFLAGS) \
3270         -pthread
3271
3272 busctl_SOURCES = \
3273         src/libsystemd/sd-bus/busctl.c \
3274         src/libsystemd/sd-bus/busctl-introspect.c \
3275         src/libsystemd/sd-bus/busctl-introspect.h
3276
3277 busctl_LDADD = \
3278         libsystemd-dump.la \
3279         libsystemd-internal.la \
3280         libsystemd-shared.la
3281
3282 # ------------------------------------------------------------------------------
3283 noinst_LTLIBRARIES += \
3284         libsystemd-network.la
3285
3286 libsystemd_network_la_CFLAGS = \
3287         $(AM_CFLAGS) \
3288         $(KMOD_CFLAGS)
3289
3290 libsystemd_network_la_SOURCES = \
3291         src/systemd/sd-dhcp-client.h \
3292         src/systemd/sd-dhcp-server.h \
3293         src/systemd/sd-dhcp-lease.h \
3294         src/systemd/sd-ipv4ll.h \
3295         src/systemd/sd-icmp6-nd.h \
3296         src/systemd/sd-dhcp6-client.h \
3297         src/systemd/sd-dhcp6-lease.h \
3298         src/systemd/sd-pppoe.h \
3299         src/systemd/sd-lldp.h \
3300         src/libsystemd-network/sd-dhcp-client.c \
3301         src/libsystemd-network/sd-dhcp-server.c \
3302         src/libsystemd-network/dhcp-network.c \
3303         src/libsystemd-network/dhcp-option.c \
3304         src/libsystemd-network/dhcp-packet.c \
3305         src/libsystemd-network/dhcp-internal.h \
3306         src/libsystemd-network/dhcp-server-internal.h \
3307         src/libsystemd-network/dhcp-protocol.h \
3308         src/libsystemd-network/dhcp-lease-internal.h \
3309         src/libsystemd-network/sd-dhcp-lease.c \
3310         src/libsystemd-network/sd-ipv4ll.c \
3311         src/libsystemd-network/ipv4ll-network.c \
3312         src/libsystemd-network/ipv4ll-packet.c \
3313         src/libsystemd-network/ipv4ll-internal.h \
3314         src/libsystemd-network/sd-pppoe.c \
3315         src/libsystemd-network/network-internal.c \
3316         src/libsystemd-network/network-internal.h \
3317         src/libsystemd-network/sd-icmp6-nd.c \
3318         src/libsystemd-network/sd-dhcp6-client.c \
3319         src/libsystemd-network/dhcp6-internal.h \
3320         src/libsystemd-network/dhcp6-protocol.h \
3321         src/libsystemd-network/dhcp6-network.c \
3322         src/libsystemd-network/dhcp6-option.c \
3323         src/libsystemd-network/dhcp6-lease-internal.h \
3324         src/libsystemd-network/sd-dhcp6-lease.c \
3325         src/libsystemd-network/dhcp-identifier.h \
3326         src/libsystemd-network/dhcp-identifier.c \
3327         src/libsystemd-network/lldp.h \
3328         src/libsystemd-network/lldp-tlv.h \
3329         src/libsystemd-network/lldp-tlv.c \
3330         src/libsystemd-network/lldp-network.h \
3331         src/libsystemd-network/lldp-network.c \
3332         src/libsystemd-network/lldp-port.h \
3333         src/libsystemd-network/lldp-port.c \
3334         src/libsystemd-network/lldp-internal.h \
3335         src/libsystemd-network/lldp-internal.c \
3336         src/libsystemd-network/lldp-util.h \
3337         src/libsystemd-network/sd-lldp.c
3338
3339 libsystemd_network_la_LIBADD = \
3340         libudev-internal.la \
3341         libsystemd-label.la \
3342         libsystemd-internal.la \
3343         libsystemd-shared.la \
3344         $(KMOD_LIBS)
3345
3346 test_dhcp_option_SOURCES = \
3347         src/libsystemd-network/dhcp-protocol.h \
3348         src/libsystemd-network/dhcp-internal.h \
3349         src/libsystemd-network/test-dhcp-option.c
3350
3351 test_dhcp_option_LDADD = \
3352         libsystemd-network.la \
3353         libsystemd-internal.la \
3354         libsystemd-shared.la
3355
3356 test_dhcp_client_SOURCES = \
3357         src/systemd/sd-dhcp-client.h \
3358         src/libsystemd-network/dhcp-protocol.h \
3359         src/libsystemd-network/dhcp-internal.h \
3360         src/libsystemd-network/test-dhcp-client.c
3361
3362 test_dhcp_client_LDADD = \
3363         libsystemd-network.la \
3364         libsystemd-label.la \
3365         libsystemd-internal.la \
3366         libsystemd-shared.la
3367
3368 test_dhcp_server_SOURCES = \
3369         src/libsystemd-network/test-dhcp-server.c
3370
3371 test_dhcp_server_LDADD = \
3372         libsystemd-network.la \
3373         libsystemd-internal.la \
3374         libsystemd-shared.la
3375
3376 test_ipv4ll_SOURCES = \
3377         src/systemd/sd-ipv4ll.h \
3378         src/libsystemd-network/ipv4ll-internal.h \
3379         src/libsystemd-network/test-ipv4ll.c
3380
3381 test_ipv4ll_LDADD = \
3382         libsystemd-network.la \
3383         libsystemd-label.la \
3384         libsystemd-internal.la \
3385         libsystemd-shared.la
3386
3387 test_pppoe_SOURCES = \
3388         src/systemd/sd-pppoe.h \
3389         src/libsystemd-network/test-pppoe.c
3390
3391 test_pppoe_LDADD = \
3392         libsystemd-network.la \
3393         libsystemd-shared.la
3394
3395 test_icmp6_rs_SOURCES = \
3396         src/systemd/sd-dhcp6-client.h \
3397         src/systemd/sd-icmp6-nd.h \
3398         src/libsystemd-network/dhcp6-internal.h \
3399         src/libsystemd-network/test-icmp6-rs.c \
3400         src/libsystemd-network/dhcp-identifier.h \
3401         src/libsystemd-network/dhcp-identifier.c
3402
3403 test_icmp6_rs_LDADD = \
3404         libsystemd-network.la \
3405         libsystemd-internal.la \
3406         libsystemd-shared.la
3407
3408 test_dhcp6_client_SOURCES = \
3409         src/systemd/sd-dhcp6-client.h \
3410         src/libsystemd-network/dhcp6-internal.h \
3411         src/libsystemd-network/test-dhcp6-client.c \
3412         src/libsystemd-network/dhcp-identifier.h \
3413         src/libsystemd-network/dhcp-identifier.c
3414
3415 test_dhcp6_client_LDADD = \
3416         libsystemd-network.la \
3417         libsystemd-internal.la \
3418         libsystemd-shared.la
3419
3420 test_lldp_SOURCES = \
3421        src/libsystemd-network/lldp.h \
3422        src/libsystemd-network/lldp-tlv.h \
3423        src/libsystemd-network/lldp-tlv.c \
3424        src/libsystemd-network/test-lldp.c
3425
3426 test_lldp_LDADD = \
3427         libsystemd-network.la \
3428         libsystemd-internal.la \
3429         libsystemd-shared.la
3430
3431 tests += \
3432         test-dhcp-option \
3433         test-dhcp-client \
3434         test-dhcp-server \
3435         test-ipv4ll \
3436         test-icmp6-rs \
3437         test-dhcp6-client \
3438         test-lldp
3439
3440 manual_tests += \
3441         test-pppoe
3442
3443 # ------------------------------------------------------------------------------
3444 if ENABLE_TERMINAL
3445 noinst_LTLIBRARIES += \
3446         libsystemd-terminal.la
3447
3448 rootlibexec_PROGRAMS += \
3449         systemd-consoled
3450
3451 noinst_PROGRAMS += \
3452         systemd-evcat \
3453         systemd-modeset \
3454         systemd-subterm
3455
3456 dist_pkgdata_DATA += \
3457        src/libsystemd-terminal/unifont-glyph-array.bin
3458
3459 nodist_userunit_DATA += \
3460         units/user/systemd-consoled.service
3461
3462 USER_DEFAULT_TARGET_WANTS += \
3463         systemd-consoled.service
3464
3465 tests += \
3466         test-term-page \
3467         test-term-parser \
3468         test-unifont
3469 endif
3470
3471 EXTRA_DIST += \
3472         units/user/systemd-consoled.service.in
3473
3474 libsystemd_terminal_la_CFLAGS = \
3475         $(AM_CFLAGS) \
3476         $(TERMINAL_CFLAGS)
3477
3478 libsystemd_terminal_la_SOURCES = \
3479         src/libsystemd-terminal/grdev.h \
3480         src/libsystemd-terminal/grdev-internal.h \
3481         src/libsystemd-terminal/grdev.c \
3482         src/libsystemd-terminal/grdev-drm.c \
3483         src/libsystemd-terminal/idev.h \
3484         src/libsystemd-terminal/idev-internal.h \
3485         src/libsystemd-terminal/idev.c \
3486         src/libsystemd-terminal/idev-evdev.c \
3487         src/libsystemd-terminal/idev-keyboard.c \
3488         src/libsystemd-terminal/sysview.h \
3489         src/libsystemd-terminal/sysview-internal.h \
3490         src/libsystemd-terminal/sysview.c \
3491         src/libsystemd-terminal/term.h \
3492         src/libsystemd-terminal/term-internal.h \
3493         src/libsystemd-terminal/term-charset.c \
3494         src/libsystemd-terminal/term-page.c \
3495         src/libsystemd-terminal/term-parser.c \
3496         src/libsystemd-terminal/term-screen.c \
3497         src/libsystemd-terminal/term-wcwidth.c \
3498         src/libsystemd-terminal/unifont.h \
3499         src/libsystemd-terminal/unifont-def.h \
3500         src/libsystemd-terminal/unifont.c
3501
3502 libsystemd_terminal_la_LIBADD = \
3503         libudev-internal.la \
3504         libsystemd-internal.la \
3505         libsystemd-shared.la \
3506         $(TERMINAL_LIBS)
3507
3508 systemd_consoled_CFLAGS = \
3509         $(AM_CFLAGS) \
3510         $(TERMINAL_CFLAGS)
3511
3512 systemd_consoled_SOURCES = \
3513         src/console/consoled.h \
3514         src/console/consoled.c \
3515         src/console/consoled-display.c \
3516         src/console/consoled-manager.c \
3517         src/console/consoled-session.c \
3518         src/console/consoled-terminal.c \
3519         src/console/consoled-workspace.c
3520
3521 systemd_consoled_LDADD = \
3522         libsystemd-terminal.la \
3523         libsystemd-internal.la \
3524         libsystemd-shared.la \
3525         $(TERMINAL_LIBS)
3526
3527 systemd_evcat_CFLAGS = \
3528         $(AM_CFLAGS) \
3529         $(TERMINAL_CFLAGS)
3530
3531 systemd_evcat_SOURCES = \
3532         src/libsystemd-terminal/evcat.c
3533
3534 systemd_evcat_LDADD = \
3535         libsystemd-terminal.la \
3536         libsystemd-internal.la \
3537         libsystemd-shared.la \
3538         $(TERMINAL_LIBS)
3539
3540 systemd_modeset_CFLAGS = \
3541         $(AM_CFLAGS) \
3542         $(TERMINAL_CFLAGS)
3543
3544 systemd_modeset_SOURCES = \
3545         src/libsystemd-terminal/modeset.c
3546
3547 systemd_modeset_LDADD = \
3548         libsystemd-terminal.la \
3549         libsystemd-internal.la \
3550         libsystemd-shared.la \
3551         $(TERMINAL_LIBS)
3552
3553 systemd_subterm_SOURCES = \
3554         src/libsystemd-terminal/subterm.c
3555
3556 systemd_subterm_LDADD = \
3557         libsystemd-terminal.la \
3558         libsystemd-internal.la \
3559         libsystemd-shared.la
3560
3561 test_term_page_SOURCES = \
3562         src/libsystemd-terminal/test-term-page.c
3563
3564 test_term_page_LDADD = \
3565         libsystemd-terminal.la \
3566         libsystemd-internal.la \
3567         libsystemd-shared.la
3568
3569 test_term_parser_SOURCES = \
3570         src/libsystemd-terminal/test-term-parser.c
3571
3572 test_term_parser_LDADD = \
3573         libsystemd-terminal.la \
3574         libsystemd-internal.la \
3575         libsystemd-shared.la
3576
3577 test_unifont_SOURCES = \
3578         src/libsystemd-terminal/test-unifont.c
3579
3580 test_unifont_LDADD = \
3581         libsystemd-terminal.la \
3582         libsystemd-internal.la \
3583         libsystemd-shared.la
3584
3585 src/libsystemd-terminal/unifont-glyph-array.bin: tools/compile-unifont.py $(UNIFONT)
3586         $(AM_V_GEN)$(PYTHON) $< <$(UNIFONT) >$@
3587
3588 # ------------------------------------------------------------------------------
3589 if ENABLE_GTK_DOC
3590 SUBDIRS += \
3591         docs/libudev
3592
3593 noinst_DATA += \
3594         docs/html/libudev \
3595         docs/html/gudev
3596 endif
3597
3598 include_HEADERS += \
3599         src/libudev/libudev.h
3600
3601 lib_LTLIBRARIES += \
3602         libudev.la
3603
3604 libudev_la_SOURCES =\
3605         src/libudev/libudev.sym \
3606         src/libudev/libudev-private.h \
3607         src/libudev/libudev.c \
3608         src/libudev/libudev-list.c \
3609         src/libudev/libudev-util.c \
3610         src/libudev/libudev-device.c \
3611         src/libudev/libudev-enumerate.c \
3612         src/libudev/libudev-monitor.c \
3613         src/libudev/libudev-queue.c \
3614         src/libudev/libudev-hwdb.c
3615
3616 libudev_la_CFLAGS = \
3617         $(AM_CFLAGS) \
3618         -fvisibility=hidden
3619
3620 libudev_la_LDFLAGS = \
3621         $(AM_LDFLAGS) \
3622         -version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \
3623         -Wl,--version-script=$(top_srcdir)/src/libudev/libudev.sym
3624
3625 libudev_la_LIBADD = \
3626         libsystemd-internal.la \
3627         libsystemd-shared.la
3628
3629 pkgconfiglib_DATA += \
3630         src/libudev/libudev.pc
3631
3632 EXTRA_DIST += \
3633         src/libudev/libudev.pc.in
3634
3635 CLEANFILES += \
3636         src/libudev/libudev.pc \
3637         docs/html/libudev \
3638         docs/html/gudev
3639
3640 docs/html/libudev:
3641         $(AM_V_at)$(MKDIR_P) $(dir $@)
3642         $(AM_V_LN)$(LN_S) -f ../libudev/html $@
3643
3644 docs/html/gudev:
3645         $(AM_V_at)$(MKDIR_P) $(dir $@)
3646         $(AM_V_LN)$(LN_S) -f ../gudev/html $@
3647
3648 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
3649 libudev-install-hook:
3650         libname=libudev.so && $(move-to-rootlibdir)
3651
3652 libudev-uninstall-hook:
3653         rm -f $(DESTDIR)$(rootlibdir)/libudev.so*
3654
3655 INSTALL_EXEC_HOOKS += libudev-install-hook
3656 UNINSTALL_EXEC_HOOKS += libudev-uninstall-hook
3657
3658 # ------------------------------------------------------------------------------
3659 noinst_LTLIBRARIES += \
3660         libudev-internal.la
3661
3662 libudev_internal_la_SOURCES =\
3663         $(libudev_la_SOURCES) \
3664         src/libudev/libudev-device-private.c
3665
3666 libudev_internal_la_CFLAGS = \
3667         $(AM_CFLAGS) \
3668         -fvisibility=default
3669
3670 # ------------------------------------------------------------------------------
3671 INSTALL_DIRS += \
3672         $(sysconfdir)/udev/rules.d
3673
3674 dist_network_DATA = \
3675         network/99-default.link \
3676         network/80-container-host0.network \
3677         network/80-container-ve.network
3678
3679 dist_udevrules_DATA += \
3680         rules/42-usb-hid-pm.rules \
3681         rules/50-udev-default.rules \
3682         rules/60-drm.rules \
3683         rules/60-keyboard.rules \
3684         rules/60-persistent-storage-tape.rules \
3685         rules/60-persistent-serial.rules \
3686         rules/60-persistent-input.rules \
3687         rules/60-persistent-alsa.rules \
3688         rules/60-persistent-storage.rules \
3689         rules/64-btrfs.rules \
3690         rules/70-mouse.rules \
3691         rules/70-touchpad.rules \
3692         rules/75-net-description.rules \
3693         rules/75-tty-description.rules \
3694         rules/78-sound-card.rules \
3695         rules/80-net-setup-link.rules \
3696         rules/95-udev-late.rules
3697
3698 nodist_udevrules_DATA += \
3699         rules/99-systemd.rules
3700
3701 udevconfdir = $(sysconfdir)/udev
3702 dist_udevconf_DATA = \
3703         src/udev/udev.conf
3704
3705 sharepkgconfigdir = $(datadir)/pkgconfig
3706 sharepkgconfig_DATA = \
3707         src/udev/udev.pc
3708
3709 EXTRA_DIST += \
3710         rules/99-systemd.rules.in \
3711         src/udev/udev.pc.in
3712
3713 CLEANFILES += \
3714         rules/99-systemd.rules \
3715         src/udev/udev.pc
3716
3717 EXTRA_DIST += \
3718         units/systemd-udevd.service.in \
3719         units/systemd-udev-trigger.service.in \
3720         units/systemd-udev-settle.service.in
3721
3722 CLEANFILES += \
3723         units/systemd-udevd.service \
3724         units/systemd-udev-trigger.service \
3725         units/systemd-udev-settle.service
3726
3727 SOCKETS_TARGET_WANTS += \
3728         systemd-udevd-control.socket \
3729         systemd-udevd-kernel.socket
3730
3731 SYSINIT_TARGET_WANTS += \
3732         systemd-udevd.service \
3733         systemd-udev-trigger.service
3734
3735 rootbin_PROGRAMS += \
3736         udevadm
3737
3738 rootlibexec_PROGRAMS += \
3739         systemd-udevd
3740
3741 noinst_LTLIBRARIES += \
3742         libudev-core.la
3743
3744 src/udev/keyboard-keys.txt:
3745         $(AM_V_at)$(MKDIR_P) $(dir $@)
3746         $(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/' > $@
3747
3748 src/udev/keyboard-keys-from-name.gperf: src/udev/keyboard-keys.txt
3749         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print tolower(substr($$1 ,5)) ", " $$1 }' < $< > $@
3750
3751 src/udev/keyboard-keys-from-name.h: src/udev/keyboard-keys-from-name.gperf
3752         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t -N keyboard_lookup_key -H hash_key_name -p -C < $< > $@
3753
3754 src/udev/keyboard-keys-to-name.h: src/udev/keyboard-keys.txt
3755         $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char* const key_names[KEY_CNT] = { "} { print "[" $$1 "] = \"" $$1 "\"," } END{print "};"}' < $< > $@
3756
3757 libudev_core_la_SOURCES = \
3758         src/udev/udev.h \
3759         src/udev/udev-event.c \
3760         src/udev/udev-watch.c \
3761         src/udev/udev-node.c \
3762         src/udev/udev-rules.c \
3763         src/udev/udev-ctrl.c \
3764         src/udev/udev-builtin.c \
3765         src/udev/udev-builtin-btrfs.c \
3766         src/udev/udev-builtin-hwdb.c \
3767         src/udev/udev-builtin-input_id.c \
3768         src/udev/udev-builtin-keyboard.c \
3769         src/udev/udev-builtin-net_id.c \
3770         src/udev/udev-builtin-net_setup_link.c \
3771         src/udev/udev-builtin-path_id.c \
3772         src/udev/udev-builtin-usb_id.c \
3773         src/udev/net/link-config.h \
3774         src/udev/net/link-config.c \
3775         src/udev/net/ethtool-util.h \
3776         src/udev/net/ethtool-util.c
3777
3778 nodist_libudev_core_la_SOURCES = \
3779         src/udev/keyboard-keys-from-name.h \
3780         src/udev/keyboard-keys-to-name.h \
3781         src/udev/net/link-config-gperf.c
3782
3783 BUILT_SOURCES += \
3784         $(nodist_libudev_core_la_SOURCES)
3785
3786 CLEANFILES += \
3787         src/udev/keyboard-keys-from-name.gperf \
3788         src/udev/keyboard-keys.txt \
3789         src/udev/net/link-config-gperf.c
3790
3791 EXTRA_DIST += \
3792         src/udev/net/link-config-gperf.gperf
3793
3794 libudev_core_la_CFLAGS = \
3795         $(AM_CFLAGS) \
3796         $(BLKID_CFLAGS) \
3797         $(KMOD_CFLAGS)
3798
3799 libudev_core_la_LIBADD = \
3800         libudev-internal.la \
3801         libsystemd-label.la \
3802         libsystemd-internal.la \
3803         libsystemd-network.la \
3804         libsystemd-shared.la \
3805         $(BLKID_LIBS) \
3806         $(KMOD_LIBS)
3807
3808 if HAVE_KMOD
3809 libudev_core_la_SOURCES += \
3810         src/udev/udev-builtin-kmod.c
3811
3812 dist_udevrules_DATA += \
3813         rules/80-drivers.rules
3814 endif
3815
3816 if HAVE_BLKID
3817 libudev_core_la_SOURCES += \
3818         src/udev/udev-builtin-blkid.c
3819 endif
3820
3821 if HAVE_ACL
3822 libudev_core_la_SOURCES += \
3823         src/udev/udev-builtin-uaccess.c \
3824         src/login/logind-acl.c \
3825         src/libsystemd/sd-login/sd-login.c \
3826         src/systemd/sd-login.h
3827
3828 libudev_core_la_LIBADD += \
3829         libsystemd-acl.la
3830 endif
3831
3832 systemd_udevd_SOURCES = \
3833         src/udev/udevd.c
3834
3835 systemd_udevd_LDADD = \
3836         libudev-core.la
3837
3838 udevadm_SOURCES = \
3839         src/udev/udevadm.c \
3840         src/udev/udevadm-info.c \
3841         src/udev/udevadm-control.c \
3842         src/udev/udevadm-monitor.c \
3843         src/udev/udevadm-hwdb.c \
3844         src/udev/udevadm-settle.c \
3845         src/udev/udevadm-trigger.c \
3846         src/udev/udevadm-test.c \
3847         src/udev/udevadm-test-builtin.c \
3848         src/udev/udevadm-util.c \
3849         src/udev/udevadm-util.h
3850
3851 udevadm_LDADD = \
3852         libudev-core.la
3853
3854 # ------------------------------------------------------------------------------
3855 if ENABLE_HWDB
3856 INSTALL_DIRS += \
3857         $(sysconfdir)/udev/hwdb.d
3858
3859 systemd_hwdb_SOURCES = \
3860         src/libsystemd/sd-hwdb/hwdb-internal.h \
3861         src/hwdb/hwdb.c
3862
3863 systemd_hwdb_LDADD = \
3864         libsystemd-shared.la \
3865         libsystemd-internal.la \
3866         libudev-internal.la
3867
3868 rootbin_PROGRAMS += \
3869         systemd-hwdb
3870
3871 dist_udevhwdb_DATA = \
3872         hwdb/20-pci-vendor-model.hwdb \
3873         hwdb/20-pci-classes.hwdb \
3874         hwdb/20-usb-vendor-model.hwdb \
3875         hwdb/20-usb-classes.hwdb \
3876         hwdb/20-sdio-vendor-model.hwdb \
3877         hwdb/20-sdio-classes.hwdb \
3878         hwdb/20-bluetooth-vendor-product.hwdb \
3879         hwdb/20-acpi-vendor.hwdb \
3880         hwdb/20-OUI.hwdb \
3881         hwdb/20-net-ifname.hwdb \
3882         hwdb/60-keyboard.hwdb \
3883         hwdb/70-mouse.hwdb \
3884         hwdb/70-touchpad.hwdb
3885
3886 EXTRA_DIST += \
3887         units/systemd-hwdb-update.service.in
3888
3889 CLEANFILES += \
3890         units/systemd-hwdb-update.service
3891
3892 SYSINIT_TARGET_WANTS += \
3893         systemd-hwdb-update.service
3894
3895 # Update hwdb on installation. Do not bother if installing
3896 # in DESTDIR, since this is likely for packaging purposes.
3897 hwdb-update-hook:
3898         -test -n "$(DESTDIR)" || $(rootbindir)/systemd-hwdb update
3899
3900 INSTALL_DATA_HOOKS += \
3901         hwdb-update-hook
3902
3903 hwdb-remove-hook:
3904         -test -n "$(DESTDIR)" || rm -f /etc/udev/hwdb.bin
3905 endif
3906
3907 # ------------------------------------------------------------------------------
3908 TESTS += \
3909         test/udev-test.pl \
3910         $(NULL)
3911
3912 if HAVE_PYTHON
3913 TESTS += \
3914         test/rule-syntax-check.py \
3915         test/sysv-generator-test.py \
3916         $(NULL)
3917 endif
3918
3919 manual_tests += \
3920         test-libudev \
3921         test-udev
3922
3923 test_libudev_SOURCES = \
3924         src/test/test-libudev.c
3925
3926 test_libudev_LDADD = \
3927         libsystemd-label.la \
3928         libudev-internal.la \
3929         libsystemd-shared.la \
3930         libsystemd-internal.la
3931
3932 test_udev_SOURCES = \
3933         src/test/test-udev.c
3934
3935 test_udev_LDADD = \
3936         libudev-core.la  \
3937         $(BLKID_LIBS) \
3938         $(KMOD_LIBS) \
3939         $(SELINUX_LIBS)
3940
3941 if HAVE_ACL
3942 test_udev_LDADD += \
3943         libsystemd-acl.la
3944 endif
3945
3946 check_DATA += \
3947         test/sys
3948
3949 # packed sysfs test tree
3950 test/sys:
3951         $(AM_V_at)$(MKDIR_P) $(dir $@)
3952         $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
3953
3954 test-sys-distclean:
3955         -rm -rf test/sys
3956 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
3957
3958 EXTRA_DIST += \
3959         test/sys.tar.xz \
3960         test/udev-test.pl \
3961         test/rule-syntax-check.py \
3962         test/sysv-generator-test.py \
3963         $(NULL)
3964
3965
3966 # ------------------------------------------------------------------------------
3967 ata_id_SOURCES = \
3968         src/udev/ata_id/ata_id.c
3969
3970 ata_id_LDADD = \
3971         libudev-internal.la \
3972         libsystemd-shared.la
3973
3974 udevlibexec_PROGRAMS += \
3975         ata_id
3976
3977 # ------------------------------------------------------------------------------
3978 cdrom_id_SOURCES = \
3979         src/udev/cdrom_id/cdrom_id.c
3980
3981 cdrom_id_LDADD = \
3982         libudev-internal.la \
3983         libsystemd-shared.la
3984
3985 udevlibexec_PROGRAMS += \
3986         cdrom_id
3987
3988 dist_udevrules_DATA += \
3989         rules/60-cdrom_id.rules
3990
3991 # ------------------------------------------------------------------------------
3992 collect_SOURCES = \
3993         src/udev/collect/collect.c
3994
3995 collect_LDADD = \
3996         libudev-internal.la \
3997         libsystemd-shared.la
3998
3999 udevlibexec_PROGRAMS += \
4000         collect
4001
4002 # ------------------------------------------------------------------------------
4003 scsi_id_SOURCES =\
4004         src/udev/scsi_id/scsi_id.c \
4005         src/udev/scsi_id/scsi_serial.c \
4006         src/udev/scsi_id/scsi.h \
4007         src/udev/scsi_id/scsi_id.h
4008
4009 scsi_id_LDADD = \
4010         libudev-internal.la \
4011         libsystemd-shared.la
4012
4013 udevlibexec_PROGRAMS += \
4014         scsi_id
4015
4016 EXTRA_DIST += \
4017         src/udev/scsi_id/README
4018
4019 # ------------------------------------------------------------------------------
4020 v4l_id_SOURCES = \
4021         src/udev/v4l_id/v4l_id.c
4022
4023 v4l_id_LDADD = \
4024         libudev-internal.la \
4025         libsystemd-shared.la
4026
4027 udevlibexec_PROGRAMS += \
4028         v4l_id
4029
4030 dist_udevrules_DATA += \
4031         rules/60-persistent-v4l.rules
4032
4033 # ------------------------------------------------------------------------------
4034 accelerometer_SOURCES = \
4035         src/udev/accelerometer/accelerometer.c
4036
4037 accelerometer_LDADD = \
4038         libudev-internal.la \
4039         libsystemd-shared.la
4040
4041 udevlibexec_PROGRAMS += \
4042         accelerometer
4043
4044 dist_udevrules_DATA += \
4045         rules/61-accelerometer.rules
4046
4047 # ------------------------------------------------------------------------------
4048 if ENABLE_GUDEV
4049 if ENABLE_GTK_DOC
4050 SUBDIRS += \
4051         docs/gudev
4052 endif
4053
4054 libgudev_includedir = \
4055         $(includedir)/gudev-1.0/gudev
4056
4057 libgudev_include_HEADERS = \
4058         src/gudev/gudev.h \
4059         src/gudev/gudevenums.h \
4060         src/gudev/gudevenumtypes.h \
4061         src/gudev/gudevtypes.h \
4062         src/gudev/gudevclient.h \
4063         src/gudev/gudevdevice.h \
4064         src/gudev/gudevenumerator.h
4065
4066 lib_LTLIBRARIES += libgudev-1.0.la
4067
4068 pkgconfiglib_DATA += \
4069         src/gudev/gudev-1.0.pc
4070
4071 CLEANFILES += \
4072         src/gudev/gudev-1.0.pc
4073
4074 libgudev_1_0_la_SOURCES = \
4075         src/gudev/libgudev-1.0.sym \
4076         src/gudev/gudevenums.h \
4077         src/gudev/gudevenumtypes.h \
4078         src/gudev/gudevenumtypes.h\
4079         src/gudev/gudevtypes.h \
4080         src/gudev/gudevclient.h \
4081         src/gudev/gudevclient.c \
4082         src/gudev/gudevdevice.h \
4083         src/gudev/gudevdevice.c \
4084         src/gudev/gudevenumerator.h \
4085         src/gudev/gudevenumerator.c \
4086         src/gudev/gudevprivate.h
4087
4088 nodist_libgudev_1_0_la_SOURCES = \
4089         src/gudev/gudevmarshal.h \
4090         src/gudev/gudevmarshal.c \
4091         src/gudev/gudevenumtypes.h \
4092         src/gudev/gudevenumtypes.c
4093
4094 BUILT_SOURCES += \
4095         $(nodist_libgudev_1_0_la_SOURCES)
4096
4097 libgudev_1_0_la_CPPFLAGS = \
4098         $(AM_CPPFLAGS) \
4099         -I$(top_builddir)/src\
4100         -I$(top_srcdir)/src\
4101         -I$(top_builddir)/src/gudev \
4102         -I$(top_srcdir)/src/gudev \
4103         -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
4104         -D_GUDEV_COMPILATION \
4105         -DG_LOG_DOMAIN=\"GUdev\"
4106
4107 libgudev_1_0_la_CFLAGS = \
4108         $(AM_CFLAGS) \
4109         -fvisibility=default \
4110         $(GLIB_CFLAGS)
4111
4112 libgudev_1_0_la_LIBADD = \
4113         libudev.la \
4114         $(GLIB_LIBS)
4115
4116 libgudev_1_0_la_LDFLAGS = \
4117         $(AM_LDFLAGS) \
4118         -version-info $(LIBGUDEV_CURRENT):$(LIBGUDEV_REVISION):$(LIBGUDEV_AGE) \
4119         -export-dynamic \
4120         -no-undefined \
4121         -Wl,--version-script=$(top_srcdir)/src/gudev/libgudev-1.0.sym
4122
4123 src/gudev/gudevmarshal.h: src/gudev/gudevmarshal.list
4124         $(AM_V_at)$(MKDIR_P) $(dir $@)
4125         $(AM_V_GEN)glib-genmarshal $< --prefix=g_udev_marshal --header > $@
4126
4127 src/gudev/gudevmarshal.c: src/gudev/gudevmarshal.list
4128         $(AM_V_at)$(MKDIR_P) $(dir $@)
4129         $(AM_V_GEN)echo '#include "gudevmarshal.h"' > $@ && \
4130         glib-genmarshal $< --prefix=g_udev_marshal --body >> $@
4131
4132 src/gudev/gudevenumtypes.%: src/gudev/gudevenumtypes.%.template src/gudev/gudevenums.h
4133         $(AM_V_at)$(MKDIR_P) $(dir $@)
4134         $(AM_V_GEN)glib-mkenums --template $^ > $@
4135
4136 if HAVE_INTROSPECTION
4137 -include $(INTROSPECTION_MAKEFILE)
4138
4139 src/gudev/GUdev-1.0.gir: libgudev-1.0.la
4140
4141 src_gudev_GUdev_1_0_gir_INCLUDES = GObject-2.0
4142
4143 src_gudev_GUdev_1_0_gir_CFLAGS = \
4144         $(AM_CFLAGS) \
4145         $(INCLUDES) \
4146         -D_GUDEV_COMPILATION \
4147         -D_GUDEV_WORK_AROUND_DEV_T_BUG \
4148         -I$(top_srcdir)/src \
4149         -I$(top_builddir)/src \
4150         -I$(top_srcdir)/src/gudev \
4151         -I$(top_builddir)/src/gudev
4152
4153 src_gudev_GUdev_1_0_gir_LIBS = libgudev-1.0.la
4154
4155 src_gudev_GUdev_1_0_gir_SCANNERFLAGS = \
4156         --pkg-export=gudev-1.0 \
4157         --warn-all
4158
4159 src_gudev_GUdev_1_0_gir_FILES = \
4160         src/gudev/gudev.h \
4161         src/gudev/gudevtypes.h \
4162         src/gudev/gudevenums.h \
4163         src/gudev/gudevenumtypes.h \
4164         src/gudev/gudevclient.h \
4165         src/gudev/gudevdevice.h \
4166         src/gudev/gudevenumerator.h \
4167         src/gudev/gudevclient.c \
4168         src/gudev/gudevdevice.c \
4169         src/gudev/gudevenumerator.c
4170
4171 INTROSPECTION_GIRS = src/gudev/GUdev-1.0.gir
4172 INTROSPECTION_SCANNER_ARGS = --c-include=gudev/gudev.h
4173
4174 girdir = $(datadir)/gir-1.0
4175 gir_DATA = \
4176         src/gudev/GUdev-1.0.gir
4177
4178 typelibsdir = $(libdir)/girepository-1.0
4179 typelibs_DATA = \
4180         src/gudev/GUdev-1.0.typelib
4181
4182 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
4183 endif # HAVE_INTROSPECTION
4184 endif
4185
4186 EXTRA_DIST += \
4187         src/gudev/gudev-1.0.pc.in \
4188         src/gudev/gudevmarshal.list \
4189         src/gudev/gudevenumtypes.h.template \
4190         src/gudev/gudevenumtypes.c.template \
4191         src/gudev/gjs-example.js \
4192         src/gudev/seed-example-enum.js \
4193         src/gudev/seed-example.js
4194
4195 # ------------------------------------------------------------------------------
4196 mtd_probe_SOURCES =  \
4197         src/udev/mtd_probe/mtd_probe.c \
4198         src/udev/mtd_probe/mtd_probe.h \
4199         src/udev/mtd_probe/probe_smartmedia.c
4200
4201 dist_udevrules_DATA += \
4202         rules/75-probe_mtd.rules
4203
4204 udevlibexec_PROGRAMS += \
4205         mtd_probe
4206
4207 # ------------------------------------------------------------------------------
4208 test_id128_SOURCES = \
4209         src/test/test-id128.c
4210
4211 test_id128_LDADD = \
4212         libsystemd-internal.la \
4213         libsystemd-shared.la
4214
4215 tests += \
4216         test-id128
4217
4218 # ------------------------------------------------------------------------------
4219
4220 rootlibexec_PROGRAMS += \
4221         systemd-activate
4222
4223 systemd_activate_SOURCES = \
4224         src/activate/activate.c
4225
4226 systemd_activate_LDADD = \
4227         libsystemd-label.la \
4228         libsystemd-internal.la \
4229         libsystemd-shared.la
4230
4231 # ------------------------------------------------------------------------------
4232 systemd_journald_SOURCES = \
4233         src/journal/journald.c \
4234         src/journal/journald-server.h
4235
4236 systemd_journald_LDADD = \
4237         libsystemd-journal-core.la \
4238         libsystemd-internal.la \
4239         libsystemd-shared.la
4240
4241 systemd_cat_SOURCES = \
4242         src/journal/cat.c
4243
4244 systemd_cat_LDADD = \
4245         libsystemd-journal-core.la
4246
4247 if HAVE_MICROHTTPD
4248 rootlibexec_PROGRAMS += \
4249         systemd-journal-remote
4250
4251 systemd_journal_remote_SOURCES = \
4252         src/journal-remote/journal-remote-parse.h \
4253         src/journal-remote/journal-remote-parse.c \
4254         src/journal-remote/journal-remote-write.h \
4255         src/journal-remote/journal-remote-write.c \
4256         src/journal-remote/journal-remote.h \
4257         src/journal-remote/journal-remote.c
4258
4259 systemd_journal_remote_LDADD = \
4260         libsystemd-internal.la \
4261         libsystemd-journal-core.la
4262
4263 systemd_journal_remote_SOURCES += \
4264         src/journal-remote/microhttpd-util.h \
4265         src/journal-remote/microhttpd-util.c
4266
4267 systemd_journal_remote_CFLAGS = \
4268         $(AM_CFLAGS) \
4269         $(MICROHTTPD_CFLAGS)
4270
4271 systemd_journal_remote_LDADD += \
4272         $(MICROHTTPD_LIBS)
4273
4274 if ENABLE_SYSUSERS
4275 dist_sysusers_DATA += \
4276         sysusers.d/systemd-remote.conf
4277 endif
4278
4279 if ENABLE_TMPFILES
4280 dist_tmpfiles_DATA += \
4281         tmpfiles.d/systemd-remote.conf
4282 endif
4283
4284 if HAVE_GNUTLS
4285 systemd_journal_remote_LDADD += \
4286         $(GNUTLS_LIBS)
4287
4288 # systemd-journal-remote make sense mostly with full crypto stack
4289 dist_systemunit_DATA += \
4290         units/systemd-journal-remote.socket
4291
4292 nodist_systemunit_DATA += \
4293         units/systemd-journal-remote.service
4294
4295 EXTRA_DIST += \
4296         units/systemd-journal-remote.service.in
4297
4298 journal-remote-install-hook: journal-install-hook
4299         -$(MKDIR_P) $(DESTDIR)/var/log/journal/remote
4300         -chown 0:0 $(DESTDIR)/var/log/journal/remote
4301         -chmod 755 $(DESTDIR)/var/log/journal/remote
4302
4303 INSTALL_EXEC_HOOKS += journal-remote-install-hook
4304
4305 endif
4306
4307 nodist_pkgsysconf_DATA += \
4308         src/journal-remote/journal-remote.conf
4309
4310 EXTRA_DIST += \
4311         src/journal-remote/journal-remote.conf.in
4312
4313 CLEANFILES += \
4314         src/journal-remote/journal-remote.conf
4315 endif
4316
4317 if HAVE_LIBCURL
4318 rootlibexec_PROGRAMS += \
4319         systemd-journal-upload
4320
4321 systemd_journal_upload_SOURCES = \
4322         src/journal-remote/journal-upload.h \
4323         src/journal-remote/journal-upload.c \
4324         src/journal-remote/journal-upload-journal.c
4325
4326 systemd_journal_upload_CFLAGS = \
4327         $(AM_CFLAGS) \
4328         $(LIBCURL_CFLAGS)
4329
4330 systemd_journal_upload_LDADD = \
4331         libsystemd-internal.la \
4332         libsystemd-journal-internal.la \
4333         libsystemd-shared.la \
4334         $(LIBCURL_LIBS)
4335
4336 nodist_systemunit_DATA += \
4337         units/systemd-journal-upload.service
4338
4339 EXTRA_DIST += \
4340         units/systemd-journal-upload.service.in
4341
4342 nodist_pkgsysconf_DATA += \
4343         src/journal-remote/journal-upload.conf
4344
4345 EXTRA_DIST += \
4346         src/journal-remote/journal-upload.conf.in
4347
4348 CLEANFILES += \
4349         src/journal-remote/journal-upload.conf
4350 endif
4351
4352 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4353 journalctl_CFLAGS = \
4354         $(AM_CFLAGS)
4355
4356 journalctl_SOURCES = \
4357         src/journal/journalctl.c
4358
4359 journalctl_LDADD = \
4360         libsystemd-journal-internal.la \
4361         libsystemd-internal.la \
4362         libsystemd-logs.la \
4363         libsystemd-shared.la
4364
4365 if HAVE_ACL
4366 journalctl_LDADD += \
4367         libsystemd-acl.la
4368 endif
4369
4370 if HAVE_QRENCODE
4371 journalctl_SOURCES += \
4372         src/journal/journal-qrcode.c \
4373         src/journal/journal-qrcode.h
4374
4375 journalctl_CFLAGS += \
4376         $(QRENCODE_CFLAGS)
4377
4378 journalctl_LDADD += \
4379         $(QRENCODE_LIBS)
4380 endif
4381
4382 test_journal_SOURCES = \
4383         src/journal/test-journal.c
4384
4385 test_journal_LDADD = \
4386         libsystemd-journal-core.la
4387
4388 test_journal_send_SOURCES = \
4389         src/journal/test-journal-send.c
4390
4391 test_journal_send_LDADD = \
4392         libsystemd-journal-core.la
4393
4394 test_journal_syslog_SOURCES = \
4395         src/journal/test-journal-syslog.c
4396
4397 test_journal_syslog_LDADD = \
4398         libsystemd-journal-core.la
4399
4400 test_journal_match_SOURCES = \
4401         src/journal/test-journal-match.c
4402
4403 test_journal_match_LDADD = \
4404         libsystemd-journal-core.la
4405
4406 test_journal_enum_SOURCES = \
4407         src/journal/test-journal-enum.c
4408
4409 test_journal_enum_LDADD = \
4410         libsystemd-journal-core.la
4411
4412 test_journal_stream_SOURCES = \
4413         src/journal/test-journal-stream.c
4414
4415 test_journal_stream_LDADD = \
4416         libsystemd-journal-core.la
4417
4418 test_journal_flush_SOURCES = \
4419         src/journal/test-journal-flush.c
4420
4421 test_journal_flush_LDADD = \
4422         libsystemd-journal-core.la
4423
4424 test_journal_init_SOURCES = \
4425         src/journal/test-journal-init.c
4426
4427 test_journal_init_LDADD = \
4428         libsystemd-journal-core.la
4429
4430 test_journal_verify_SOURCES = \
4431         src/journal/test-journal-verify.c
4432
4433 test_journal_verify_LDADD = \
4434         libsystemd-journal-core.la
4435
4436 test_journal_interleaving_SOURCES = \
4437         src/journal/test-journal-interleaving.c
4438
4439 test_journal_interleaving_LDADD = \
4440         libsystemd-journal-core.la
4441
4442 test_mmap_cache_SOURCES = \
4443         src/journal/test-mmap-cache.c
4444
4445 test_mmap_cache_LDADD = \
4446         libsystemd-journal-core.la
4447
4448 test_catalog_SOURCES = \
4449         src/journal/test-catalog.c
4450
4451 test_catalog_CPPFLAGS = \
4452         $(AM_CPPFLAGS) \
4453         -DCATALOG_DIR=\"$(abs_top_srcdir)/catalog\"
4454
4455 test_catalog_LDADD = \
4456         libsystemd-journal-core.la
4457
4458 test_compress_SOURCES = \
4459         src/journal/test-compress.c
4460
4461 test_compress_LDADD = \
4462         libsystemd-journal-internal.la \
4463         libsystemd-shared.la
4464
4465 test_compress_benchmark_SOURCES = \
4466         src/journal/test-compress-benchmark.c
4467
4468 test_compress_benchmark_LDADD = \
4469         libsystemd-journal-internal.la \
4470         libsystemd-shared.la
4471
4472 libsystemd_journal_core_la_SOURCES = \
4473         src/journal/journald-kmsg.c \
4474         src/journal/journald-kmsg.h \
4475         src/journal/journald-syslog.c \
4476         src/journal/journald-syslog.h \
4477         src/journal/journald-stream.c \
4478         src/journal/journald-stream.h \
4479         src/journal/journald-server.c \
4480         src/journal/journald-server.h \
4481         src/journal/journald-console.c \
4482         src/journal/journald-console.h \
4483         src/journal/journald-wall.c \
4484         src/journal/journald-wall.h \
4485         src/journal/journald-native.c \
4486         src/journal/journald-native.h \
4487         src/journal/journald-audit.c \
4488         src/journal/journald-audit.h \
4489         src/journal/journald-rate-limit.c \
4490         src/journal/journald-rate-limit.h \
4491         src/journal/journal-internal.h
4492
4493 nodist_libsystemd_journal_core_la_SOURCES = \
4494         src/journal/journald-gperf.c
4495
4496 libsystemd_journal_core_la_LIBADD = \
4497         libsystemd-journal-internal.la \
4498         libudev-internal.la \
4499         libsystemd-label.la \
4500         libsystemd-internal.la \
4501         libsystemd-shared.la
4502
4503 if HAVE_ACL
4504 libsystemd_journal_core_la_LIBADD += \
4505         libsystemd-acl.la
4506 endif
4507
4508 noinst_LTLIBRARIES += \
4509         libsystemd-journal-core.la
4510
4511 journal-install-hook:
4512         -$(MKDIR_P) $(DESTDIR)/var/log/journal
4513         -chown 0:0 $(DESTDIR)/var/log/journal
4514         -chmod 755 $(DESTDIR)/var/log/journal
4515         -setfacl -nm g:adm:rx,d:g:adm:rx $(DESTDIR)/var/log/journal/
4516         -setfacl -nm g:wheel:rx,d:g:wheel:rx $(DESTDIR)/var/log/journal/
4517
4518 journal-uninstall-hook:
4519         -rmdir $(DESTDIR)/var/log/journal/remote
4520         -rmdir $(DESTDIR)/var/log/journal/
4521
4522 INSTALL_EXEC_HOOKS += journal-install-hook
4523 UNINSTALL_EXEC_HOOKS += journal-uninstall-hook
4524
4525 # ------------------------------------------------------------------------------
4526 # Update catalog on installation. Do not bother if installing
4527 # in DESTDIR, since this is likely for packaging purposes.
4528 catalog-update-hook:
4529         -test -n "$(DESTDIR)" || $(rootbindir)/journalctl --update-catalog
4530
4531 INSTALL_DATA_HOOKS += \
4532         catalog-update-hook
4533
4534 catalog-remove-hook:
4535         -test -n "$(DESTDIR)" || rm -f $(catalogstatedir)/database
4536
4537 UNINSTALL_DATA_HOOKS += \
4538         catalog-remove-hook
4539
4540 manual_tests += \
4541         test-journal-enum
4542
4543 tests += \
4544         test-journal \
4545         test-journal-send \
4546         test-journal-syslog \
4547         test-journal-match \
4548         test-journal-stream \
4549         test-journal-init \
4550         test-journal-verify \
4551         test-journal-interleaving \
4552         test-journal-flush \
4553         test-mmap-cache \
4554         test-catalog
4555
4556 if HAVE_COMPRESSION
4557 tests += \
4558         test-compress \
4559         test-compress-benchmark
4560 endif
4561
4562 pkginclude_HEADERS += \
4563         src/systemd/sd-journal.h \
4564         src/systemd/sd-messages.h \
4565         src/systemd/_sd-common.h
4566
4567 libsystemd_journal_internal_la_SOURCES = \
4568         src/journal/sd-journal.c \
4569         src/systemd/sd-journal.h \
4570         src/systemd/_sd-common.h \
4571         src/journal/journal-file.c \
4572         src/journal/journal-file.h \
4573         src/journal/journal-vacuum.c \
4574         src/journal/journal-vacuum.h \
4575         src/journal/journal-verify.c \
4576         src/journal/journal-verify.h \
4577         src/journal/lookup3.c \
4578         src/journal/lookup3.h \
4579         src/journal/journal-send.c \
4580         src/journal/journal-def.h \
4581         src/journal/compress.h \
4582         src/journal/catalog.c \
4583         src/journal/catalog.h \
4584         src/journal/mmap-cache.c \
4585         src/journal/mmap-cache.h \
4586         src/journal/compress.c
4587
4588 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4589 libsystemd_journal_internal_la_CFLAGS = \
4590         $(AM_CFLAGS)
4591
4592 libsystemd_journal_internal_la_LIBADD = \
4593         libsystemd-label.la
4594
4595 if HAVE_XZ
4596 libsystemd_journal_internal_la_CFLAGS += \
4597         $(XZ_CFLAGS)
4598
4599 libsystemd_journal_internal_la_LIBADD += \
4600         $(XZ_LIBS)
4601 endif
4602
4603 if HAVE_LZ4
4604 libsystemd_journal_internal_la_LIBADD += \
4605         -llz4
4606 endif
4607
4608 if HAVE_GCRYPT
4609 libsystemd_journal_internal_la_SOURCES += \
4610         src/journal/journal-authenticate.c \
4611         src/journal/journal-authenticate.h \
4612         src/journal/fsprg.c \
4613         src/journal/fsprg.h
4614
4615 libsystemd_journal_internal_la_LIBADD += \
4616         $(GCRYPT_LIBS)
4617
4618 # fsprg.c is a drop-in file using void pointer arithmetic
4619 libsystemd_journal_internal_la_CFLAGS += \
4620         $(GCRYPT_CFLAGS) \
4621         -Wno-pointer-arith
4622 endif
4623
4624 noinst_LTLIBRARIES += \
4625         libsystemd-journal-internal.la
4626
4627 rootlibexec_PROGRAMS += \
4628         systemd-journald
4629
4630 rootbin_PROGRAMS += \
4631         journalctl
4632
4633 bin_PROGRAMS += \
4634         systemd-cat
4635
4636 dist_systemunit_DATA += \
4637         units/systemd-journald.socket \
4638         units/systemd-journald-dev-log.socket \
4639         units/systemd-journald-audit.socket
4640
4641 nodist_systemunit_DATA += \
4642         units/systemd-journald.service \
4643         units/systemd-journal-flush.service \
4644         units/systemd-journal-catalog-update.service
4645
4646 dist_pkgsysconf_DATA += \
4647         src/journal/journald.conf
4648
4649 dist_catalog_DATA = \
4650         catalog/systemd.fr.catalog \
4651         catalog/systemd.it.catalog \
4652         catalog/systemd.pl.catalog \
4653         catalog/systemd.pt_BR.catalog \
4654         catalog/systemd.ru.catalog \
4655         catalog/systemd.catalog
4656
4657 SOCKETS_TARGET_WANTS += \
4658         systemd-journald.socket \
4659         systemd-journald-dev-log.socket \
4660         systemd-journald-audit.socket
4661
4662 SYSINIT_TARGET_WANTS += \
4663         systemd-journald.service \
4664         systemd-journal-flush.service \
4665         systemd-journal-catalog-update.service
4666
4667 EXTRA_DIST += \
4668         units/systemd-journald.service.in \
4669         units/systemd-journal-flush.service.in \
4670         units/systemd-journal-catalog-update.service.in \
4671         src/journal/journald-gperf.gperf
4672
4673 CLEANFILES += \
4674         src/journal/journald-gperf.c
4675
4676 # ------------------------------------------------------------------------------
4677 if HAVE_MICROHTTPD
4678 gatewayddocumentrootdir=$(pkgdatadir)/gatewayd
4679
4680 rootlibexec_PROGRAMS += \
4681         systemd-journal-gatewayd
4682
4683 systemd_journal_gatewayd_SOURCES = \
4684         src/journal-remote/journal-gatewayd.c \
4685         src/journal-remote/microhttpd-util.h \
4686         src/journal-remote/microhttpd-util.c
4687
4688 systemd_journal_gatewayd_LDADD = \
4689         libsystemd-logs.la \
4690         libsystemd-journal-internal.la \
4691         libsystemd-internal.la \
4692         libsystemd-shared.la \
4693         $(MICROHTTPD_LIBS)
4694
4695 if HAVE_GNUTLS
4696 systemd_journal_gatewayd_LDADD += \
4697         $(GNUTLS_LIBS)
4698 endif
4699
4700 systemd_journal_gatewayd_CFLAGS = \
4701         $(AM_CFLAGS) \
4702         $(MICROHTTPD_CFLAGS)
4703
4704 systemd_journal_gatewayd_CPPFLAGS = \
4705         $(AM_CPPFLAGS) \
4706         -DDOCUMENT_ROOT=\"$(gatewayddocumentrootdir)\"
4707
4708 dist_systemunit_DATA += \
4709         units/systemd-journal-gatewayd.socket
4710
4711 nodist_systemunit_DATA += \
4712         units/systemd-journal-gatewayd.service
4713
4714 dist_gatewayddocumentroot_DATA = \
4715         src/journal-remote/browse.html
4716
4717 endif
4718
4719 EXTRA_DIST += \
4720         units/systemd-journal-gatewayd.service.in
4721
4722 # ------------------------------------------------------------------------------
4723
4724 systemd_socket_proxyd_SOURCES = \
4725         src/socket-proxy/socket-proxyd.c
4726
4727 systemd_socket_proxyd_LDADD = \
4728         libsystemd-logs.la \
4729         libsystemd-internal.la \
4730         libsystemd-journal-internal.la \
4731         libsystemd-shared.la \
4732         libsystemd-resolve.la
4733
4734 # ------------------------------------------------------------------------------
4735 if ENABLE_COREDUMP
4736 systemd_coredump_SOURCES = \
4737         src/journal/coredump.c \
4738         src/journal/coredump-vacuum.c \
4739         src/journal/coredump-vacuum.h
4740
4741 systemd_coredump_LDADD = \
4742         libsystemd-journal-internal.la \
4743         libsystemd-label.la \
4744         libsystemd-internal.la \
4745         libsystemd-shared.la
4746
4747 if HAVE_ELFUTILS
4748 systemd_coredump_SOURCES += \
4749         src/journal/stacktrace.c \
4750         src/journal/stacktrace.h
4751
4752 systemd_coredump_LDADD += \
4753         $(ELFUTILS_LIBS)
4754 endif
4755
4756 rootlibexec_PROGRAMS += \
4757         systemd-coredump
4758
4759 dist_pkgsysconf_DATA += \
4760         src/journal/coredump.conf
4761
4762 if HAVE_ACL
4763 systemd_coredump_LDADD += \
4764         libsystemd-acl.la
4765 endif
4766
4767 coredumpctl_SOURCES = \
4768         src/journal/coredumpctl.c
4769
4770 coredumpctl_LDADD = \
4771         libsystemd-journal-internal.la \
4772         libsystemd-internal.la \
4773         libsystemd-shared.la
4774
4775 bin_PROGRAMS += \
4776         coredumpctl
4777
4778 manual_tests += \
4779         test-coredump-vacuum
4780
4781 test_coredump_vacuum_SOURCES = \
4782         src/journal/test-coredump-vacuum.c  \
4783         src/journal/coredump-vacuum.c \
4784         src/journal/coredump-vacuum.h
4785
4786 test_coredump_vacuum_LDADD = \
4787         libsystemd-internal.la \
4788         libsystemd-shared.la
4789
4790 dist_bashcompletion_DATA += \
4791         shell-completion/bash/coredumpctl
4792
4793 dist_zshcompletion_DATA += \
4794         shell-completion/zsh/_coredumpctl
4795
4796 sysctl_DATA = \
4797         sysctl.d/50-coredump.conf
4798
4799 CLEANFILES += \
4800         sysctl.d/50-coredump.conf
4801 endif
4802
4803 EXTRA_DIST += \
4804         sysctl.d/50-coredump.conf.in
4805
4806 # ------------------------------------------------------------------------------
4807 if ENABLE_BINFMT
4808 systemd_binfmt_SOURCES = \
4809         src/binfmt/binfmt.c
4810
4811 systemd_binfmt_LDADD = \
4812         libsystemd-shared.la
4813
4814 rootlibexec_PROGRAMS += \
4815         systemd-binfmt
4816
4817 dist_systemunit_DATA += \
4818         units/proc-sys-fs-binfmt_misc.automount \
4819         units/proc-sys-fs-binfmt_misc.mount
4820
4821 nodist_systemunit_DATA += \
4822         units/systemd-binfmt.service
4823
4824 INSTALL_DIRS += \
4825         $(prefix)/lib/binfmt.d \
4826         $(sysconfdir)/binfmt.d
4827
4828 SYSINIT_TARGET_WANTS += \
4829         systemd-binfmt.service \
4830         proc-sys-fs-binfmt_misc.automount
4831
4832 endif
4833
4834 EXTRA_DIST += \
4835         units/systemd-binfmt.service.in
4836
4837 # ------------------------------------------------------------------------------
4838 if ENABLE_VCONSOLE
4839 systemd_vconsole_setup_SOURCES = \
4840         src/vconsole/vconsole-setup.c
4841
4842 systemd_vconsole_setup_LDADD = \
4843         libsystemd-shared.la
4844
4845 rootlibexec_PROGRAMS += \
4846         systemd-vconsole-setup
4847
4848 nodist_systemunit_DATA += \
4849         units/systemd-vconsole-setup.service
4850
4851 nodist_udevrules_DATA += \
4852         src/vconsole/90-vconsole.rules
4853
4854 SYSINIT_TARGET_WANTS += \
4855         systemd-vconsole-setup.service
4856
4857 CLEANFILES += \
4858         src/vconsole/90-vconsole.rules
4859 endif
4860
4861 EXTRA_DIST += \
4862         src/vconsole/90-vconsole.rules.in \
4863         units/systemd-vconsole-setup.service.in
4864
4865 # ------------------------------------------------------------------------------
4866 if ENABLE_BOOTCHART
4867 systemd_bootchart_SOURCES = \
4868         src/bootchart/bootchart.c \
4869         src/bootchart/bootchart.h \
4870         src/bootchart/store.c \
4871         src/bootchart/store.h \
4872         src/bootchart/svg.c \
4873         src/bootchart/svg.h
4874
4875 systemd_bootchart_LDADD = \
4876         libsystemd-journal-internal.la \
4877         libsystemd-shared.la
4878
4879 rootlibexec_PROGRAMS += \
4880         systemd-bootchart
4881
4882 dist_pkgsysconf_DATA += \
4883         src/bootchart/bootchart.conf
4884
4885 nodist_systemunit_DATA += \
4886         units/systemd-bootchart.service
4887
4888 EXTRA_DIST += \
4889         units/systemd-bootchart.service.in
4890
4891 CLEANFILES += \
4892         units/systemd-bootchart.service
4893 endif
4894
4895 # ------------------------------------------------------------------------------
4896 if ENABLE_QUOTACHECK
4897 rootlibexec_PROGRAMS += \
4898         systemd-quotacheck
4899
4900 nodist_systemunit_DATA += \
4901         units/systemd-quotacheck.service
4902
4903 systemd_quotacheck_SOURCES = \
4904         src/quotacheck/quotacheck.c
4905
4906 systemd_quotacheck_LDADD = \
4907         libsystemd-shared.la
4908 endif
4909
4910 EXTRA_DIST += \
4911         units/systemd-quotacheck.service.in
4912
4913 nodist_systemunit_DATA += \
4914         units/quotaon.service
4915
4916 # ------------------------------------------------------------------------------
4917 if ENABLE_RANDOMSEED
4918 rootlibexec_PROGRAMS += \
4919         systemd-random-seed
4920
4921 nodist_systemunit_DATA += \
4922         units/systemd-random-seed.service
4923
4924 systemd_random_seed_SOURCES = \
4925         src/random-seed/random-seed.c
4926
4927 systemd_random_seed_LDADD = \
4928         libsystemd-label.la \
4929         libsystemd-shared.la
4930
4931 SYSINIT_TARGET_WANTS += \
4932         systemd-random-seed.service
4933
4934 endif
4935
4936 EXTRA_DIST += \
4937         units/systemd-random-seed.service.in
4938
4939 # ------------------------------------------------------------------------------
4940 if ENABLE_BACKLIGHT
4941 rootlibexec_PROGRAMS += \
4942         systemd-backlight
4943
4944 nodist_systemunit_DATA += \
4945         units/systemd-backlight@.service
4946
4947 systemd_backlight_SOURCES = \
4948         src/backlight/backlight.c
4949
4950 systemd_backlight_LDADD = \
4951         libsystemd-label.la \
4952         libudev-internal.la \
4953         libsystemd-shared.la
4954 endif
4955
4956 EXTRA_DIST += \
4957         units/systemd-backlight@.service.in
4958
4959 # ------------------------------------------------------------------------------
4960 if ENABLE_RFKILL
4961 rootlibexec_PROGRAMS += \
4962         systemd-rfkill
4963
4964 nodist_systemunit_DATA += \
4965         units/systemd-rfkill@.service
4966
4967 systemd_rfkill_SOURCES = \
4968         src/rfkill/rfkill.c
4969
4970 systemd_rfkill_LDADD = \
4971         libsystemd-label.la \
4972         libudev-internal.la \
4973         libsystemd-shared.la
4974 endif
4975
4976 EXTRA_DIST += \
4977         units/systemd-rfkill@.service.in
4978
4979 # ------------------------------------------------------------------------------
4980 if HAVE_LIBCRYPTSETUP
4981 rootlibexec_PROGRAMS += \
4982         systemd-cryptsetup
4983
4984 systemgenerator_PROGRAMS += \
4985         systemd-cryptsetup-generator
4986
4987 dist_systemunit_DATA += \
4988         units/cryptsetup.target \
4989         units/cryptsetup-pre.target
4990
4991 systemd_cryptsetup_SOURCES = \
4992         src/cryptsetup/cryptsetup.c
4993
4994 systemd_cryptsetup_CFLAGS = \
4995         $(AM_CFLAGS) \
4996         $(LIBCRYPTSETUP_CFLAGS)
4997
4998 systemd_cryptsetup_LDADD = \
4999         libsystemd-label.la \
5000         libudev-internal.la \
5001         libsystemd-shared.la \
5002         $(LIBCRYPTSETUP_LIBS)
5003
5004 systemd_cryptsetup_generator_SOURCES = \
5005         src/cryptsetup/cryptsetup-generator.c
5006
5007 systemd_cryptsetup_generator_LDADD = \
5008         libsystemd-label.la \
5009         libsystemd-shared.la
5010
5011 SYSINIT_TARGET_WANTS += \
5012         cryptsetup.target
5013
5014 endif
5015
5016 # ------------------------------------------------------------------------------
5017 if ENABLE_HOSTNAMED
5018 systemd_hostnamed_SOURCES = \
5019         src/hostname/hostnamed.c
5020
5021 systemd_hostnamed_LDADD = \
5022         libsystemd-label.la \
5023         libsystemd-internal.la \
5024         libsystemd-shared.la
5025
5026 rootlibexec_PROGRAMS += \
5027         systemd-hostnamed
5028
5029 nodist_systemunit_DATA += \
5030         units/systemd-hostnamed.service
5031
5032 dist_systemunit_DATA_busnames += \
5033         units/org.freedesktop.hostname1.busname
5034
5035 dist_dbuspolicy_DATA += \
5036         src/hostname/org.freedesktop.hostname1.conf
5037
5038 dist_dbussystemservice_DATA += \
5039         src/hostname/org.freedesktop.hostname1.service
5040
5041 polkitpolicy_files += \
5042         src/hostname/org.freedesktop.hostname1.policy
5043
5044 SYSTEM_UNIT_ALIASES += \
5045         systemd-hostnamed.service dbus-org.freedesktop.hostname1.service
5046
5047 BUSNAMES_TARGET_WANTS += \
5048         org.freedesktop.hostname1.busname
5049
5050 hostnamectl_SOURCES = \
5051         src/hostname/hostnamectl.c
5052
5053 hostnamectl_LDADD = \
5054         libsystemd-internal.la \
5055         libsystemd-shared.la
5056
5057 bin_PROGRAMS += \
5058         hostnamectl
5059
5060 dist_bashcompletion_DATA += \
5061         shell-completion/bash/hostnamectl
5062
5063 dist_zshcompletion_DATA += \
5064         shell-completion/zsh/_hostnamectl
5065
5066 endif
5067
5068 polkitpolicy_in_files += \
5069         src/hostname/org.freedesktop.hostname1.policy.in
5070
5071 EXTRA_DIST += \
5072         units/systemd-hostnamed.service.in
5073
5074 # ------------------------------------------------------------------------------
5075 dist_systemunit_DATA_busnames += \
5076         units/org.freedesktop.systemd1.busname
5077
5078 BUSNAMES_TARGET_WANTS += \
5079         org.freedesktop.systemd1.busname
5080
5081 # ------------------------------------------------------------------------------
5082 if ENABLE_LOCALED
5083 systemd_localed_SOURCES = \
5084         src/locale/localed.c
5085
5086 systemd_localed_LDADD = \
5087         libsystemd-label.la \
5088         libsystemd-internal.la \
5089         libsystemd-shared.la \
5090         $(XKBCOMMON_LIBS)
5091
5092 systemd_localed_CFLAGS = \
5093         $(AM_CFLAGS) \
5094         $(XKBCOMMON_CFLAGS)
5095
5096 nodist_systemunit_DATA += \
5097         units/systemd-localed.service
5098
5099 dist_systemunit_DATA_busnames += \
5100         units/org.freedesktop.locale1.busname
5101
5102 rootlibexec_PROGRAMS += \
5103         systemd-localed
5104
5105 dist_dbuspolicy_DATA += \
5106         src/locale/org.freedesktop.locale1.conf
5107
5108 dist_dbussystemservice_DATA += \
5109         src/locale/org.freedesktop.locale1.service
5110
5111 polkitpolicy_files += \
5112         src/locale/org.freedesktop.locale1.policy
5113
5114 SYSTEM_UNIT_ALIASES += \
5115         systemd-localed.service dbus-org.freedesktop.locale1.service
5116
5117 BUSNAMES_TARGET_WANTS += \
5118         org.freedesktop.locale1.busname
5119
5120 dist_pkgdata_DATA += \
5121         src/locale/kbd-model-map \
5122         src/locale/language-fallback-map
5123
5124 localectl_SOURCES = \
5125         src/locale/localectl.c
5126
5127 localectl_LDADD = \
5128         libsystemd-internal.la \
5129         libsystemd-shared.la
5130
5131 bin_PROGRAMS += \
5132         localectl
5133
5134 dist_bashcompletion_DATA += \
5135         shell-completion/bash/localectl
5136
5137 dist_zshcompletion_DATA += \
5138         shell-completion/zsh/_localectl
5139
5140 endif
5141
5142 .PHONY: update-kbd-model-map
5143
5144 polkitpolicy_in_files += \
5145         src/locale/org.freedesktop.locale1.policy.in
5146
5147 EXTRA_DIST += \
5148         units/systemd-localed.service.in
5149
5150 # ------------------------------------------------------------------------------
5151 if ENABLE_TIMEDATED
5152 systemd_timedated_SOURCES = \
5153         src/timedate/timedated.c
5154
5155 systemd_timedated_LDADD = \
5156         libsystemd-label.la \
5157         libsystemd-internal.la \
5158         libsystemd-shared.la
5159
5160 rootlibexec_PROGRAMS += \
5161         systemd-timedated
5162
5163 dist_dbussystemservice_DATA += \
5164         src/timedate/org.freedesktop.timedate1.service
5165
5166 dist_dbuspolicy_DATA += \
5167         src/timedate/org.freedesktop.timedate1.conf
5168
5169 nodist_systemunit_DATA += \
5170         units/systemd-timedated.service
5171
5172 dist_systemunit_DATA_busnames += \
5173         units/org.freedesktop.timedate1.busname
5174
5175 polkitpolicy_files += \
5176         src/timedate/org.freedesktop.timedate1.policy
5177
5178 SYSTEM_UNIT_ALIASES += \
5179         systemd-timedated.service dbus-org.freedesktop.timedate1.service
5180
5181 BUSNAMES_TARGET_WANTS += \
5182         org.freedesktop.timedate1.busname
5183
5184 timedatectl_SOURCES = \
5185         src/timedate/timedatectl.c
5186
5187 timedatectl_LDADD = \
5188         libsystemd-internal.la \
5189         libsystemd-shared.la
5190
5191 bin_PROGRAMS += \
5192         timedatectl
5193
5194 dist_bashcompletion_DATA += \
5195         shell-completion/bash/timedatectl
5196
5197 dist_zshcompletion_DATA += \
5198         shell-completion/zsh/_timedatectl
5199 endif
5200
5201 polkitpolicy_in_files += \
5202         src/timedate/org.freedesktop.timedate1.policy.in
5203
5204 EXTRA_DIST += \
5205         units/systemd-timedated.service.in
5206
5207 # ------------------------------------------------------------------------------
5208 if ENABLE_TIMESYNCD
5209 systemd_timesyncd_SOURCES = \
5210         src/timesync/timesyncd.c \
5211         src/timesync/timesyncd-manager.c \
5212         src/timesync/timesyncd-manager.h \
5213         src/timesync/timesyncd-conf.c \
5214         src/timesync/timesyncd-conf.h \
5215         src/timesync/timesyncd-server.c \
5216         src/timesync/timesyncd-server.h
5217
5218 nodist_systemd_timesyncd_SOURCES = \
5219         src/timesync/timesyncd-gperf.c
5220
5221 EXTRA_DIST += \
5222         src/timesync/timesyncd-gperf.gperf
5223
5224 CLEANFILES += \
5225         src/timesync/timesyncd-gperf.c
5226
5227 systemd_timesyncd_LDADD = \
5228         libsystemd-resolve.la \
5229         libsystemd-network.la \
5230         libsystemd-label.la \
5231         libsystemd-internal.la \
5232         libsystemd-shared.la
5233
5234 rootlibexec_PROGRAMS += \
5235         systemd-timesyncd
5236
5237 nodist_systemunit_DATA += \
5238         units/systemd-timesyncd.service
5239
5240 GENERAL_ALIASES += \
5241         $(systemunitdir)/systemd-timesyncd.service $(pkgsysconfdir)/system/sysinit.target.wants/systemd-timesyncd.service
5242
5243 EXTRA_DIST += \
5244         units/systemd-timesyncd.service.in
5245
5246 nodist_pkgsysconf_DATA += \
5247         src/timesync/timesyncd.conf
5248
5249 EXTRA_DIST += \
5250         src/timesync/timesyncd.conf.in
5251
5252 CLEANFILES += \
5253         src/timesync/timesyncd.conf
5254 endif
5255
5256 # ------------------------------------------------------------------------------
5257 if HAVE_MYHOSTNAME
5258 libnss_myhostname_la_SOURCES = \
5259         src/nss-myhostname/nss-myhostname.sym \
5260         src/nss-myhostname/nss-myhostname.c
5261
5262 libnss_myhostname_la_LDFLAGS = \
5263         $(AM_LDFLAGS) \
5264         -module \
5265         -export-dynamic \
5266         -avoid-version \
5267         -shared \
5268         -shrext .so.2 \
5269         -Wl,--version-script=$(top_srcdir)/src/nss-myhostname/nss-myhostname.sym
5270
5271 libnss_myhostname_la_LIBADD = \
5272         libsystemd-shared.la \
5273         libsystemd-internal.la
5274
5275 lib_LTLIBRARIES += \
5276         libnss_myhostname.la
5277 endif
5278
5279 # ------------------------------------------------------------------------------
5280 if ENABLE_MACHINED
5281 systemd_machined_SOURCES = \
5282         src/machine/machined.c \
5283         src/machine/machined.h
5284
5285 systemd_machined_LDADD = \
5286         libsystemd-machine-core.la
5287
5288 rootlibexec_PROGRAMS += \
5289         systemd-machined
5290
5291 libsystemd_machine_core_la_SOURCES = \
5292         src/machine/machine.c \
5293         src/machine/machine.h \
5294         src/machine/machined-dbus.c \
5295         src/machine/machine-dbus.c \
5296         src/machine/machine-dbus.h \
5297         src/machine/image-dbus.c \
5298         src/machine/image-dbus.h
5299
5300 libsystemd_machine_core_la_LIBADD = \
5301         libsystemd-label.la \
5302         libsystemd-internal.la \
5303         libudev-internal.la \
5304         libsystemd-shared.la
5305
5306 noinst_LTLIBRARIES += \
5307         libsystemd-machine-core.la
5308
5309 machinectl_SOURCES = \
5310         src/machine/machinectl.c
5311
5312 machinectl_LDADD = \
5313         libsystemd-internal.la \
5314         libsystemd-logs.la \
5315         libsystemd-journal-internal.la \
5316         libsystemd-shared.la
5317
5318 rootbin_PROGRAMS += \
5319         machinectl
5320
5321 dist_bashcompletion_DATA += \
5322         shell-completion/bash/machinectl
5323
5324 test_machine_tables_SOURCES = \
5325         src/machine/test-machine-tables.c
5326
5327 test_machine_tables_LDADD = \
5328         libsystemd-machine-core.la
5329
5330 tests += \
5331         test-machine-tables
5332
5333 nodist_systemunit_DATA += \
5334         units/systemd-machined.service
5335
5336 dist_systemunit_DATA += \
5337         units/machine.slice
5338
5339 dist_systemunit_DATA_busnames += \
5340         units/org.freedesktop.machine1.busname
5341
5342 dist_dbussystemservice_DATA += \
5343         src/machine/org.freedesktop.machine1.service
5344
5345 dist_dbuspolicy_DATA += \
5346         src/machine/org.freedesktop.machine1.conf
5347
5348 polkitpolicy_files += \
5349         src/machine/org.freedesktop.machine1.policy
5350
5351 polkitpolicy_in_files += \
5352         src/machine/org.freedesktop.machine1.policy.in
5353
5354 dist_zshcompletion_DATA += \
5355         shell-completion/zsh/_machinectl \
5356         shell-completion/zsh/_sd_machines
5357
5358 SYSTEM_UNIT_ALIASES += \
5359         systemd-machined.service dbus-org.freedesktop.machine1.service
5360
5361 BUSNAMES_TARGET_WANTS += \
5362         org.freedesktop.machine1.busname
5363
5364 EXTRA_DIST += \
5365         units/systemd-machined.service.in
5366
5367 libnss_mymachines_la_SOURCES = \
5368         src/nss-mymachines/nss-mymachines.sym \
5369         src/nss-mymachines/nss-mymachines.c
5370
5371 libnss_mymachines_la_LDFLAGS = \
5372         $(AM_LDFLAGS) \
5373         -module \
5374         -export-dynamic \
5375         -avoid-version \
5376         -shared \
5377         -shrext .so.2 \
5378         -Wl,--version-script=$(top_srcdir)/src/nss-mymachines/nss-mymachines.sym
5379
5380 libnss_mymachines_la_LIBADD = \
5381         libsystemd-shared.la \
5382         libsystemd-internal.la
5383
5384 lib_LTLIBRARIES += \
5385         libnss_mymachines.la
5386
5387 endif
5388
5389 # ------------------------------------------------------------------------------
5390 if ENABLE_IMPORTD
5391
5392 if HAVE_LIBCURL
5393 if HAVE_XZ
5394 if HAVE_ZLIB
5395 if HAVE_BZIP2
5396 if HAVE_GCRYPT
5397
5398 rootlibexec_PROGRAMS += \
5399         systemd-importd \
5400         systemd-pull
5401
5402 systemd_importd_SOURCES = \
5403         src/import/importd.c
5404
5405 systemd_importd_CFLAGS = \
5406         $(AM_CFLAGS) \
5407         -D SYSTEMD_PULL_PATH=\"$(rootlibexecdir)/systemd-pull\"
5408
5409 systemd_importd_LDADD = \
5410         libsystemd-internal.la \
5411         libsystemd-label.la \
5412         libsystemd-shared.la
5413
5414 systemd_pull_SOURCES = \
5415         src/import/pull.c \
5416         src/import/import-raw.c \
5417         src/import/import-raw.h \
5418         src/import/import-tar.c \
5419         src/import/import-tar.h \
5420         src/import/import-dkr.c \
5421         src/import/import-dkr.h \
5422         src/import/import-job.c \
5423         src/import/import-job.h \
5424         src/import/import-common.c \
5425         src/import/import-common.h \
5426         src/import/curl-util.c \
5427         src/import/curl-util.h \
5428         src/import/aufs-util.c \
5429         src/import/aufs-util.h \
5430         src/import/qcow2-util.c \
5431         src/import/qcow2-util.h
5432
5433 systemd_pull_CFLAGS = \
5434         $(AM_CFLAGS) \
5435         $(LIBCURL_CFLAGS) \
5436         $(XZ_CFLAGS) \
5437         $(ZLIB_CFLAGS) \
5438         $(GCRYPT_CFLAGS) \
5439         -D VENDOR_KEYRING_PATH=\"$(rootlibexecdir)/import-pubring.gpg\" \
5440         -D USER_KEYRING_PATH=\"$(pkgsysconfdir)/import-pubring.gpg\"
5441
5442 systemd_pull_LDADD = \
5443         libsystemd-internal.la \
5444         libsystemd-label.la \
5445         libsystemd-shared.la \
5446         $(LIBCURL_LIBS) \
5447         $(XZ_LIBS) \
5448         $(ZLIB_LIBS) \
5449         -lbz2 \
5450         $(GCRYPT_LIBS)
5451
5452 dist_rootlibexec_DATA = \
5453         src/import/import-pubring.gpg
5454
5455 nodist_systemunit_DATA += \
5456         units/systemd-importd.service
5457
5458 EXTRA_DIST += \
5459         units/systemd-importd.service.in
5460
5461 dist_systemunit_DATA_busnames += \
5462         units/org.freedesktop.import1.busname
5463
5464 BUSNAMES_TARGET_WANTS += \
5465         org.freedesktop.import1.busname
5466
5467 SYSTEM_UNIT_ALIASES += \
5468         systemd-importd.service dbus-org.freedesktop.import1.service
5469
5470 dist_dbussystemservice_DATA += \
5471         src/import/org.freedesktop.import1.service
5472
5473 dist_dbuspolicy_DATA += \
5474         src/import/org.freedesktop.import1.conf
5475
5476 polkitpolicy_files += \
5477         src/import/org.freedesktop.import1.policy
5478
5479 polkitpolicy_in_files += \
5480         src/import/org.freedesktop.import1.policy.in
5481
5482 manual_tests += \
5483         test-qcow2
5484
5485 test_qcow2_SOURCES = \
5486         src/import/test-qcow2.c \
5487         src/import/qcow2-util.c \
5488         src/import/qcow2-util.h
5489
5490 test_qcow2_CFLAGS = \
5491         $(AM_CFLAGS) \
5492         $(ZLIB_CFLAGS)
5493
5494 test_qcow2_LDADD = \
5495         libsystemd-internal.la \
5496         libsystemd-label.la \
5497         libsystemd-shared.la \
5498         $(ZLIB_LIBS)
5499
5500 endif
5501 endif
5502 endif
5503 endif
5504 endif
5505
5506 endif
5507
5508 # ------------------------------------------------------------------------------
5509 if ENABLE_RESOLVED
5510 systemd_resolved_SOURCES = \
5511         src/resolve/resolved.c \
5512         src/resolve/resolved-manager.c \
5513         src/resolve/resolved-manager.h \
5514         src/resolve/resolved-conf.c \
5515         src/resolve/resolved-conf.h \
5516         src/resolve/resolved-bus.c \
5517         src/resolve/resolved-bus.h \
5518         src/resolve/resolved-link.h \
5519         src/resolve/resolved-link.c \
5520         src/resolve/resolved-def.h \
5521         src/resolve/resolved-dns-domain.h \
5522         src/resolve/resolved-dns-domain.c \
5523         src/resolve/resolved-dns-rr.h \
5524         src/resolve/resolved-dns-rr.c \
5525         src/resolve/resolved-dns-question.h \
5526         src/resolve/resolved-dns-question.c \
5527         src/resolve/resolved-dns-answer.h \
5528         src/resolve/resolved-dns-answer.c \
5529         src/resolve/resolved-dns-packet.h \
5530         src/resolve/resolved-dns-packet.c \
5531         src/resolve/resolved-dns-query.h \
5532         src/resolve/resolved-dns-query.c \
5533         src/resolve/resolved-dns-transaction.h \
5534         src/resolve/resolved-dns-transaction.c \
5535         src/resolve/resolved-dns-scope.h \
5536         src/resolve/resolved-dns-scope.c \
5537         src/resolve/resolved-dns-server.h \
5538         src/resolve/resolved-dns-server.c \
5539         src/resolve/resolved-dns-cache.h \
5540         src/resolve/resolved-dns-cache.c \
5541         src/resolve/resolved-dns-zone.h \
5542         src/resolve/resolved-dns-zone.c \
5543         src/resolve/resolved-dns-stream.h \
5544         src/resolve/resolved-dns-stream.c \
5545         src/resolve/dns-type.c \
5546         src/resolve/dns-type.h \
5547         src/resolve/dns_type-from-name.h \
5548         src/resolve/dns_type-to-name.h
5549
5550 nodist_systemd_resolved_SOURCES = \
5551         src/resolve/resolved-gperf.c
5552
5553 EXTRA_DIST += \
5554         src/resolve/resolved-gperf.gperf \
5555         src/resolve/dns_type-from-name.gperf
5556
5557 CLEANFILES += \
5558         src/resolve/resolved-gperf.c
5559
5560 systemd_resolved_LDADD = \
5561         libsystemd-network.la \
5562         libsystemd-label.la \
5563         libsystemd-internal.la \
5564         libsystemd-shared.la \
5565         $(LIBIDN_LIBS)
5566
5567 rootlibexec_PROGRAMS += \
5568         systemd-resolved
5569
5570 nodist_systemunit_DATA += \
5571         units/systemd-resolved.service
5572
5573 dist_systemunit_DATA_busnames += \
5574         units/org.freedesktop.resolve1.busname
5575
5576 dist_dbuspolicy_DATA += \
5577         src/resolve/org.freedesktop.resolve1.conf
5578
5579 dist_dbussystemservice_DATA += \
5580         src/resolve/org.freedesktop.resolve1.service
5581
5582 EXTRA_DIST += \
5583         units/systemd-resolved.service.in
5584
5585 SYSTEM_UNIT_ALIASES += \
5586         systemd-resolved.service dbus-org.freedesktop.resolve1.service
5587
5588 BUSNAMES_TARGET_WANTS += \
5589         org.freedesktop.resolve1.busname
5590
5591 GENERAL_ALIASES += \
5592         $(systemunitdir)/systemd-resolved.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-resolved.service
5593
5594 nodist_pkgsysconf_DATA += \
5595         src/resolve/resolved.conf
5596
5597 EXTRA_DIST += \
5598         src/resolve/resolved.conf.in
5599
5600 CLEANFILES += \
5601         src/resolve/resolved.conf
5602
5603 tests += \
5604         test-dns-domain
5605
5606 test_dns_domain_SOURCES = \
5607         src/resolve/resolved-dns-domain.h \
5608         src/resolve/resolved-dns-domain.c \
5609         src/resolve/test-dns-domain.c
5610
5611 test_dns_domain_LDADD = \
5612         libsystemd-network.la \
5613         libsystemd-label.la \
5614         libsystemd-internal.la \
5615         libsystemd-shared.la \
5616         $(LIBIDN_LIBS)
5617
5618 libnss_resolve_la_SOURCES = \
5619         src/nss-resolve/nss-resolve.sym \
5620         src/nss-resolve/nss-resolve.c
5621
5622 libnss_resolve_la_LDFLAGS = \
5623         $(AM_LDFLAGS) \
5624         -module \
5625         -export-dynamic \
5626         -avoid-version \
5627         -shared \
5628         -shrext .so.2 \
5629         -Wl,--version-script=$(top_srcdir)/src/nss-resolve/nss-resolve.sym
5630
5631 libnss_resolve_la_LIBADD = \
5632         libsystemd-internal.la \
5633         libsystemd-shared.la
5634
5635 lib_LTLIBRARIES += \
5636         libnss_resolve.la
5637
5638 systemd_resolve_host_SOURCES = \
5639         src/resolve-host/resolve-host.c \
5640         src/resolve/resolved-dns-packet.c \
5641         src/resolve/resolved-dns-packet.h \
5642         src/resolve/resolved-dns-rr.c \
5643         src/resolve/resolved-dns-rr.h \
5644         src/resolve/resolved-dns-answer.c \
5645         src/resolve/resolved-dns-answer.h \
5646         src/resolve/resolved-dns-question.c \
5647         src/resolve/resolved-dns-question.h \
5648         src/resolve/resolved-dns-domain.c \
5649         src/resolve/resolved-dns-domain.h \
5650         src/resolve/dns-type.c \
5651         src/resolve/dns-type.h \
5652         src/resolve/dns_type-from-name.h \
5653         src/resolve/dns_type-to-name.h
5654
5655 systemd_resolve_host_LDADD = \
5656         libsystemd-internal.la \
5657         libsystemd-shared.la \
5658         $(LIBIDN_LIBS)
5659
5660 rootlibexec_PROGRAMS += \
5661         systemd-resolve-host
5662
5663 endif
5664
5665 # ------------------------------------------------------------------------------
5666 if ENABLE_NETWORKD
5667 rootlibexec_PROGRAMS += \
5668         systemd-networkd
5669
5670 systemd_networkd_SOURCES = \
5671         src/network/networkd.c
5672
5673 systemd_networkd_LDADD = \
5674         libsystemd-networkd-core.la
5675
5676 if HAVE_LIBIPTC
5677 systemd_networkd_LDADD += \
5678         libsystemd-fw.la
5679 endif
5680
5681 noinst_LTLIBRARIES += \
5682         libsystemd-networkd-core.la
5683
5684 libsystemd_networkd_core_la_CFLAGS = \
5685         $(AM_CFLAGS)
5686
5687 libsystemd_networkd_core_la_SOURCES = \
5688         src/libsystemd-network/network-internal.h \
5689         src/network/networkd.h \
5690         src/network/networkd-link.h \
5691         src/network/networkd-netdev.h \
5692         src/network/networkd-netdev-tunnel.h \
5693         src/network/networkd-netdev-veth.h \
5694         src/network/networkd-netdev-vxlan.h \
5695         src/network/networkd-netdev-vlan.h \
5696         src/network/networkd-netdev-macvlan.h \
5697         src/network/networkd-netdev-ipvlan.h \
5698         src/network/networkd-netdev-dummy.h \
5699         src/network/networkd-netdev-tuntap.h \
5700         src/network/networkd-netdev-bond.h \
5701         src/network/networkd-netdev-bridge.h \
5702         src/network/networkd-netdev.c \
5703         src/network/networkd-netdev-tunnel.c \
5704         src/network/networkd-netdev-veth.c \
5705         src/network/networkd-netdev-vxlan.c \
5706         src/network/networkd-netdev-vlan.c \
5707         src/network/networkd-netdev-macvlan.c \
5708         src/network/networkd-netdev-ipvlan.c \
5709         src/network/networkd-netdev-dummy.c \
5710         src/network/networkd-netdev-tuntap.c \
5711         src/network/networkd-netdev-bond.c \
5712         src/network/networkd-netdev-bridge.c \
5713         src/network/networkd-link.c \
5714         src/network/networkd-link-bus.c \
5715         src/network/networkd-ipv4ll.c \
5716         src/network/networkd-dhcp4.c \
5717         src/network/networkd-dhcp6.c \
5718         src/network/networkd-network.c \
5719         src/network/networkd-network-bus.c \
5720         src/network/networkd-address.c \
5721         src/network/networkd-route.c \
5722         src/network/networkd-manager.c \
5723         src/network/networkd-manager-bus.c \
5724         src/network/networkd-fdb.c \
5725         src/network/networkd-address-pool.c
5726
5727 nodist_libsystemd_networkd_core_la_SOURCES = \
5728         src/network/networkd-network-gperf.c \
5729         src/network/networkd-netdev-gperf.c
5730
5731 libsystemd_networkd_core_la_LIBADD = \
5732         libudev-internal.la \
5733         libsystemd-internal.la \
5734         libsystemd-network.la \
5735         libsystemd-label.la \
5736         libsystemd-shared.la
5737
5738 rootlibexec_PROGRAMS += \
5739         systemd-networkd-wait-online
5740
5741 systemd_networkd_wait_online_CFLAGS = \
5742         $(AM_CFLAGS)
5743
5744 systemd_networkd_wait_online_SOURCES = \
5745         src/libsystemd-network/network-internal.h \
5746         src/network/networkd-wait-online.h \
5747         src/network/networkd-wait-online-link.h \
5748         src/network/networkd-wait-online.c \
5749         src/network/networkd-wait-online-manager.c \
5750         src/network/networkd-wait-online-link.c
5751
5752 systemd_networkd_wait_online_LDADD = \
5753         libsystemd-network.la \
5754         libudev-internal.la \
5755         libsystemd-internal.la \
5756         libsystemd-shared.la
5757
5758 rootbin_PROGRAMS += \
5759         networkctl
5760
5761 networkctl_SOURCES = \
5762         src/network/networkctl.c
5763
5764 networkctl_LDADD = \
5765         libsystemd-internal.la \
5766         libudev-internal.la \
5767         libsystemd-shared.la \
5768         libsystemd-network.la
5769
5770 test_network_SOURCES = \
5771         src/network/test-network.c
5772
5773 test_network_LDADD = \
5774         libsystemd-networkd-core.la
5775
5776 if HAVE_LIBIPTC
5777 test_network_LDADD += \
5778         libsystemd-fw.la
5779 endif
5780
5781 test_network_tables_SOURCES = \
5782         src/network/test-network-tables.c \
5783         src/shared/test-tables.h
5784
5785 test_network_tables_LDADD = \
5786         libsystemd-networkd-core.la \
5787         libudev-core.la
5788
5789 if HAVE_LIBIPTC
5790 test_network_tables_LDADD += \
5791         libsystemd-fw.la
5792 endif
5793
5794 tests += \
5795         test-network \
5796         test-network-tables
5797
5798 dist_systemunit_DATA += \
5799         units/systemd-networkd.socket
5800
5801 nodist_systemunit_DATA += \
5802         units/systemd-networkd.service \
5803         units/systemd-networkd-wait-online.service
5804
5805 dist_systemunit_DATA_busnames += \
5806         units/org.freedesktop.network1.busname
5807
5808 dist_dbussystemservice_DATA += \
5809         src/network/org.freedesktop.network1.service
5810
5811 dist_dbuspolicy_DATA += \
5812         src/network/org.freedesktop.network1.conf
5813
5814 GENERAL_ALIASES += \
5815         $(systemunitdir)/systemd-networkd.socket $(pkgsysconfdir)/system/sockets.target.wants/systemd-networkd.socket \
5816         $(systemunitdir)/systemd-networkd.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-networkd.service \
5817         $(systemunitdir)/systemd-networkd-wait-online.service $(pkgsysconfdir)/system/network-online.target.wants/systemd-networkd-wait-online.service
5818
5819 SYSTEM_UNIT_ALIASES += \
5820         systemd-networkd.service dbus-org.freedesktop.network1.service
5821
5822 BUSNAMES_TARGET_WANTS += \
5823         org.freedesktop.network1.busname
5824
5825 EXTRA_DIST += \
5826         src/network/networkd-network-gperf.gperf \
5827         src/network/networkd-netdev-gperf.gperf \
5828         units/systemd-networkd.service.in \
5829         units/systemd-networkd-wait-online.service.in
5830
5831 CLEANFILES += \
5832         src/network/networkd-network-gperf.c \
5833         src/network/networkd-netdev-gperf.c
5834 endif
5835
5836 # ------------------------------------------------------------------------------
5837 if ENABLE_LOGIND
5838 systemd_logind_SOURCES = \
5839         src/login/logind.c \
5840         src/login/logind.h
5841
5842 nodist_systemd_logind_SOURCES = \
5843         src/login/logind-gperf.c
5844
5845 systemd_logind_LDADD = \
5846         libsystemd-logind-core.la
5847
5848 libsystemd_logind_core_la_SOURCES = \
5849         src/login/logind-core.c \
5850         src/login/logind-device.c \
5851         src/login/logind-device.h \
5852         src/login/logind-button.c \
5853         src/login/logind-button.h \
5854         src/login/logind-action.c \
5855         src/login/logind-action.h \
5856         src/login/logind-seat.c \
5857         src/login/logind-seat.h \
5858         src/login/logind-session.c \
5859         src/login/logind-session.h \
5860         src/login/logind-session-device.c \
5861         src/login/logind-session-device.h \
5862         src/login/logind-user.c \
5863         src/login/logind-user.h \
5864         src/login/logind-inhibit.c \
5865         src/login/logind-inhibit.h \
5866         src/login/logind-dbus.c \
5867         src/login/logind-session-dbus.c \
5868         src/login/logind-seat-dbus.c \
5869         src/login/logind-user-dbus.c \
5870         src/login/logind-acl.h
5871
5872 libsystemd_logind_core_la_LIBADD = \
5873         libsystemd-label.la \
5874         libsystemd-internal.la \
5875         libudev-internal.la \
5876         libsystemd-shared.la
5877
5878 if HAVE_ACL
5879 libsystemd_logind_core_la_SOURCES += \
5880         src/login/logind-acl.c
5881
5882 libsystemd_logind_core_la_LIBADD += \
5883         libsystemd-acl.la
5884 endif
5885
5886 noinst_LTLIBRARIES += \
5887         libsystemd-logind-core.la
5888
5889 systemd_user_sessions_SOURCES = \
5890         src/login/user-sessions.c
5891
5892 systemd_user_sessions_LDADD = \
5893         libsystemd-shared.la
5894
5895 rootlibexec_PROGRAMS += \
5896         systemd-logind \
5897         systemd-user-sessions
5898
5899 loginctl_SOURCES = \
5900         src/login/loginctl.c \
5901         src/login/sysfs-show.h \
5902         src/login/sysfs-show.c
5903
5904 loginctl_LDADD = \
5905         libsystemd-internal.la \
5906         libsystemd-logs.la \
5907         libsystemd-journal-internal.la \
5908         libudev-internal.la \
5909         libsystemd-shared.la
5910
5911 rootbin_PROGRAMS += \
5912         loginctl
5913
5914 dist_bashcompletion_DATA += \
5915         shell-completion/bash/loginctl
5916
5917 dist_zshcompletion_DATA += \
5918         shell-completion/zsh/_loginctl \
5919         shell-completion/zsh/_systemd-inhibit
5920
5921 systemd_inhibit_SOURCES = \
5922         src/login/inhibit.c
5923
5924 systemd_inhibit_LDADD = \
5925         libsystemd-internal.la \
5926         libsystemd-shared.la
5927
5928 rootbin_PROGRAMS += \
5929         systemd-inhibit
5930
5931 test_login_SOURCES = \
5932         src/libsystemd/sd-login/test-login.c
5933
5934 test_login_LDADD = \
5935         libsystemd-internal.la \
5936         libsystemd-shared.la
5937
5938 test_login_shared_SOURCES = \
5939         src/login/test-login-shared.c
5940
5941 test_login_shared_LDADD = \
5942         libsystemd-internal.la \
5943         libsystemd-shared.la
5944
5945 test_inhibit_SOURCES = \
5946         src/login/test-inhibit.c
5947
5948 test_inhibit_LDADD = \
5949         libsystemd-internal.la \
5950         libsystemd-shared.la
5951
5952 test_login_tables_SOURCES = \
5953         src/login/test-login-tables.c
5954
5955 test_login_tables_LDADD = \
5956         libsystemd-logind-core.la
5957
5958 manual_tests += \
5959         test-login \
5960         test-inhibit
5961
5962 tests += \
5963         test-login-tables \
5964         test-login-shared
5965
5966 if HAVE_PAM
5967 pam_systemd_la_SOURCES = \
5968         src/login/pam_systemd.sym \
5969         src/login/pam_systemd.c
5970
5971 pam_systemd_la_CFLAGS = \
5972         $(AM_CFLAGS) \
5973         $(PAM_CFLAGS) \
5974         -fvisibility=hidden
5975
5976 pam_systemd_la_LDFLAGS = \
5977         $(AM_LDFLAGS) \
5978         -module \
5979         -export-dynamic \
5980         -avoid-version \
5981         -shared \
5982         -Wl,--version-script=$(top_srcdir)/src/login/pam_systemd.sym
5983
5984 pam_systemd_la_LIBADD = \
5985         libsystemd-internal.la \
5986         libsystemd-shared.la \
5987         $(PAM_LIBS)
5988
5989 pamlib_LTLIBRARIES = \
5990         pam_systemd.la
5991
5992 dist_pamconf_DATA = \
5993         src/login/systemd-user
5994 endif
5995
5996 nodist_systemunit_DATA += \
5997         units/systemd-logind.service \
5998         units/systemd-user-sessions.service
5999
6000 dist_systemunit_DATA += \
6001         units/user.slice
6002
6003 dist_systemunit_DATA_busnames += \
6004         units/org.freedesktop.login1.busname
6005
6006 dist_dbussystemservice_DATA += \
6007         src/login/org.freedesktop.login1.service
6008
6009 dist_dbuspolicy_DATA += \
6010         src/login/org.freedesktop.login1.conf
6011
6012 dist_pkgsysconf_DATA += \
6013         src/login/logind.conf
6014
6015 polkitpolicy_files += \
6016         src/login/org.freedesktop.login1.policy
6017
6018 INSTALL_DIRS += \
6019         $(systemdstatedir)
6020
6021 MULTI_USER_TARGET_WANTS += \
6022         systemd-logind.service \
6023         systemd-user-sessions.service
6024
6025 SYSTEM_UNIT_ALIASES += \
6026         systemd-logind.service dbus-org.freedesktop.login1.service
6027
6028 BUSNAMES_TARGET_WANTS += \
6029         org.freedesktop.login1.busname
6030
6031 dist_udevrules_DATA += \
6032         src/login/70-uaccess.rules \
6033         src/login/70-power-switch.rules
6034
6035 nodist_udevrules_DATA += \
6036         src/login/71-seat.rules \
6037         src/login/73-seat-late.rules
6038
6039 CLEANFILES += \
6040         src/login/logind-gperf.c \
6041         src/login/71-seat.rules \
6042         src/login/73-seat-late.rules
6043 endif
6044
6045 polkitpolicy_in_files += \
6046         src/login/org.freedesktop.login1.policy.in
6047
6048 EXTRA_DIST += \
6049         src/login/logind-gperf.gperf \
6050         src/login/71-seat.rules.in \
6051         src/login/73-seat-late.rules.in \
6052         units/systemd-logind.service.in \
6053         units/systemd-user-sessions.service.in
6054
6055 # ------------------------------------------------------------------------------
6056 if HAVE_PYTHON_DEVEL
6057 pkgpyexec_LTLIBRARIES = \
6058         _journal.la \
6059         id128.la \
6060         _daemon.la \
6061         _reader.la \
6062         login.la
6063
6064 _journal_la_SOURCES = \
6065         src/python-systemd/_journal.c
6066
6067 _journal_la_CFLAGS = \
6068         $(AM_CFLAGS) \
6069         -fvisibility=default \
6070         $(PYTHON_DEVEL_CFLAGS)
6071
6072 _journal_la_LDFLAGS = \
6073         $(AM_LDFLAGS) \
6074         -shared \
6075         -module \
6076         -avoid-version
6077
6078 _journal_la_LIBADD = \
6079         $(PYTHON_DEVEL_LIBS) \
6080         libsystemd.la
6081
6082 id128_la_SOURCES = \
6083         src/python-systemd/id128.c \
6084         src/python-systemd/pyutil.c \
6085         src/python-systemd/pyutil.h
6086
6087 nodist_id128_la_SOURCES = \
6088         src/python-systemd/id128-constants.h
6089
6090 id128_la_CFLAGS = \
6091         $(AM_CFLAGS) \
6092         -fvisibility=default \
6093         $(PYTHON_DEVEL_CFLAGS) \
6094         -I$(top_builddir)/src/python-systemd
6095
6096 id128_la_LDFLAGS = \
6097         $(AM_LDFLAGS) \
6098         -shared \
6099         -module \
6100         -avoid-version
6101
6102 id128_la_LIBADD = \
6103         $(PYTHON_DEVEL_LIBS) \
6104         libsystemd-shared.la \
6105         libsystemd.la
6106
6107 _daemon_la_SOURCES = \
6108         src/python-systemd/_daemon.c \
6109         src/python-systemd/pyutil.c \
6110         src/python-systemd/pyutil.h
6111
6112 _daemon_la_CFLAGS = \
6113         $(AM_CFLAGS) \
6114         -fvisibility=default \
6115         $(PYTHON_DEVEL_CFLAGS) \
6116         -I$(top_builddir)/src/python-systemd
6117
6118 _daemon_la_LDFLAGS = \
6119         $(AM_LDFLAGS) \
6120         -shared \
6121         -module \
6122         -avoid-version
6123
6124 _daemon_la_LIBADD = \
6125         $(PYTHON_DEVEL_LIBS) \
6126         libsystemd-shared.la \
6127         libsystemd.la
6128
6129 _reader_la_SOURCES = \
6130         src/python-systemd/_reader.c \
6131         src/python-systemd/pyutil.c \
6132         src/python-systemd/pyutil.h
6133
6134 _reader_la_CFLAGS = \
6135         $(AM_CFLAGS) \
6136         -fvisibility=default \
6137         $(PYTHON_DEVEL_CFLAGS)
6138
6139 _reader_la_LDFLAGS = \
6140         $(AM_LDFLAGS) \
6141         -shared \
6142         -module \
6143         -avoid-version
6144
6145 _reader_la_LIBADD = \
6146         $(PYTHON_DEVEL_LIBS) \
6147         libsystemd-shared.la \
6148         libsystemd.la
6149
6150 login_la_SOURCES = \
6151         src/python-systemd/login.c \
6152         src/python-systemd/pyutil.c \
6153         src/python-systemd/pyutil.h
6154
6155 login_la_CFLAGS = \
6156         $(AM_CFLAGS) \
6157         -fvisibility=default \
6158         $(PYTHON_DEVEL_CFLAGS)
6159
6160 login_la_LDFLAGS = \
6161         $(AM_LDFLAGS) \
6162         -shared \
6163         -module \
6164         -avoid-version
6165
6166 login_la_LIBADD = \
6167         $(PYTHON_DEVEL_LIBS) \
6168         libsystemd-shared.la \
6169         libsystemd.la
6170
6171 dist_pkgpyexec_PYTHON = \
6172         src/python-systemd/journal.py \
6173         src/python-systemd/daemon.py \
6174         src/python-systemd/__init__.py
6175
6176 src/python-systemd/id128-constants.h: src/systemd/sd-messages.h
6177         $(AM_V_at)$(MKDIR_P) $(dir $@)
6178         $(AM_V_GEN)$(SED) -n -r 's/,//g; s/#define (SD_MESSAGE_[A-Z0-9_]+)\s.*/add_id(m, "\1", \1) JOINER/p' <$< >$@
6179
6180 BUILT_SOURCES += \
6181         src/python-systemd/id128-constants.h
6182
6183 SPHINXOPTS = -D version=$(VERSION) -D release=$(VERSION)
6184 sphinx-%:
6185         $(AM_V_at)test -n "$(SPHINX_BUILD)" || { echo " *** sphinx-build is not available"; exit 1; }
6186         $(AM_V_GEN)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(SPHINX_BUILD) -b $* $(SPHINXOPTS) $(top_srcdir)/src/python-systemd/docs $(top_builddir)/docs/html/python-systemd/
6187         $(AM_V_at)echo Output has been generated in $(abs_top_builddir)/docs/html/python-systemd/
6188
6189 python-shell:
6190         $(AM_V_at)echo "Starting python with $(DESTDIR)$(pyexecdir)"
6191         $(AM_V_at)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(PYTHON)
6192
6193 destdir-sphinx: all
6194         dir="$$(mktemp -d /tmp/systemd-install.XXXXXX)" && \
6195                 $(MAKE) DESTDIR="$$dir" install && \
6196                 $(MAKE) DESTDIR="$$dir" sphinx-html && \
6197                 rm -rf "$$dir"
6198
6199 endif
6200
6201 CLEAN_LOCAL_HOOKS += clean-sphinx
6202
6203 .PHONY: python-shell destdir-sphinx clean-sphinx clean-python
6204
6205 clean-sphinx:
6206         -rm -rf docs/html/python-systemd/
6207
6208 # Remove Python stuff, e.g. to force rebuilding for a different Python version.
6209 clean-python:
6210         -rm -rf src/python-systemd/.libs src/python-systemd/*.l[ao]
6211         -rm -f _daemon.la id128.la _journal.la login.la _reader.la
6212
6213 # ------------------------------------------------------------------------------
6214 if ENABLE_COMPAT_LIBS
6215 EXTRA_DIST += \
6216         src/compat-libs/linkwarning.h
6217
6218 libsystemd-%.c: src/compat-libs/libsystemd-%.sym
6219         $(AM_V_at)$(MKDIR_P) $(dir $@)
6220         $(AM_V_GEN)sed -r -n 's/^ +(sd_.*);/obsolete_lib(\1,$(notdir $(basename $<)));/p' <$< >$@
6221
6222 BUILT_SOURCES += \
6223         libsystemd-journal.c \
6224         libsystemd-login.c \
6225         libsystemd-id128.c \
6226         libsystemd-daemon.c
6227
6228 libsystemd_journal_la_SOURCES = \
6229         libsystemd-journal.c \
6230         src/compat-libs/libsystemd-journal.sym
6231
6232 libsystemd_journal_la_CPPFLAGS = \
6233         $(AM_CFLAGS) \
6234         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6235
6236 libsystemd_journal_la_LDFLAGS = \
6237         $(AM_LDFLAGS) \
6238         -version-info $(LIBSYSTEMD_JOURNAL_CURRENT):$(LIBSYSTEMD_JOURNAL_REVISION):$(LIBSYSTEMD_JOURNAL_AGE) \
6239         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-journal.sym
6240
6241 libsystemd_journal_la_LIBADD = \
6242         libsystemd-journal-internal.la \
6243         libsystemd-internal.la \
6244         libsystemd-shared.la
6245
6246 libsystemd_login_la_SOURCES = \
6247         libsystemd-login.c \
6248         src/compat-libs/libsystemd-login.sym
6249
6250 libsystemd_login_la_CPPFLAGS = \
6251         $(AM_CFLAGS) \
6252         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6253
6254 libsystemd_login_la_LDFLAGS = \
6255         $(AM_LDFLAGS) \
6256         -version-info $(LIBSYSTEMD_LOGIN_CURRENT):$(LIBSYSTEMD_LOGIN_REVISION):$(LIBSYSTEMD_LOGIN_AGE) \
6257         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-login.sym
6258
6259 libsystemd_login_la_LIBADD = \
6260         libsystemd-internal.la \
6261         libsystemd-shared.la
6262
6263 libsystemd_id128_la_SOURCES = \
6264         libsystemd-id128.c \
6265         src/compat-libs/libsystemd-id128.sym
6266
6267 libsystemd_id128_la_CPPFLAGS = \
6268         $(AM_CFLAGS) \
6269         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6270
6271 libsystemd_id128_la_LDFLAGS = \
6272         $(AM_LDFLAGS) \
6273         -version-info $(LIBSYSTEMD_ID128_CURRENT):$(LIBSYSTEMD_ID128_REVISION):$(LIBSYSTEMD_ID128_AGE) \
6274         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-id128.sym
6275
6276 libsystemd_id128_la_LIBADD = \
6277         libsystemd-internal.la \
6278         libsystemd-shared.la
6279
6280 libsystemd_daemon_la_SOURCES = \
6281         libsystemd-daemon.c \
6282         src/compat-libs/libsystemd-daemon.sym
6283
6284 libsystemd_daemon_la_CPPFLAGS = \
6285         $(AM_CFLAGS) \
6286         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6287
6288 libsystemd_daemon_la_LDFLAGS = \
6289         $(AM_LDFLAGS) \
6290         -version-info $(LIBSYSTEMD_DAEMON_CURRENT):$(LIBSYSTEMD_DAEMON_REVISION):$(LIBSYSTEMD_DAEMON_AGE) \
6291         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-daemon.sym
6292
6293 libsystemd_daemon_la_LIBADD = \
6294         libsystemd-internal.la \
6295         libsystemd-shared.la
6296
6297 lib_LTLIBRARIES += \
6298         libsystemd-journal.la \
6299         libsystemd-login.la \
6300         libsystemd-id128.la \
6301         libsystemd-daemon.la
6302
6303 pkgconfiglib_DATA += \
6304         src/compat-libs/libsystemd-journal.pc \
6305         src/compat-libs/libsystemd-login.pc \
6306         src/compat-libs/libsystemd-id128.pc \
6307         src/compat-libs/libsystemd-daemon.pc
6308
6309 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
6310 compat-lib-install-hook:
6311         libname=libsystemd-login.so && $(move-to-rootlibdir)
6312         libname=libsystemd-journal.so && $(move-to-rootlibdir)
6313         libname=libsystemd-id128.so && $(move-to-rootlibdir)
6314         libname=libsystemd-daemon.so && $(move-to-rootlibdir)
6315
6316 compat-lib-uninstall-hook:
6317         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-login.so*
6318         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-journal.so*
6319         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-id128.so*
6320         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-daemon.so*
6321
6322 INSTALL_EXEC_HOOKS += compat-lib-install-hook
6323 UNINSTALL_EXEC_HOOKS += compat-lib-uninstall-hook
6324 endif
6325
6326 EXTRA_DIST += \
6327         src/compat-libs/libsystemd-journal.pc.in \
6328         src/compat-libs/libsystemd-login.pc.in \
6329         src/compat-libs/libsystemd-id128.pc.in \
6330         src/compat-libs/libsystemd-daemon.pc.in
6331
6332 # ------------------------------------------------------------------------------
6333 substitutions = \
6334        '|rootlibexecdir=$(rootlibexecdir)|' \
6335        '|rootbindir=$(rootbindir)|' \
6336        '|bindir=$(bindir)|' \
6337        '|SYSTEMCTL=$(rootbindir)/systemctl|' \
6338        '|SYSTEMD_NOTIFY=$(rootbindir)/systemd-notify|' \
6339        '|pkgsysconfdir=$(pkgsysconfdir)|' \
6340        '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
6341        '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
6342        '|pkgdatadir=$(pkgdatadir)|' \
6343        '|systemunitdir=$(systemunitdir)|' \
6344        '|userunitdir=$(userunitdir)|' \
6345        '|systempresetdir=$(systempresetdir)|' \
6346        '|userpresetdir=$(userpresetdir)|' \
6347        '|udevhwdbdir=$(udevhwdbdir)|' \
6348        '|udevrulesdir=$(udevrulesdir)|' \
6349        '|catalogdir=$(catalogdir)|' \
6350        '|tmpfilesdir=$(tmpfilesdir)|' \
6351        '|sysusersdir=$(sysusersdir)|' \
6352        '|sysctldir=$(sysctldir)|' \
6353        '|systemgeneratordir=$(systemgeneratordir)|' \
6354        '|usergeneratordir=$(usergeneratordir)|' \
6355        '|CERTIFICATEROOT=$(CERTIFICATEROOT)|' \
6356        '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
6357        '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
6358        '|PACKAGE_URL=$(PACKAGE_URL)|' \
6359        '|RANDOM_SEED_DIR=$(localstatedir)/lib/systemd/|' \
6360        '|RANDOM_SEED=$(localstatedir)/lib/systemd/random-seed|' \
6361        '|prefix=$(prefix)|' \
6362        '|exec_prefix=$(exec_prefix)|' \
6363        '|libdir=$(libdir)|' \
6364        '|includedir=$(includedir)|' \
6365        '|VERSION=$(VERSION)|' \
6366        '|rootprefix=$(rootprefix)|' \
6367        '|udevlibexecdir=$(udevlibexecdir)|' \
6368        '|SUSHELL=$(SUSHELL)|' \
6369        '|SULOGIN=$(SULOGIN)|' \
6370        '|DEBUGTTY=$(DEBUGTTY)|' \
6371        '|KILL=$(KILL)|' \
6372        '|KMOD=$(KMOD)|' \
6373        '|MKDIR_P=$(MKDIR_P)|' \
6374        '|QUOTAON=$(QUOTAON)|' \
6375        '|QUOTACHECK=$(QUOTACHECK)|' \
6376        '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
6377        '|VARLOGDIR=$(varlogdir)|' \
6378        '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
6379        '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
6380        '|PYTHON=$(PYTHON)|' \
6381        '|PYTHON_BINARY=$(PYTHON_BINARY)|' \
6382        '|NTP_SERVERS=$(NTP_SERVERS)|' \
6383        '|DNS_SERVERS=$(DNS_SERVERS)|' \
6384        '|systemuidmax=$(SYSTEM_UID_MAX)|' \
6385        '|systemgidmax=$(SYSTEM_GID_MAX)|' \
6386        '|TTY_GID=$(TTY_GID)|' \
6387        '|systemsleepdir=$(systemsleepdir)|' \
6388        '|systemshutdowndir=$(systemshutdowndir)|' \
6389        '|binfmtdir=$(binfmtdir)|' \
6390        '|modulesloaddir=$(modulesloaddir)|'
6391
6392 SED_PROCESS = \
6393         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
6394         $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
6395                 < $< > $@
6396
6397 units/%: units/%.in
6398         $(SED_PROCESS)
6399
6400 man/%: man/%.in
6401         $(SED_PROCESS)
6402
6403 sysctl.d/%: sysctl.d/%.in
6404         $(SED_PROCESS)
6405
6406 %.pc: %.pc.in
6407         $(SED_PROCESS)
6408
6409 %.conf: %.conf.in
6410         $(SED_PROCESS)
6411
6412 src/core/macros.%: src/core/macros.%.in
6413         $(SED_PROCESS)
6414
6415 src/%.policy.in: src/%.policy.in.in
6416         $(SED_PROCESS)
6417
6418 shell-completion/%: shell-completion/%.in
6419         $(SED_PROCESS)
6420
6421 %.rules: %.rules.in
6422         $(SED_PROCESS)
6423
6424 %.conf: %.conf.in
6425         $(SED_PROCESS)
6426
6427 %.sh: %.sh.in
6428         $(SED_PROCESS)
6429         $(AM_V_GEN)chmod +x $@
6430
6431 src/%.c: src/%.gperf
6432         $(AM_V_at)$(MKDIR_P) $(dir $@)
6433         $(AM_V_GPERF)$(GPERF) < $< > $@
6434
6435 src/%: src/%.m4
6436         $(AM_V_at)$(MKDIR_P) $(dir $@)
6437         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6438
6439 sysusers.d/%: sysusers.d/%.m4
6440         $(AM_V_at)$(MKDIR_P) $(dir $@)
6441         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6442
6443 tmpfiles.d/%: tmpfiles.d/%.m4
6444         $(AM_V_at)$(MKDIR_P) $(dir $@)
6445         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6446
6447
6448 units/%: units/%.m4
6449         $(AM_V_at)$(MKDIR_P) $(dir $@)
6450         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
6451
6452 units/user/%: units/user/%.m4
6453         $(AM_V_at)$(MKDIR_P) $(dir $@)
6454         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
6455
6456 if ENABLE_POLKIT
6457 nodist_polkitpolicy_DATA = \
6458         $(polkitpolicy_files) \
6459         $(polkitpolicy_in_in_files:.policy.in.in=.policy)
6460 endif
6461
6462 EXTRA_DIST += \
6463         $(polkitpolicy_in_files) \
6464         $(polkitpolicy_in_in_files)
6465
6466 CLEANFILES += \
6467         $(nodist_systemunit_DATA) \
6468         $(nodist_userunit_DATA) \
6469         $(pkgconfiglib_DATA) \
6470         $(nodist_polkitpolicy_DATA)
6471
6472 # ------------------------------------------------------------------------------
6473 if ENABLE_MANPAGES
6474 man/custom-entities.ent: configure.ac
6475         $(AM_V_GEN)$(MKDIR_P) $(dir $@)
6476         $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
6477          printf '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">\n,$(substitutions))))') \
6478          > $@ # '
6479
6480 DISTCLEANFILES += \
6481         man/custom-entities.ent
6482
6483 XSLTPROC_FLAGS = \
6484         --nonet \
6485         --xinclude \
6486         --stringparam man.output.quietly 1 \
6487         --stringparam funcsynopsis.style ansi \
6488         --stringparam man.authors.section.enabled 0 \
6489         --stringparam man.copyright.section.enabled 0 \
6490         --stringparam systemd.version $(VERSION) \
6491         --path '$(builddir)/man:$(srcdir)/man'
6492
6493 XSLTPROC_PROCESS_MAN = \
6494         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
6495
6496 XSLTPROC_PROCESS_HTML = \
6497         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
6498
6499 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
6500         $(XSLTPROC_PROCESS_MAN)
6501
6502 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
6503         $(XSLTPROC_PROCESS_MAN)
6504
6505 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
6506         $(XSLTPROC_PROCESS_MAN)
6507
6508 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
6509         $(XSLTPROC_PROCESS_MAN)
6510
6511 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
6512         $(XSLTPROC_PROCESS_MAN)
6513
6514 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
6515         $(XSLTPROC_PROCESS_HTML)
6516
6517 define html-alias
6518         $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
6519 endef
6520
6521 endif
6522
6523 EXTRA_DIST += \
6524         man/custom-html.xsl \
6525         man/custom-man.xsl
6526
6527 # ------------------------------------------------------------------------------
6528 if HAVE_SYSV_COMPAT
6529 sysvinit_DATA = \
6530         docs/sysvinit/README
6531
6532 varlog_DATA = \
6533         docs/var-log/README
6534
6535 docs/sysvinit/README: docs/sysvinit/README.in
6536         $(SED_PROCESS)
6537
6538 docs/var-log/README: docs/var-log/README.in
6539         $(SED_PROCESS)
6540
6541 CLEANFILES += \
6542         docs/sysvinit/README \
6543         docs/var-log/README
6544 endif
6545
6546 EXTRA_DIST += \
6547         docs/sysvinit/README.in \
6548         docs/var-log/README.in
6549
6550 SOCKETS_TARGET_WANTS += \
6551         systemd-initctl.socket \
6552         systemd-shutdownd.socket
6553
6554 if HAVE_UTMP
6555 if HAVE_SYSV_COMPAT
6556 RUNLEVEL1_TARGET_WANTS += \
6557         systemd-update-utmp-runlevel.service
6558 RUNLEVEL2_TARGET_WANTS += \
6559         systemd-update-utmp-runlevel.service
6560 RUNLEVEL3_TARGET_WANTS += \
6561         systemd-update-utmp-runlevel.service
6562 RUNLEVEL4_TARGET_WANTS += \
6563         systemd-update-utmp-runlevel.service
6564 RUNLEVEL5_TARGET_WANTS += \
6565         systemd-update-utmp-runlevel.service
6566 endif
6567
6568 SYSINIT_TARGET_WANTS += \
6569         systemd-update-utmp.service
6570 endif
6571
6572 SYSINIT_TARGET_WANTS += \
6573         systemd-update-done.service
6574
6575 LOCAL_FS_TARGET_WANTS += \
6576         systemd-remount-fs.service \
6577         tmp.mount
6578
6579 MULTI_USER_TARGET_WANTS += \
6580         getty.target \
6581         systemd-ask-password-wall.path
6582
6583 SYSINIT_TARGET_WANTS += \
6584         dev-hugepages.mount \
6585         dev-mqueue.mount \
6586         sys-kernel-config.mount \
6587         sys-kernel-debug.mount \
6588         sys-fs-fuse-connections.mount \
6589         systemd-sysctl.service \
6590         systemd-ask-password-console.path
6591
6592 if HAVE_SYSV_COMPAT
6593 SYSTEM_UNIT_ALIASES += \
6594         poweroff.target runlevel0.target \
6595         rescue.target runlevel1.target \
6596         multi-user.target runlevel2.target \
6597         multi-user.target runlevel3.target \
6598         multi-user.target runlevel4.target \
6599         graphical.target runlevel5.target \
6600         reboot.target runlevel6.target
6601 endif
6602
6603 SYSTEM_UNIT_ALIASES += \
6604         graphical.target default.target \
6605         reboot.target ctrl-alt-del.target \
6606         getty@.service autovt@.service
6607
6608 USER_UNIT_ALIASES += \
6609         $(systemunitdir)/shutdown.target shutdown.target \
6610         $(systemunitdir)/sockets.target sockets.target \
6611         $(systemunitdir)/timers.target timers.target \
6612         $(systemunitdir)/paths.target paths.target \
6613         $(systemunitdir)/bluetooth.target bluetooth.target \
6614         $(systemunitdir)/printer.target printer.target \
6615         $(systemunitdir)/sound.target sound.target \
6616         $(systemunitdir)/smartcard.target smartcard.target
6617
6618 if ENABLE_KDBUS
6619 USER_UNIT_ALIASES += \
6620         $(systemunitdir)/busnames.target busnames.target
6621 endif
6622
6623 GENERAL_ALIASES += \
6624         $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \
6625         $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \
6626         $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \
6627         $(dbussystemservicedir)/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service
6628
6629 if HAVE_SYSV_COMPAT
6630 INSTALL_DIRS += \
6631         $(systemunitdir)/runlevel1.target.wants \
6632         $(systemunitdir)/runlevel2.target.wants \
6633         $(systemunitdir)/runlevel3.target.wants \
6634         $(systemunitdir)/runlevel4.target.wants \
6635         $(systemunitdir)/runlevel5.target.wants
6636 endif
6637
6638 INSTALL_DIRS += \
6639         $(prefix)/lib/modules-load.d \
6640         $(sysconfdir)/modules-load.d \
6641         $(prefix)/lib/systemd/network \
6642         $(sysconfdir)/systemd/network \
6643         $(prefix)/lib/sysctl.d \
6644         $(sysconfdir)/sysctl.d \
6645         $(prefix)/lib/kernel/install.d \
6646         $(sysconfdir)/kernel/install.d \
6647         $(systemshutdowndir) \
6648         $(systemsleepdir) \
6649         $(systemgeneratordir) \
6650         $(usergeneratordir) \
6651         \
6652         $(userunitdir) \
6653         $(pkgsysconfdir)/system \
6654         $(pkgsysconfdir)/system/multi-user.target.wants \
6655         $(pkgsysconfdir)/system/getty.target.wants \
6656         $(pkgsysconfdir)/user \
6657         $(dbussessionservicedir) \
6658         $(sysconfdir)/xdg/systemd
6659
6660 install-exec-hook: $(INSTALL_EXEC_HOOKS)
6661
6662 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
6663
6664 install-data-hook: $(INSTALL_DATA_HOOKS)
6665
6666 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
6667
6668 clean-local: $(CLEAN_LOCAL_HOOKS)
6669         rm -rf $(abs_srcdir)/install-tree
6670         rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
6671               $(abs_srcdir)/hwdb/iab.txt
6672
6673 DISTCHECK_CONFIGURE_FLAGS = \
6674         --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
6675         --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
6676         --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
6677         --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
6678         --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
6679         --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
6680         --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
6681         --with-rootprefix=$$dc_install_base \
6682         --disable-split-usr \
6683         --enable-kdbus \
6684         --enable-compat-libs
6685
6686 if HAVE_SYSV_COMPAT
6687 DISTCHECK_CONFIGURE_FLAGS += \
6688         --with-sysvinit-path=$$dc_install_base/$(sysvinitdir) \
6689         --with-sysvrcnd-path=$$dc_install_base/$(sysvrcnddir)
6690 else
6691 DISTCHECK_CONFIGURE_FLAGS += \
6692         --with-sysvinit-path= \
6693         --with-sysvrcnd-path=
6694 endif
6695
6696 if HAVE_PYTHON
6697 DISTCHECK_CONFIGURE_FLAGS += \
6698         --with-python
6699 endif
6700
6701 if ENABLE_GTK_DOC
6702 DISTCHECK_CONFIGURE_FLAGS += \
6703         --enable-gtk-doc
6704 endif
6705
6706 #
6707 # Require python when making dist
6708 #
6709 .PHONY: dist-check-python dist-check-compat-libs dist-check-help
6710 dist-check-python:
6711 if !HAVE_PYTHON
6712         @echo "*** python and python-lxml module must be installed and enabled in order to make dist"
6713         @false
6714 endif
6715
6716 dist-check-compat-libs:
6717 if !ENABLE_COMPAT_LIBS
6718         @echo "*** compat-libs must be enabled in order to make dist"
6719         @false
6720 endif
6721
6722 dist-check-help: $(rootbin_PROGRAMS) $(bin_PROGRAMS)
6723         for i in $(abspath $^); do                                             \
6724             if $$i  --help | grep -v 'default:' | grep -E -q '.{80}.' ; then   \
6725                 echo "$(basename $$i) --help output is too wide:";             \
6726                 $$i  --help | awk 'length > 80' | grep -E --color=yes '.{80}'; \
6727                 exit 1;                                                        \
6728             fi; done
6729
6730 dist: dist-check-python dist-check-compat-libs
6731
6732 # check "broken" platforms limited toolchains for link breakage before we release
6733 .PHONY: linkcheck
6734 linkcheck:
6735         $(MAKE) CFLAGS='-fno-lto' LDFLAGS='-Wl,-fuse-ld=gold -Wl,--as-needed -Wl,--no-gc-sections' distcheck
6736
6737 .PHONY: hwdb-update
6738 hwdb-update:
6739         ( cd $(top_srcdir)/hwdb && \
6740         wget -N http://www.linux-usb.org/usb.ids \
6741                 http://pci-ids.ucw.cz/v2.2/pci.ids \
6742                 http://standards.ieee.org/develop/regauth/oui/oui.txt \
6743                 http://standards.ieee.org/develop/regauth/iab/iab.txt && \
6744         ./ids-update.pl )
6745
6746 .PHONY: kdbus-update
6747 kdbus-update:
6748         ( cd $(top_srcdir)/src/libsystemd/sd-bus/ && \
6749         wget -N https://d-bus.googlecode.com/git/kdbus.h )
6750
6751 .PHONY: git-tag
6752 git-tag:
6753         git tag -s "v$(VERSION)" -m "systemd $(VERSION)"
6754
6755 www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd
6756 .PHONY: upload
6757 upload: all check dist
6758         scp systemd-$(VERSION).tar.xz $(www_target)
6759
6760 .PHONY: doc-sync
6761 doc-sync: all destdir-sphinx
6762         gtkdoc-rebase --html-dir=docs/libudev/html --online
6763         rsync -rlv --delete docs/libudev/html/ --omit-dir-times $(www_target)/libudev/
6764         gtkdoc-rebase --html-dir=docs/gudev/html --online
6765         rsync -rlv --delete docs/gudev/html/ --omit-dir-times $(www_target)/gudev/
6766         rsync -rlv --delete-excluded --include="*.html" --exclude="*" --omit-dir-times man/ $(www_target)/man/
6767         rsync -rlv --delete --omit-dir-times docs/html/python-systemd/ $(www_target)/python-systemd/
6768
6769 .PHONY: gardel
6770 gardel: upload
6771         scp man/*.html gardel:public/systemd-man/
6772
6773 .PHONY: lennart-fedora
6774 lennart-fedora:
6775         cp -v systemd-$(VERSION).tar.xz /home/lennart/git.fedora/systemd/
6776
6777 .PHONY: install-tree
6778 install-tree: all
6779         rm -rf $(abs_srcdir)/install-tree
6780         $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
6781         tree $(abs_srcdir)/install-tree
6782
6783 # Let's run all tests of the test suite, but under valgrind. Let's
6784 # exclude the one perl script we have in there
6785 .PHONY: valgrind-tests
6786 valgrind-tests: $(TESTS)
6787         $(AM_V_GEN)for f in $(filter-out %.pl, $^); do \
6788                 if file $$f | grep -q shell; then \
6789                 echo -e "$${x}Skipping non-binary $$f"; else \
6790                 echo -e "$${x}Running $$f"; \
6791                 libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \
6792                 x="\n\n"; \
6793         done
6794
6795 exported-%: %
6796         $(AM_V_GEN)$(NM) -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
6797
6798 exported: $(addprefix exported-, $(lib_LTLIBRARIES))
6799         $(AM_V_GEN)cat $^ > $@
6800
6801 .PHONY: check-api-docs
6802 check-api-docs: exported man
6803         $(AM_V_GEN)for symbol in `cat exported` ; do \
6804                 if test -f $(builddir)/man/$$symbol.html ; then \
6805                         echo "  Symbol $$symbol() is documented." ; \
6806                 else \
6807                         echo "‣ Symbol $$symbol() lacks documentation." ; \
6808                 fi ; \
6809         done
6810
6811 OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
6812 ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
6813
6814 undefined defined: $(ALL_OBJECTS)
6815         $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
6816                 $(NM) -g --$@-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
6817         done | cut -c 20- | cut -d @ -f 1 | sort -u > $@
6818
6819 CLEANFILES += \
6820         defined \
6821         undefined
6822
6823 .PHONY: check-api-unused
6824 check-api-unused: defined undefined exported
6825         ( cat exported undefined ) | sort -u  | diff -u - defined | grep ^+ | grep -v ^+++ | cut -c2-
6826
6827 .PHONY: check-includes
6828 check-includes: $(top_srcdir)/tools/check-includes.pl
6829         $(AM_V_GEN) find * -name '*.[hcS]' -type f -print | sort -u \
6830                 | xargs $(top_srcdir)/tools/check-includes.pl
6831
6832 EXTRA_DIST += \
6833         $(top_srcdir)/tools/check-includes.pl
6834
6835 # Stupid test that everything purported to be exported really is
6836 define generate-sym-test
6837         $(AM_V_at)$(MKDIR_P) $(dir $@)
6838         $(AM_V_at)printf '#include <stdio.h>\n' > $@
6839         $(AM_V_at)printf '#include "%s"\n' $(notdir $(filter %.h, $^)) >> $@
6840         $(AM_V_at)printf 'void* functions[] = {\n' >> $@
6841         $(AM_V_GEN)sed -r -n 's/^ +([a-zA-Z0-9_]+);/\1,/p' $< >> $@
6842         $(AM_V_at)printf '};\nint main(void) {\n' >> $@
6843         $(AM_V_at)printf 'unsigned i; for (i=0;i<sizeof(functions)/sizeof(void*);i++) printf("%%p\\n", functions[i]);\n' >> $@
6844         $(AM_V_at)printf 'return 0; }\n' >> $@
6845 endef
6846
6847 test-libsystemd-sym.c: \
6848                 $(top_builddir)/src/libsystemd/libsystemd.sym \
6849                 src/systemd/sd-journal.h \
6850                 src/systemd/sd-daemon.h \
6851                 src/systemd/sd-login.h \
6852                 src/systemd/sd-bus.h \
6853                 src/systemd/sd-utf8.h \
6854                 src/systemd/sd-resolve.h \
6855                 src/systemd/sd-path.h
6856         $(generate-sym-test)
6857
6858 test-libudev-sym.c: \
6859                 src/libudev/libudev.sym \
6860                 src/udev/udev.h
6861         $(generate-sym-test)
6862
6863 test_libsystemd_sym_SOURCES = \
6864         test-libsystemd-sym.c
6865 test_libsystemd_sym_LDADD = \
6866         libsystemd.la
6867
6868 test_libudev_sym_SOURCES = \
6869         test-libudev-sym.c
6870 test_libudev_sym_CFLAGS = \
6871         $(AM_CFLAGS) \
6872         -Wno-deprecated-declarations
6873 test_libudev_sym_LDADD = \
6874         libudev.la
6875
6876 BUILT_SOURCES += \
6877         $(test_libsystemd_sym_SOURCES) \
6878         $(test_libudev_sym_SOURCES)
6879
6880 tests += \
6881         test-libsystemd-sym \
6882         test-libudev-sym
6883
6884 .PHONY: cppcheck
6885 cppcheck:
6886         cppcheck --enable=all -q $(top_srcdir)
6887
6888 # Used to extract compile flags for YCM.
6889 print-%:
6890         @echo $($*)
6891
6892 git-contrib:
6893         @git shortlog -s `git describe --abbrev=0`.. | cut -c8- | awk '{ print $$0 "," }' | sort -u
6894
6895 EXTRA_DIST += \
6896         tools/gdb-sd_dump_hashmaps.py
6897
6898 list-keys:
6899         gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --list-keys
6900
6901 add-key:
6902         gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --import -