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