chiark / gitweb /
systemd-sysv-generator test: test scripts with hidden suffixes
[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         test/sysv-generator-test.py \
3777         $(NULL)
3778 endif
3779
3780 manual_tests += \
3781         test-libudev \
3782         test-udev
3783
3784 test_libudev_SOURCES = \
3785         src/test/test-libudev.c
3786
3787 test_libudev_LDADD = \
3788         libsystemd-label.la \
3789         libudev-internal.la \
3790         libsystemd-shared.la \
3791         libsystemd-internal.la
3792
3793 test_udev_SOURCES = \
3794         src/test/test-udev.c
3795
3796 test_udev_LDADD = \
3797         libudev-core.la  \
3798         $(BLKID_LIBS) \
3799         $(KMOD_LIBS) \
3800         $(SELINUX_LIBS)
3801
3802 if HAVE_ACL
3803 test_udev_LDADD += \
3804         libsystemd-acl.la
3805 endif
3806
3807 check_DATA += \
3808         test/sys
3809
3810 # packed sysfs test tree
3811 test/sys:
3812         $(AM_V_at)$(MKDIR_P) $(dir $@)
3813         $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
3814
3815 test-sys-distclean:
3816         -rm -rf test/sys
3817 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
3818
3819 EXTRA_DIST += \
3820         test/sys.tar.xz \
3821         test/udev-test.pl \
3822         test/rule-syntax-check.py \
3823         test/sysv-generator-test.py \
3824         $(NULL)
3825
3826
3827 # ------------------------------------------------------------------------------
3828 ata_id_SOURCES = \
3829         src/udev/ata_id/ata_id.c
3830
3831 ata_id_LDADD = \
3832         libudev-internal.la \
3833         libsystemd-shared.la
3834
3835 udevlibexec_PROGRAMS += \
3836         ata_id
3837
3838 # ------------------------------------------------------------------------------
3839 cdrom_id_SOURCES = \
3840         src/udev/cdrom_id/cdrom_id.c
3841
3842 cdrom_id_LDADD = \
3843         libudev-internal.la \
3844         libsystemd-shared.la
3845
3846 udevlibexec_PROGRAMS += \
3847         cdrom_id
3848
3849 dist_udevrules_DATA += \
3850         rules/60-cdrom_id.rules
3851
3852 # ------------------------------------------------------------------------------
3853 collect_SOURCES = \
3854         src/udev/collect/collect.c
3855
3856 collect_LDADD = \
3857         libudev-internal.la \
3858         libsystemd-shared.la
3859
3860 udevlibexec_PROGRAMS += \
3861         collect
3862
3863 # ------------------------------------------------------------------------------
3864 scsi_id_SOURCES =\
3865         src/udev/scsi_id/scsi_id.c \
3866         src/udev/scsi_id/scsi_serial.c \
3867         src/udev/scsi_id/scsi.h \
3868         src/udev/scsi_id/scsi_id.h
3869
3870 scsi_id_LDADD = \
3871         libudev-internal.la \
3872         libsystemd-shared.la
3873
3874 udevlibexec_PROGRAMS += \
3875         scsi_id
3876
3877 EXTRA_DIST += \
3878         src/udev/scsi_id/README
3879
3880 # ------------------------------------------------------------------------------
3881 v4l_id_SOURCES = \
3882         src/udev/v4l_id/v4l_id.c
3883
3884 v4l_id_LDADD = \
3885         libudev-internal.la \
3886         libsystemd-shared.la
3887
3888 udevlibexec_PROGRAMS += \
3889         v4l_id
3890
3891 dist_udevrules_DATA += \
3892         rules/60-persistent-v4l.rules
3893
3894 # ------------------------------------------------------------------------------
3895 accelerometer_SOURCES = \
3896         src/udev/accelerometer/accelerometer.c
3897
3898 accelerometer_LDADD = \
3899         libudev-internal.la \
3900         libsystemd-shared.la
3901
3902 udevlibexec_PROGRAMS += \
3903         accelerometer
3904
3905 dist_udevrules_DATA += \
3906         rules/61-accelerometer.rules
3907
3908 # ------------------------------------------------------------------------------
3909 if ENABLE_GUDEV
3910 if ENABLE_GTK_DOC
3911 SUBDIRS += \
3912         docs/gudev
3913 endif
3914
3915 libgudev_includedir = \
3916         $(includedir)/gudev-1.0/gudev
3917
3918 libgudev_include_HEADERS = \
3919         src/gudev/gudev.h \
3920         src/gudev/gudevenums.h \
3921         src/gudev/gudevenumtypes.h \
3922         src/gudev/gudevtypes.h \
3923         src/gudev/gudevclient.h \
3924         src/gudev/gudevdevice.h \
3925         src/gudev/gudevenumerator.h
3926
3927 lib_LTLIBRARIES += libgudev-1.0.la
3928
3929 pkgconfiglib_DATA += \
3930         src/gudev/gudev-1.0.pc
3931
3932 CLEANFILES += \
3933         src/gudev/gudev-1.0.pc
3934
3935 libgudev_1_0_la_SOURCES = \
3936         src/gudev/libgudev-1.0.sym \
3937         src/gudev/gudevenums.h \
3938         src/gudev/gudevenumtypes.h \
3939         src/gudev/gudevenumtypes.h\
3940         src/gudev/gudevtypes.h \
3941         src/gudev/gudevclient.h \
3942         src/gudev/gudevclient.c \
3943         src/gudev/gudevdevice.h \
3944         src/gudev/gudevdevice.c \
3945         src/gudev/gudevenumerator.h \
3946         src/gudev/gudevenumerator.c \
3947         src/gudev/gudevprivate.h
3948
3949 nodist_libgudev_1_0_la_SOURCES = \
3950         src/gudev/gudevmarshal.h \
3951         src/gudev/gudevmarshal.c \
3952         src/gudev/gudevenumtypes.h \
3953         src/gudev/gudevenumtypes.c
3954
3955 BUILT_SOURCES += \
3956         $(nodist_libgudev_1_0_la_SOURCES)
3957
3958 libgudev_1_0_la_CPPFLAGS = \
3959         $(AM_CPPFLAGS) \
3960         -I$(top_builddir)/src\
3961         -I$(top_srcdir)/src\
3962         -I$(top_builddir)/src/gudev \
3963         -I$(top_srcdir)/src/gudev \
3964         -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
3965         -D_GUDEV_COMPILATION \
3966         -DG_LOG_DOMAIN=\"GUdev\"
3967
3968 libgudev_1_0_la_CFLAGS = \
3969         $(AM_CFLAGS) \
3970         -fvisibility=default \
3971         $(GLIB_CFLAGS)
3972
3973 libgudev_1_0_la_LIBADD = \
3974         libudev.la \
3975         $(GLIB_LIBS)
3976
3977 libgudev_1_0_la_LDFLAGS = \
3978         $(AM_LDFLAGS) \
3979         -version-info $(LIBGUDEV_CURRENT):$(LIBGUDEV_REVISION):$(LIBGUDEV_AGE) \
3980         -export-dynamic \
3981         -no-undefined \
3982         -Wl,--version-script=$(top_srcdir)/src/gudev/libgudev-1.0.sym
3983
3984 src/gudev/gudevmarshal.h: src/gudev/gudevmarshal.list
3985         $(AM_V_at)$(MKDIR_P) $(dir $@)
3986         $(AM_V_GEN)glib-genmarshal $< --prefix=g_udev_marshal --header > $@
3987
3988 src/gudev/gudevmarshal.c: src/gudev/gudevmarshal.list
3989         $(AM_V_at)$(MKDIR_P) $(dir $@)
3990         $(AM_V_GEN)echo '#include "gudevmarshal.h"' > $@ && \
3991         glib-genmarshal $< --prefix=g_udev_marshal --body >> $@
3992
3993 src/gudev/gudevenumtypes.%: src/gudev/gudevenumtypes.%.template src/gudev/gudevenums.h
3994         $(AM_V_at)$(MKDIR_P) $(dir $@)
3995         $(AM_V_GEN)glib-mkenums --template $^ > $@
3996
3997 if HAVE_INTROSPECTION
3998 -include $(INTROSPECTION_MAKEFILE)
3999
4000 src/gudev/GUdev-1.0.gir: libgudev-1.0.la
4001
4002 src_gudev_GUdev_1_0_gir_INCLUDES = GObject-2.0
4003
4004 src_gudev_GUdev_1_0_gir_CFLAGS = \
4005         $(AM_CFLAGS) \
4006         $(INCLUDES) \
4007         -D_GUDEV_COMPILATION \
4008         -D_GUDEV_WORK_AROUND_DEV_T_BUG \
4009         -I$(top_srcdir)/src \
4010         -I$(top_builddir)/src \
4011         -I$(top_srcdir)/src/gudev \
4012         -I$(top_builddir)/src/gudev
4013
4014 src_gudev_GUdev_1_0_gir_LIBS = libgudev-1.0.la
4015
4016 src_gudev_GUdev_1_0_gir_SCANNERFLAGS = \
4017         --pkg-export=gudev-1.0 \
4018         --warn-all
4019
4020 src_gudev_GUdev_1_0_gir_FILES = \
4021         src/gudev/gudev.h \
4022         src/gudev/gudevtypes.h \
4023         src/gudev/gudevenums.h \
4024         src/gudev/gudevenumtypes.h \
4025         src/gudev/gudevclient.h \
4026         src/gudev/gudevdevice.h \
4027         src/gudev/gudevenumerator.h \
4028         src/gudev/gudevclient.c \
4029         src/gudev/gudevdevice.c \
4030         src/gudev/gudevenumerator.c
4031
4032 INTROSPECTION_GIRS = src/gudev/GUdev-1.0.gir
4033 INTROSPECTION_SCANNER_ARGS = --c-include=gudev/gudev.h
4034
4035 girdir = $(datadir)/gir-1.0
4036 gir_DATA = \
4037         src/gudev/GUdev-1.0.gir
4038
4039 typelibsdir = $(libdir)/girepository-1.0
4040 typelibs_DATA = \
4041         src/gudev/GUdev-1.0.typelib
4042
4043 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
4044 endif # HAVE_INTROSPECTION
4045 endif
4046
4047 EXTRA_DIST += \
4048         src/gudev/gudev-1.0.pc.in \
4049         src/gudev/gudevmarshal.list \
4050         src/gudev/gudevenumtypes.h.template \
4051         src/gudev/gudevenumtypes.c.template \
4052         src/gudev/gjs-example.js \
4053         src/gudev/seed-example-enum.js \
4054         src/gudev/seed-example.js
4055
4056 # ------------------------------------------------------------------------------
4057 mtd_probe_SOURCES =  \
4058         src/udev/mtd_probe/mtd_probe.c \
4059         src/udev/mtd_probe/mtd_probe.h \
4060         src/udev/mtd_probe/probe_smartmedia.c
4061
4062 dist_udevrules_DATA += \
4063         rules/75-probe_mtd.rules
4064
4065 udevlibexec_PROGRAMS += \
4066         mtd_probe
4067
4068 # ------------------------------------------------------------------------------
4069 test_id128_SOURCES = \
4070         src/test/test-id128.c
4071
4072 test_id128_LDADD = \
4073         libsystemd-internal.la \
4074         libsystemd-shared.la
4075
4076 tests += \
4077         test-id128
4078
4079 # ------------------------------------------------------------------------------
4080
4081 rootlibexec_PROGRAMS += \
4082         systemd-activate
4083
4084 systemd_activate_SOURCES = \
4085         src/activate/activate.c
4086
4087 systemd_activate_LDADD = \
4088         libsystemd-label.la \
4089         libsystemd-internal.la \
4090         libsystemd-shared.la
4091
4092 # ------------------------------------------------------------------------------
4093 systemd_journald_SOURCES = \
4094         src/journal/journald.c \
4095         src/journal/journald-server.h
4096
4097 systemd_journald_LDADD = \
4098         libsystemd-journal-core.la \
4099         libsystemd-internal.la \
4100         libsystemd-shared.la
4101
4102 systemd_cat_SOURCES = \
4103         src/journal/cat.c
4104
4105 systemd_cat_LDADD = \
4106         libsystemd-journal-core.la
4107
4108 if HAVE_MICROHTTPD
4109 rootlibexec_PROGRAMS += \
4110         systemd-journal-remote
4111
4112 systemd_journal_remote_SOURCES = \
4113         src/journal-remote/journal-remote-parse.h \
4114         src/journal-remote/journal-remote-parse.c \
4115         src/journal-remote/journal-remote-write.h \
4116         src/journal-remote/journal-remote-write.c \
4117         src/journal-remote/journal-remote.h \
4118         src/journal-remote/journal-remote.c
4119
4120 systemd_journal_remote_LDADD = \
4121         libsystemd-internal.la \
4122         libsystemd-journal-core.la
4123
4124 systemd_journal_remote_SOURCES += \
4125         src/journal-remote/microhttpd-util.h \
4126         src/journal-remote/microhttpd-util.c
4127
4128 systemd_journal_remote_CFLAGS = \
4129         $(AM_CFLAGS) \
4130         $(MICROHTTPD_CFLAGS)
4131
4132 systemd_journal_remote_LDADD += \
4133         $(MICROHTTPD_LIBS)
4134
4135 if ENABLE_SYSUSERS
4136 dist_sysusers_DATA += \
4137         sysusers.d/systemd-remote.conf
4138 endif
4139
4140 if ENABLE_TMPFILES
4141 dist_tmpfiles_DATA += \
4142         tmpfiles.d/systemd-remote.conf
4143 endif
4144
4145 if HAVE_GNUTLS
4146 systemd_journal_remote_LDADD += \
4147         $(GNUTLS_LIBS)
4148
4149 # systemd-journal-remote make sense mostly with full crypto stack
4150 dist_systemunit_DATA += \
4151         units/systemd-journal-remote.socket
4152
4153 nodist_systemunit_DATA += \
4154         units/systemd-journal-remote.service
4155
4156 EXTRA_DIST += \
4157         units/systemd-journal-remote.service.in
4158
4159 journal-remote-install-hook: journal-install-hook
4160         -$(MKDIR_P) $(DESTDIR)/var/log/journal/remote
4161         -chown 0:0 $(DESTDIR)/var/log/journal/remote
4162         -chmod 755 $(DESTDIR)/var/log/journal/remote
4163
4164 INSTALL_EXEC_HOOKS += journal-remote-install-hook
4165
4166 endif
4167
4168 nodist_pkgsysconf_DATA += \
4169         src/journal-remote/journal-remote.conf
4170
4171 EXTRA_DIST += \
4172         src/journal-remote/journal-remote.conf.in
4173
4174 CLEANFILES += \
4175         src/journal-remote/journal-remote.conf
4176 endif
4177
4178 if HAVE_LIBCURL
4179 rootlibexec_PROGRAMS += \
4180         systemd-journal-upload
4181
4182 systemd_journal_upload_SOURCES = \
4183         src/journal-remote/journal-upload.h \
4184         src/journal-remote/journal-upload.c \
4185         src/journal-remote/journal-upload-journal.c
4186
4187 systemd_journal_upload_CFLAGS = \
4188         $(AM_CFLAGS) \
4189         $(LIBCURL_CFLAGS)
4190
4191 systemd_journal_upload_LDADD = \
4192         libsystemd-internal.la \
4193         libsystemd-journal-internal.la \
4194         libsystemd-shared.la \
4195         $(LIBCURL_LIBS)
4196
4197 nodist_systemunit_DATA += \
4198         units/systemd-journal-upload.service
4199
4200 EXTRA_DIST += \
4201         units/systemd-journal-upload.service.in
4202
4203 nodist_pkgsysconf_DATA += \
4204         src/journal-remote/journal-upload.conf
4205
4206 EXTRA_DIST += \
4207         src/journal-remote/journal-upload.conf.in
4208
4209 CLEANFILES += \
4210         src/journal-remote/journal-upload.conf
4211 endif
4212
4213 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4214 journalctl_CFLAGS = \
4215         $(AM_CFLAGS)
4216
4217 journalctl_SOURCES = \
4218         src/journal/journalctl.c
4219
4220 journalctl_LDADD = \
4221         libsystemd-journal-internal.la \
4222         libsystemd-internal.la \
4223         libsystemd-logs.la \
4224         libsystemd-shared.la
4225
4226 if HAVE_ACL
4227 journalctl_LDADD += \
4228         libsystemd-acl.la
4229 endif
4230
4231 if HAVE_QRENCODE
4232 journalctl_SOURCES += \
4233         src/journal/journal-qrcode.c \
4234         src/journal/journal-qrcode.h
4235
4236 journalctl_CFLAGS += \
4237         $(QRENCODE_CFLAGS)
4238
4239 journalctl_LDADD += \
4240         $(QRENCODE_LIBS)
4241 endif
4242
4243 test_journal_SOURCES = \
4244         src/journal/test-journal.c
4245
4246 test_journal_LDADD = \
4247         libsystemd-journal-core.la
4248
4249 test_journal_send_SOURCES = \
4250         src/journal/test-journal-send.c
4251
4252 test_journal_send_LDADD = \
4253         libsystemd-journal-core.la
4254
4255 test_journal_syslog_SOURCES = \
4256         src/journal/test-journal-syslog.c
4257
4258 test_journal_syslog_LDADD = \
4259         libsystemd-journal-core.la
4260
4261 test_journal_match_SOURCES = \
4262         src/journal/test-journal-match.c
4263
4264 test_journal_match_LDADD = \
4265         libsystemd-journal-core.la
4266
4267 test_journal_enum_SOURCES = \
4268         src/journal/test-journal-enum.c
4269
4270 test_journal_enum_LDADD = \
4271         libsystemd-journal-core.la
4272
4273 test_journal_stream_SOURCES = \
4274         src/journal/test-journal-stream.c
4275
4276 test_journal_stream_LDADD = \
4277         libsystemd-journal-core.la
4278
4279 test_journal_flush_SOURCES = \
4280         src/journal/test-journal-flush.c
4281
4282 test_journal_flush_LDADD = \
4283         libsystemd-journal-core.la
4284
4285 test_journal_init_SOURCES = \
4286         src/journal/test-journal-init.c
4287
4288 test_journal_init_LDADD = \
4289         libsystemd-journal-core.la
4290
4291 test_journal_verify_SOURCES = \
4292         src/journal/test-journal-verify.c
4293
4294 test_journal_verify_LDADD = \
4295         libsystemd-journal-core.la
4296
4297 test_journal_interleaving_SOURCES = \
4298         src/journal/test-journal-interleaving.c
4299
4300 test_journal_interleaving_LDADD = \
4301         libsystemd-journal-core.la
4302
4303 test_mmap_cache_SOURCES = \
4304         src/journal/test-mmap-cache.c
4305
4306 test_mmap_cache_LDADD = \
4307         libsystemd-journal-core.la
4308
4309 test_catalog_SOURCES = \
4310         src/journal/test-catalog.c
4311
4312 test_catalog_CPPFLAGS = \
4313         $(AM_CPPFLAGS) \
4314         -DCATALOG_DIR=\"$(abs_top_srcdir)/catalog\"
4315
4316 test_catalog_LDADD = \
4317         libsystemd-journal-core.la
4318
4319 test_compress_SOURCES = \
4320         src/journal/test-compress.c
4321
4322 test_compress_LDADD = \
4323         libsystemd-journal-internal.la \
4324         libsystemd-shared.la
4325
4326 test_compress_benchmark_SOURCES = \
4327         src/journal/test-compress-benchmark.c
4328
4329 test_compress_benchmark_LDADD = \
4330         libsystemd-journal-internal.la \
4331         libsystemd-shared.la
4332
4333 libsystemd_journal_core_la_SOURCES = \
4334         src/journal/journald-kmsg.c \
4335         src/journal/journald-kmsg.h \
4336         src/journal/journald-syslog.c \
4337         src/journal/journald-syslog.h \
4338         src/journal/journald-stream.c \
4339         src/journal/journald-stream.h \
4340         src/journal/journald-server.c \
4341         src/journal/journald-server.h \
4342         src/journal/journald-console.c \
4343         src/journal/journald-console.h \
4344         src/journal/journald-wall.c \
4345         src/journal/journald-wall.h \
4346         src/journal/journald-native.c \
4347         src/journal/journald-native.h \
4348         src/journal/journald-audit.c \
4349         src/journal/journald-audit.h \
4350         src/journal/journald-rate-limit.c \
4351         src/journal/journald-rate-limit.h \
4352         src/journal/journal-internal.h
4353
4354 nodist_libsystemd_journal_core_la_SOURCES = \
4355         src/journal/journald-gperf.c
4356
4357 libsystemd_journal_core_la_LIBADD = \
4358         libsystemd-journal-internal.la \
4359         libudev-internal.la \
4360         libsystemd-label.la \
4361         libsystemd-internal.la \
4362         libsystemd-shared.la
4363
4364 if HAVE_ACL
4365 libsystemd_journal_core_la_LIBADD += \
4366         libsystemd-acl.la
4367 endif
4368
4369 noinst_LTLIBRARIES += \
4370         libsystemd-journal-core.la
4371
4372 journal-install-hook:
4373         -$(MKDIR_P) $(DESTDIR)/var/log/journal
4374         -chown 0:0 $(DESTDIR)/var/log/journal
4375         -chmod 755 $(DESTDIR)/var/log/journal
4376         -setfacl -nm g:adm:rx,d:g:adm:rx $(DESTDIR)/var/log/journal/
4377         -setfacl -nm g:wheel:rx,d:g:wheel:rx $(DESTDIR)/var/log/journal/
4378
4379 journal-uninstall-hook:
4380         -rmdir $(DESTDIR)/var/log/journal/remote
4381         -rmdir $(DESTDIR)/var/log/journal/
4382
4383 INSTALL_EXEC_HOOKS += journal-install-hook
4384 UNINSTALL_EXEC_HOOKS += journal-uninstall-hook
4385
4386 # ------------------------------------------------------------------------------
4387 # Update catalog on installation. Do not bother if installing
4388 # in DESTDIR, since this is likely for packaging purposes.
4389 catalog-update-hook:
4390         -test -n "$(DESTDIR)" || $(rootbindir)/journalctl --update-catalog
4391
4392 INSTALL_DATA_HOOKS += \
4393         catalog-update-hook
4394
4395 catalog-remove-hook:
4396         -test -n "$(DESTDIR)" || rm -f $(catalogstatedir)/database
4397
4398 UNINSTALL_DATA_HOOKS += \
4399         catalog-remove-hook
4400
4401 manual_tests += \
4402         test-journal-enum
4403
4404 tests += \
4405         test-journal \
4406         test-journal-send \
4407         test-journal-syslog \
4408         test-journal-match \
4409         test-journal-stream \
4410         test-journal-init \
4411         test-journal-verify \
4412         test-journal-interleaving \
4413         test-journal-flush \
4414         test-mmap-cache \
4415         test-catalog
4416
4417 if HAVE_COMPRESSION
4418 tests += \
4419         test-compress \
4420         test-compress-benchmark
4421 endif
4422
4423 pkginclude_HEADERS += \
4424         src/systemd/sd-journal.h \
4425         src/systemd/sd-messages.h \
4426         src/systemd/_sd-common.h
4427
4428 libsystemd_journal_internal_la_SOURCES = \
4429         src/journal/sd-journal.c \
4430         src/systemd/sd-journal.h \
4431         src/systemd/_sd-common.h \
4432         src/journal/journal-file.c \
4433         src/journal/journal-file.h \
4434         src/journal/journal-vacuum.c \
4435         src/journal/journal-vacuum.h \
4436         src/journal/journal-verify.c \
4437         src/journal/journal-verify.h \
4438         src/journal/lookup3.c \
4439         src/journal/lookup3.h \
4440         src/journal/journal-send.c \
4441         src/journal/journal-def.h \
4442         src/journal/compress.h \
4443         src/journal/catalog.c \
4444         src/journal/catalog.h \
4445         src/journal/mmap-cache.c \
4446         src/journal/mmap-cache.h \
4447         src/journal/compress.c
4448
4449 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4450 libsystemd_journal_internal_la_CFLAGS = \
4451         $(AM_CFLAGS)
4452
4453 libsystemd_journal_internal_la_LIBADD = \
4454         libsystemd-label.la
4455
4456 if HAVE_XZ
4457 libsystemd_journal_internal_la_CFLAGS += \
4458         $(XZ_CFLAGS)
4459
4460 libsystemd_journal_internal_la_LIBADD += \
4461         $(XZ_LIBS)
4462 endif
4463
4464 if HAVE_LZ4
4465 libsystemd_journal_internal_la_LIBADD += \
4466         -llz4
4467 endif
4468
4469 if HAVE_GCRYPT
4470 libsystemd_journal_internal_la_SOURCES += \
4471         src/journal/journal-authenticate.c \
4472         src/journal/journal-authenticate.h \
4473         src/journal/fsprg.c \
4474         src/journal/fsprg.h
4475
4476 libsystemd_journal_internal_la_LIBADD += \
4477         $(GCRYPT_LIBS)
4478
4479 # fsprg.c is a drop-in file using void pointer arithmetic
4480 libsystemd_journal_internal_la_CFLAGS += \
4481         $(GCRYPT_CFLAGS) \
4482         -Wno-pointer-arith
4483 endif
4484
4485 noinst_LTLIBRARIES += \
4486         libsystemd-journal-internal.la
4487
4488 rootlibexec_PROGRAMS += \
4489         systemd-journald
4490
4491 rootbin_PROGRAMS += \
4492         journalctl
4493
4494 bin_PROGRAMS += \
4495         systemd-cat
4496
4497 dist_systemunit_DATA += \
4498         units/systemd-journald.socket \
4499         units/systemd-journald-dev-log.socket \
4500         units/systemd-journald-audit.socket
4501
4502 nodist_systemunit_DATA += \
4503         units/systemd-journald.service \
4504         units/systemd-journal-flush.service \
4505         units/systemd-journal-catalog-update.service
4506
4507 dist_pkgsysconf_DATA += \
4508         src/journal/journald.conf
4509
4510 dist_catalog_DATA = \
4511         catalog/systemd.fr.catalog \
4512         catalog/systemd.it.catalog \
4513         catalog/systemd.pl.catalog \
4514         catalog/systemd.pt_BR.catalog \
4515         catalog/systemd.ru.catalog \
4516         catalog/systemd.catalog
4517
4518 SOCKETS_TARGET_WANTS += \
4519         systemd-journald.socket \
4520         systemd-journald-dev-log.socket \
4521         systemd-journald-audit.socket
4522
4523 SYSINIT_TARGET_WANTS += \
4524         systemd-journald.service \
4525         systemd-journal-flush.service \
4526         systemd-journal-catalog-update.service
4527
4528 EXTRA_DIST += \
4529         units/systemd-journald.service.in \
4530         units/systemd-journal-flush.service.in \
4531         units/systemd-journal-catalog-update.service.in \
4532         src/journal/journald-gperf.gperf
4533
4534 CLEANFILES += \
4535         src/journal/journald-gperf.c
4536
4537 # ------------------------------------------------------------------------------
4538 if HAVE_MICROHTTPD
4539 gatewayddocumentrootdir=$(pkgdatadir)/gatewayd
4540
4541 rootlibexec_PROGRAMS += \
4542         systemd-journal-gatewayd
4543
4544 systemd_journal_gatewayd_SOURCES = \
4545         src/journal-remote/journal-gatewayd.c \
4546         src/journal-remote/microhttpd-util.h \
4547         src/journal-remote/microhttpd-util.c
4548
4549 systemd_journal_gatewayd_LDADD = \
4550         libsystemd-logs.la \
4551         libsystemd-journal-internal.la \
4552         libsystemd-internal.la \
4553         libsystemd-shared.la \
4554         $(MICROHTTPD_LIBS)
4555
4556 if HAVE_GNUTLS
4557 systemd_journal_gatewayd_LDADD += \
4558         $(GNUTLS_LIBS)
4559 endif
4560
4561 systemd_journal_gatewayd_CFLAGS = \
4562         $(AM_CFLAGS) \
4563         $(MICROHTTPD_CFLAGS)
4564
4565 systemd_journal_gatewayd_CPPFLAGS = \
4566         $(AM_CPPFLAGS) \
4567         -DDOCUMENT_ROOT=\"$(gatewayddocumentrootdir)\"
4568
4569 dist_systemunit_DATA += \
4570         units/systemd-journal-gatewayd.socket
4571
4572 nodist_systemunit_DATA += \
4573         units/systemd-journal-gatewayd.service
4574
4575 dist_gatewayddocumentroot_DATA = \
4576         src/journal-remote/browse.html
4577
4578 endif
4579
4580 EXTRA_DIST += \
4581         units/systemd-journal-gatewayd.service.in
4582
4583 # ------------------------------------------------------------------------------
4584
4585 systemd_socket_proxyd_SOURCES = \
4586         src/socket-proxy/socket-proxyd.c
4587
4588 systemd_socket_proxyd_LDADD = \
4589         libsystemd-logs.la \
4590         libsystemd-internal.la \
4591         libsystemd-journal-internal.la \
4592         libsystemd-shared.la \
4593         libsystemd-resolve.la
4594
4595 # ------------------------------------------------------------------------------
4596 if ENABLE_COREDUMP
4597 systemd_coredump_SOURCES = \
4598         src/journal/coredump.c \
4599         src/journal/coredump-vacuum.c \
4600         src/journal/coredump-vacuum.h
4601
4602 systemd_coredump_LDADD = \
4603         libsystemd-journal-internal.la \
4604         libsystemd-label.la \
4605         libsystemd-internal.la \
4606         libsystemd-shared.la
4607
4608 if HAVE_ELFUTILS
4609 systemd_coredump_SOURCES += \
4610         src/journal/stacktrace.c \
4611         src/journal/stacktrace.h
4612
4613 systemd_coredump_LDADD += \
4614         $(ELFUTILS_LIBS)
4615 endif
4616
4617 rootlibexec_PROGRAMS += \
4618         systemd-coredump
4619
4620 dist_pkgsysconf_DATA += \
4621         src/journal/coredump.conf
4622
4623 if HAVE_ACL
4624 systemd_coredump_LDADD += \
4625         libsystemd-acl.la
4626 endif
4627
4628 coredumpctl_SOURCES = \
4629         src/journal/coredumpctl.c
4630
4631 coredumpctl_LDADD = \
4632         libsystemd-journal-internal.la \
4633         libsystemd-internal.la \
4634         libsystemd-shared.la
4635
4636 bin_PROGRAMS += \
4637         coredumpctl
4638
4639 manual_tests += \
4640         test-coredump-vacuum
4641
4642 test_coredump_vacuum_SOURCES = \
4643         src/journal/test-coredump-vacuum.c  \
4644         src/journal/coredump-vacuum.c \
4645         src/journal/coredump-vacuum.h
4646
4647 test_coredump_vacuum_LDADD = \
4648         libsystemd-internal.la \
4649         libsystemd-shared.la
4650
4651 dist_bashcompletion_DATA += \
4652         shell-completion/bash/coredumpctl
4653
4654 dist_zshcompletion_DATA += \
4655         shell-completion/zsh/_coredumpctl
4656
4657 sysctl_DATA = \
4658         sysctl.d/50-coredump.conf
4659
4660 CLEANFILES += \
4661         sysctl.d/50-coredump.conf
4662 endif
4663
4664 EXTRA_DIST += \
4665         sysctl.d/50-coredump.conf.in
4666
4667 # ------------------------------------------------------------------------------
4668 if ENABLE_BINFMT
4669 systemd_binfmt_SOURCES = \
4670         src/binfmt/binfmt.c
4671
4672 systemd_binfmt_LDADD = \
4673         libsystemd-shared.la
4674
4675 rootlibexec_PROGRAMS += \
4676         systemd-binfmt
4677
4678 dist_systemunit_DATA += \
4679         units/proc-sys-fs-binfmt_misc.automount \
4680         units/proc-sys-fs-binfmt_misc.mount
4681
4682 nodist_systemunit_DATA += \
4683         units/systemd-binfmt.service
4684
4685 INSTALL_DIRS += \
4686         $(prefix)/lib/binfmt.d \
4687         $(sysconfdir)/binfmt.d
4688
4689 SYSINIT_TARGET_WANTS += \
4690         systemd-binfmt.service \
4691         proc-sys-fs-binfmt_misc.automount
4692
4693 endif
4694
4695 EXTRA_DIST += \
4696         units/systemd-binfmt.service.in
4697
4698 # ------------------------------------------------------------------------------
4699 if ENABLE_VCONSOLE
4700 systemd_vconsole_setup_SOURCES = \
4701         src/vconsole/vconsole-setup.c
4702
4703 systemd_vconsole_setup_LDADD = \
4704         libsystemd-shared.la
4705
4706 rootlibexec_PROGRAMS += \
4707         systemd-vconsole-setup
4708
4709 nodist_systemunit_DATA += \
4710         units/systemd-vconsole-setup.service
4711
4712 nodist_udevrules_DATA += \
4713         src/vconsole/90-vconsole.rules
4714
4715 SYSINIT_TARGET_WANTS += \
4716         systemd-vconsole-setup.service
4717
4718 CLEANFILES += \
4719         src/vconsole/90-vconsole.rules
4720 endif
4721
4722 EXTRA_DIST += \
4723         src/vconsole/90-vconsole.rules.in \
4724         units/systemd-vconsole-setup.service.in
4725
4726 # ------------------------------------------------------------------------------
4727 if ENABLE_BOOTCHART
4728 systemd_bootchart_SOURCES = \
4729         src/bootchart/bootchart.c \
4730         src/bootchart/bootchart.h \
4731         src/bootchart/store.c \
4732         src/bootchart/store.h \
4733         src/bootchart/svg.c \
4734         src/bootchart/svg.h
4735
4736 systemd_bootchart_LDADD = \
4737         libsystemd-journal-internal.la \
4738         libsystemd-shared.la
4739
4740 rootlibexec_PROGRAMS += \
4741         systemd-bootchart
4742
4743 dist_pkgsysconf_DATA += \
4744         src/bootchart/bootchart.conf
4745
4746 nodist_systemunit_DATA += \
4747         units/systemd-bootchart.service
4748
4749 EXTRA_DIST += \
4750         units/systemd-bootchart.service.in
4751
4752 CLEANFILES += \
4753         units/systemd-bootchart.service
4754 endif
4755
4756 # ------------------------------------------------------------------------------
4757 if ENABLE_QUOTACHECK
4758 rootlibexec_PROGRAMS += \
4759         systemd-quotacheck
4760
4761 nodist_systemunit_DATA += \
4762         units/systemd-quotacheck.service
4763
4764 systemd_quotacheck_SOURCES = \
4765         src/quotacheck/quotacheck.c
4766
4767 systemd_quotacheck_LDADD = \
4768         libsystemd-shared.la
4769 endif
4770
4771 EXTRA_DIST += \
4772         units/systemd-quotacheck.service.in
4773
4774 nodist_systemunit_DATA += \
4775         units/quotaon.service
4776
4777 # ------------------------------------------------------------------------------
4778 if ENABLE_RANDOMSEED
4779 rootlibexec_PROGRAMS += \
4780         systemd-random-seed
4781
4782 nodist_systemunit_DATA += \
4783         units/systemd-random-seed.service
4784
4785 systemd_random_seed_SOURCES = \
4786         src/random-seed/random-seed.c
4787
4788 systemd_random_seed_LDADD = \
4789         libsystemd-label.la \
4790         libsystemd-shared.la
4791
4792 SYSINIT_TARGET_WANTS += \
4793         systemd-random-seed.service
4794
4795 endif
4796
4797 EXTRA_DIST += \
4798         units/systemd-random-seed.service.in
4799
4800 # ------------------------------------------------------------------------------
4801 if ENABLE_BACKLIGHT
4802 rootlibexec_PROGRAMS += \
4803         systemd-backlight
4804
4805 nodist_systemunit_DATA += \
4806         units/systemd-backlight@.service
4807
4808 systemd_backlight_SOURCES = \
4809         src/backlight/backlight.c
4810
4811 systemd_backlight_LDADD = \
4812         libsystemd-label.la \
4813         libudev-internal.la \
4814         libsystemd-shared.la
4815 endif
4816
4817 EXTRA_DIST += \
4818         units/systemd-backlight@.service.in
4819
4820 # ------------------------------------------------------------------------------
4821 if ENABLE_RFKILL
4822 rootlibexec_PROGRAMS += \
4823         systemd-rfkill
4824
4825 nodist_systemunit_DATA += \
4826         units/systemd-rfkill@.service
4827
4828 systemd_rfkill_SOURCES = \
4829         src/rfkill/rfkill.c
4830
4831 systemd_rfkill_LDADD = \
4832         libsystemd-label.la \
4833         libudev-internal.la \
4834         libsystemd-shared.la
4835 endif
4836
4837 EXTRA_DIST += \
4838         units/systemd-rfkill@.service.in
4839
4840 # ------------------------------------------------------------------------------
4841 if HAVE_LIBCRYPTSETUP
4842 rootlibexec_PROGRAMS += \
4843         systemd-cryptsetup
4844
4845 systemgenerator_PROGRAMS += \
4846         systemd-cryptsetup-generator
4847
4848 dist_systemunit_DATA += \
4849         units/cryptsetup.target \
4850         units/cryptsetup-pre.target
4851
4852 systemd_cryptsetup_SOURCES = \
4853         src/cryptsetup/cryptsetup.c
4854
4855 systemd_cryptsetup_CFLAGS = \
4856         $(AM_CFLAGS) \
4857         $(LIBCRYPTSETUP_CFLAGS)
4858
4859 systemd_cryptsetup_LDADD = \
4860         libsystemd-label.la \
4861         libudev-internal.la \
4862         libsystemd-shared.la \
4863         $(LIBCRYPTSETUP_LIBS)
4864
4865 systemd_cryptsetup_generator_SOURCES = \
4866         src/cryptsetup/cryptsetup-generator.c
4867
4868 systemd_cryptsetup_generator_LDADD = \
4869         libsystemd-label.la \
4870         libsystemd-shared.la
4871
4872 SYSINIT_TARGET_WANTS += \
4873         cryptsetup.target
4874
4875 endif
4876
4877 # ------------------------------------------------------------------------------
4878 if ENABLE_HOSTNAMED
4879 systemd_hostnamed_SOURCES = \
4880         src/hostname/hostnamed.c
4881
4882 systemd_hostnamed_LDADD = \
4883         libsystemd-label.la \
4884         libsystemd-internal.la \
4885         libsystemd-shared.la
4886
4887 rootlibexec_PROGRAMS += \
4888         systemd-hostnamed
4889
4890 nodist_systemunit_DATA += \
4891         units/systemd-hostnamed.service
4892
4893 dist_systemunit_DATA_busnames += \
4894         units/org.freedesktop.hostname1.busname
4895
4896 dist_dbuspolicy_DATA += \
4897         src/hostname/org.freedesktop.hostname1.conf
4898
4899 dist_dbussystemservice_DATA += \
4900         src/hostname/org.freedesktop.hostname1.service
4901
4902 polkitpolicy_files += \
4903         src/hostname/org.freedesktop.hostname1.policy
4904
4905 SYSTEM_UNIT_ALIASES += \
4906         systemd-hostnamed.service dbus-org.freedesktop.hostname1.service
4907
4908 BUSNAMES_TARGET_WANTS += \
4909         org.freedesktop.hostname1.busname
4910
4911 hostnamectl_SOURCES = \
4912         src/hostname/hostnamectl.c
4913
4914 hostnamectl_LDADD = \
4915         libsystemd-internal.la \
4916         libsystemd-shared.la
4917
4918 bin_PROGRAMS += \
4919         hostnamectl
4920
4921 dist_bashcompletion_DATA += \
4922         shell-completion/bash/hostnamectl
4923
4924 dist_zshcompletion_DATA += \
4925         shell-completion/zsh/_hostnamectl
4926
4927 endif
4928
4929 polkitpolicy_in_files += \
4930         src/hostname/org.freedesktop.hostname1.policy.in
4931
4932 EXTRA_DIST += \
4933         units/systemd-hostnamed.service.in
4934
4935 # ------------------------------------------------------------------------------
4936 dist_systemunit_DATA_busnames += \
4937         units/org.freedesktop.systemd1.busname
4938
4939 BUSNAMES_TARGET_WANTS += \
4940         org.freedesktop.systemd1.busname
4941
4942 # ------------------------------------------------------------------------------
4943 if ENABLE_LOCALED
4944 systemd_localed_SOURCES = \
4945         src/locale/localed.c
4946
4947 systemd_localed_LDADD = \
4948         libsystemd-label.la \
4949         libsystemd-internal.la \
4950         libsystemd-shared.la \
4951         $(XKBCOMMON_LIBS)
4952
4953 systemd_localed_CFLAGS = \
4954         $(AM_CFLAGS) \
4955         $(XKBCOMMON_CFLAGS)
4956
4957 nodist_systemunit_DATA += \
4958         units/systemd-localed.service
4959
4960 dist_systemunit_DATA_busnames += \
4961         units/org.freedesktop.locale1.busname
4962
4963 rootlibexec_PROGRAMS += \
4964         systemd-localed
4965
4966 dist_dbuspolicy_DATA += \
4967         src/locale/org.freedesktop.locale1.conf
4968
4969 dist_dbussystemservice_DATA += \
4970         src/locale/org.freedesktop.locale1.service
4971
4972 polkitpolicy_files += \
4973         src/locale/org.freedesktop.locale1.policy
4974
4975 SYSTEM_UNIT_ALIASES += \
4976         systemd-localed.service dbus-org.freedesktop.locale1.service
4977
4978 BUSNAMES_TARGET_WANTS += \
4979         org.freedesktop.locale1.busname
4980
4981 dist_pkgdata_DATA += \
4982         src/locale/kbd-model-map
4983
4984 dist_noinst_SCRIPT = \
4985         src/locale/generate-kbd-model-map
4986
4987 localectl_SOURCES = \
4988         src/locale/localectl.c
4989
4990 localectl_LDADD = \
4991         libsystemd-internal.la \
4992         libsystemd-shared.la
4993
4994 bin_PROGRAMS += \
4995         localectl
4996
4997 dist_bashcompletion_DATA += \
4998         shell-completion/bash/localectl
4999
5000 dist_zshcompletion_DATA += \
5001         shell-completion/zsh/_localectl
5002
5003 endif
5004
5005 .PHONY: update-kbd-model-map
5006
5007 polkitpolicy_in_files += \
5008         src/locale/org.freedesktop.locale1.policy.in
5009
5010 EXTRA_DIST += \
5011         units/systemd-localed.service.in
5012
5013 # ------------------------------------------------------------------------------
5014 if ENABLE_TIMEDATED
5015 systemd_timedated_SOURCES = \
5016         src/timedate/timedated.c
5017
5018 systemd_timedated_LDADD = \
5019         libsystemd-label.la \
5020         libsystemd-internal.la \
5021         libsystemd-shared.la
5022
5023 rootlibexec_PROGRAMS += \
5024         systemd-timedated
5025
5026 dist_dbussystemservice_DATA += \
5027         src/timedate/org.freedesktop.timedate1.service
5028
5029 dist_dbuspolicy_DATA += \
5030         src/timedate/org.freedesktop.timedate1.conf
5031
5032 nodist_systemunit_DATA += \
5033         units/systemd-timedated.service
5034
5035 dist_systemunit_DATA_busnames += \
5036         units/org.freedesktop.timedate1.busname
5037
5038 polkitpolicy_files += \
5039         src/timedate/org.freedesktop.timedate1.policy
5040
5041 SYSTEM_UNIT_ALIASES += \
5042         systemd-timedated.service dbus-org.freedesktop.timedate1.service
5043
5044 BUSNAMES_TARGET_WANTS += \
5045         org.freedesktop.timedate1.busname
5046
5047 timedatectl_SOURCES = \
5048         src/timedate/timedatectl.c
5049
5050 timedatectl_LDADD = \
5051         libsystemd-internal.la \
5052         libsystemd-shared.la
5053
5054 bin_PROGRAMS += \
5055         timedatectl
5056
5057 dist_bashcompletion_DATA += \
5058         shell-completion/bash/timedatectl
5059
5060 dist_zshcompletion_DATA += \
5061         shell-completion/zsh/_timedatectl
5062 endif
5063
5064 polkitpolicy_in_files += \
5065         src/timedate/org.freedesktop.timedate1.policy.in
5066
5067 EXTRA_DIST += \
5068         units/systemd-timedated.service.in
5069
5070 # ------------------------------------------------------------------------------
5071 if ENABLE_TIMESYNCD
5072 systemd_timesyncd_SOURCES = \
5073         src/timesync/timesyncd.c \
5074         src/timesync/timesyncd-manager.c \
5075         src/timesync/timesyncd-manager.h \
5076         src/timesync/timesyncd-conf.c \
5077         src/timesync/timesyncd-conf.h \
5078         src/timesync/timesyncd-server.c \
5079         src/timesync/timesyncd-server.h
5080
5081 nodist_systemd_timesyncd_SOURCES = \
5082         src/timesync/timesyncd-gperf.c
5083
5084 EXTRA_DIST += \
5085         src/timesync/timesyncd-gperf.gperf
5086
5087 CLEANFILES += \
5088         src/timesync/timesyncd-gperf.c
5089
5090 systemd_timesyncd_LDADD = \
5091         libsystemd-resolve.la \
5092         libsystemd-network.la \
5093         libsystemd-label.la \
5094         libsystemd-internal.la \
5095         libsystemd-shared.la
5096
5097 rootlibexec_PROGRAMS += \
5098         systemd-timesyncd
5099
5100 nodist_systemunit_DATA += \
5101         units/systemd-timesyncd.service
5102
5103 GENERAL_ALIASES += \
5104         $(systemunitdir)/systemd-timesyncd.service $(pkgsysconfdir)/system/sysinit.target.wants/systemd-timesyncd.service
5105
5106 EXTRA_DIST += \
5107         units/systemd-timesyncd.service.in
5108
5109 nodist_pkgsysconf_DATA += \
5110         src/timesync/timesyncd.conf
5111
5112 EXTRA_DIST += \
5113         src/timesync/timesyncd.conf.in
5114
5115 CLEANFILES += \
5116         src/timesync/timesyncd.conf
5117 endif
5118
5119 # ------------------------------------------------------------------------------
5120 if HAVE_MYHOSTNAME
5121 libnss_myhostname_la_SOURCES = \
5122         src/nss-myhostname/nss-myhostname.sym \
5123         src/nss-myhostname/nss-myhostname.c
5124
5125 libnss_myhostname_la_LDFLAGS = \
5126         $(AM_LDFLAGS) \
5127         -module \
5128         -export-dynamic \
5129         -avoid-version \
5130         -shared \
5131         -shrext .so.2 \
5132         -Wl,--version-script=$(top_srcdir)/src/nss-myhostname/nss-myhostname.sym
5133
5134 libnss_myhostname_la_LIBADD = \
5135         libsystemd-shared.la \
5136         libsystemd-internal.la
5137
5138 lib_LTLIBRARIES += \
5139         libnss_myhostname.la
5140 endif
5141
5142 # ------------------------------------------------------------------------------
5143 if ENABLE_MACHINED
5144 systemd_machined_SOURCES = \
5145         src/machine/machined.c \
5146         src/machine/machined.h
5147
5148 systemd_machined_LDADD = \
5149         libsystemd-machine-core.la
5150
5151 rootlibexec_PROGRAMS += \
5152         systemd-machined
5153
5154 libsystemd_machine_core_la_SOURCES = \
5155         src/machine/machine.c \
5156         src/machine/machine.h \
5157         src/machine/machined-dbus.c \
5158         src/machine/machine-dbus.c \
5159         src/machine/machine-dbus.h \
5160         src/machine/image-dbus.c \
5161         src/machine/image-dbus.h
5162
5163 libsystemd_machine_core_la_LIBADD = \
5164         libsystemd-label.la \
5165         libsystemd-internal.la \
5166         libudev-internal.la \
5167         libsystemd-shared.la
5168
5169 noinst_LTLIBRARIES += \
5170         libsystemd-machine-core.la
5171
5172 machinectl_SOURCES = \
5173         src/machine/machinectl.c
5174
5175 machinectl_LDADD = \
5176         libsystemd-internal.la \
5177         libsystemd-logs.la \
5178         libsystemd-journal-internal.la \
5179         libsystemd-shared.la
5180
5181 rootbin_PROGRAMS += \
5182         machinectl
5183
5184 dist_bashcompletion_DATA += \
5185         shell-completion/bash/machinectl
5186
5187 test_machine_tables_SOURCES = \
5188         src/machine/test-machine-tables.c
5189
5190 test_machine_tables_LDADD = \
5191         libsystemd-machine-core.la
5192
5193 tests += \
5194         test-machine-tables
5195
5196 nodist_systemunit_DATA += \
5197         units/systemd-machined.service
5198
5199 dist_systemunit_DATA += \
5200         units/machine.slice
5201
5202 dist_systemunit_DATA_busnames += \
5203         units/org.freedesktop.machine1.busname
5204
5205 dist_dbussystemservice_DATA += \
5206         src/machine/org.freedesktop.machine1.service
5207
5208 dist_dbuspolicy_DATA += \
5209         src/machine/org.freedesktop.machine1.conf
5210
5211 polkitpolicy_files += \
5212         src/machine/org.freedesktop.machine1.policy
5213
5214 polkitpolicy_in_files += \
5215         src/machine/org.freedesktop.machine1.policy.in
5216
5217 dist_zshcompletion_DATA += \
5218         shell-completion/zsh/_machinectl \
5219         shell-completion/zsh/_sd_machines
5220
5221 SYSTEM_UNIT_ALIASES += \
5222         systemd-machined.service dbus-org.freedesktop.machine1.service
5223
5224 BUSNAMES_TARGET_WANTS += \
5225         org.freedesktop.machine1.busname
5226
5227 EXTRA_DIST += \
5228         units/systemd-machined.service.in
5229
5230 libnss_mymachines_la_SOURCES = \
5231         src/nss-mymachines/nss-mymachines.sym \
5232         src/nss-mymachines/nss-mymachines.c
5233
5234 libnss_mymachines_la_LDFLAGS = \
5235         $(AM_LDFLAGS) \
5236         -module \
5237         -export-dynamic \
5238         -avoid-version \
5239         -shared \
5240         -shrext .so.2 \
5241         -Wl,--version-script=$(top_srcdir)/src/nss-mymachines/nss-mymachines.sym
5242
5243 libnss_mymachines_la_LIBADD = \
5244         libsystemd-shared.la \
5245         libsystemd-internal.la
5246
5247 lib_LTLIBRARIES += \
5248         libnss_mymachines.la
5249
5250 if HAVE_LIBCURL
5251 if HAVE_XZ
5252 if HAVE_ZLIB
5253 if HAVE_BZIP2
5254 if HAVE_GCRYPT
5255
5256 bin_PROGRAMS += \
5257         systemd-import
5258
5259 systemd_import_SOURCES = \
5260         src/import/import.c \
5261         src/import/import-raw.c \
5262         src/import/import-raw.h \
5263         src/import/import-tar.c \
5264         src/import/import-tar.h \
5265         src/import/import-dkr.c \
5266         src/import/import-dkr.h \
5267         src/import/import-job.c \
5268         src/import/import-job.h \
5269         src/import/import-util.c \
5270         src/import/import-util.h \
5271         src/import/curl-util.c \
5272         src/import/curl-util.h \
5273         src/import/aufs-util.c \
5274         src/import/aufs-util.h \
5275         src/import/qcow2-util.c \
5276         src/import/qcow2-util.h
5277
5278 systemd_import_CFLAGS = \
5279         $(AM_CFLAGS) \
5280         $(LIBCURL_CFLAGS) \
5281         $(XZ_CFLAGS) \
5282         $(ZLIB_CFLAGS) \
5283         $(GCRYPT_CFLAGS) \
5284         -D VENDOR_KEYRING_PATH=\"$(rootlibexecdir)/import-pubring.gpg\" \
5285         -D USER_KEYRING_PATH=\"$(pkgsysconfdir)/import-pubring.gpg\"
5286
5287 systemd_import_LDADD = \
5288         libsystemd-internal.la \
5289         libsystemd-label.la \
5290         libsystemd-shared.la \
5291         $(LIBCURL_LIBS) \
5292         $(XZ_LIBS) \
5293         $(ZLIB_LIBS) \
5294         -lbz2 \
5295         $(GCRYPT_LIBS)
5296
5297 manual_tests += \
5298         test-qcow2
5299
5300 test_qcow2_SOURCES = \
5301         src/import/test-qcow2.c \
5302         src/import/qcow2-util.c \
5303         src/import/qcow2-util.h
5304
5305 test_qcow2_CFLAGS = \
5306         $(AM_CFLAGS) \
5307         $(ZLIB_CFLAGS)
5308
5309 test_qcow2_LDADD = \
5310         libsystemd-internal.la \
5311         libsystemd-label.la \
5312         libsystemd-shared.la \
5313         $(ZLIB_LIBS)
5314
5315 dist_rootlibexec_DATA = \
5316         src/import/import-pubring.gpg
5317 endif
5318 endif
5319 endif
5320 endif
5321 endif
5322
5323 endif
5324
5325 # ------------------------------------------------------------------------------
5326 if ENABLE_RESOLVED
5327 systemd_resolved_SOURCES = \
5328         src/resolve/resolved.c \
5329         src/resolve/resolved-manager.c \
5330         src/resolve/resolved-manager.h \
5331         src/resolve/resolved-conf.c \
5332         src/resolve/resolved-conf.h \
5333         src/resolve/resolved-bus.c \
5334         src/resolve/resolved-bus.h \
5335         src/resolve/resolved-link.h \
5336         src/resolve/resolved-link.c \
5337         src/resolve/resolved-def.h \
5338         src/resolve/resolved-dns-domain.h \
5339         src/resolve/resolved-dns-domain.c \
5340         src/resolve/resolved-dns-rr.h \
5341         src/resolve/resolved-dns-rr.c \
5342         src/resolve/resolved-dns-question.h \
5343         src/resolve/resolved-dns-question.c \
5344         src/resolve/resolved-dns-answer.h \
5345         src/resolve/resolved-dns-answer.c \
5346         src/resolve/resolved-dns-packet.h \
5347         src/resolve/resolved-dns-packet.c \
5348         src/resolve/resolved-dns-query.h \
5349         src/resolve/resolved-dns-query.c \
5350         src/resolve/resolved-dns-transaction.h \
5351         src/resolve/resolved-dns-transaction.c \
5352         src/resolve/resolved-dns-scope.h \
5353         src/resolve/resolved-dns-scope.c \
5354         src/resolve/resolved-dns-server.h \
5355         src/resolve/resolved-dns-server.c \
5356         src/resolve/resolved-dns-cache.h \
5357         src/resolve/resolved-dns-cache.c \
5358         src/resolve/resolved-dns-zone.h \
5359         src/resolve/resolved-dns-zone.c \
5360         src/resolve/resolved-dns-stream.h \
5361         src/resolve/resolved-dns-stream.c \
5362         src/resolve/dns-type.c \
5363         src/resolve/dns-type.h \
5364         src/resolve/dns_type-from-name.h \
5365         src/resolve/dns_type-to-name.h
5366
5367 nodist_systemd_resolved_SOURCES = \
5368         src/resolve/resolved-gperf.c
5369
5370 EXTRA_DIST += \
5371         src/resolve/resolved-gperf.gperf \
5372         src/resolve/dns_type-from-name.gperf
5373
5374 CLEANFILES += \
5375         src/resolve/resolved-gperf.c
5376
5377 systemd_resolved_LDADD = \
5378         libsystemd-network.la \
5379         libsystemd-label.la \
5380         libsystemd-internal.la \
5381         libsystemd-shared.la \
5382         $(LIBIDN_LIBS)
5383
5384 rootlibexec_PROGRAMS += \
5385         systemd-resolved
5386
5387 nodist_systemunit_DATA += \
5388         units/systemd-resolved.service
5389
5390 dist_systemunit_DATA_busnames += \
5391         units/org.freedesktop.resolve1.busname
5392
5393 dist_dbuspolicy_DATA += \
5394         src/resolve/org.freedesktop.resolve1.conf
5395
5396 dist_dbussystemservice_DATA += \
5397         src/resolve/org.freedesktop.resolve1.service
5398
5399 EXTRA_DIST += \
5400         units/systemd-resolved.service.in
5401
5402 SYSTEM_UNIT_ALIASES += \
5403         systemd-resolved.service dbus-org.freedesktop.resolve1.service
5404
5405 BUSNAMES_TARGET_WANTS += \
5406         org.freedesktop.resolve1.busname
5407
5408 GENERAL_ALIASES += \
5409         $(systemunitdir)/systemd-resolved.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-resolved.service
5410
5411 nodist_pkgsysconf_DATA += \
5412         src/resolve/resolved.conf
5413
5414 EXTRA_DIST += \
5415         src/resolve/resolved.conf.in
5416
5417 CLEANFILES += \
5418         src/resolve/resolved.conf
5419
5420 tests += \
5421         test-dns-domain
5422
5423 test_dns_domain_SOURCES = \
5424         src/resolve/resolved-dns-domain.h \
5425         src/resolve/resolved-dns-domain.c \
5426         src/resolve/test-dns-domain.c
5427
5428 test_dns_domain_LDADD = \
5429         libsystemd-network.la \
5430         libsystemd-label.la \
5431         libsystemd-internal.la \
5432         libsystemd-shared.la \
5433         $(LIBIDN_LIBS)
5434
5435 libnss_resolve_la_SOURCES = \
5436         src/nss-resolve/nss-resolve.sym \
5437         src/nss-resolve/nss-resolve.c
5438
5439 libnss_resolve_la_LDFLAGS = \
5440         $(AM_LDFLAGS) \
5441         -module \
5442         -export-dynamic \
5443         -avoid-version \
5444         -shared \
5445         -shrext .so.2 \
5446         -Wl,--version-script=$(top_srcdir)/src/nss-resolve/nss-resolve.sym
5447
5448 libnss_resolve_la_LIBADD = \
5449         libsystemd-internal.la \
5450         libsystemd-shared.la
5451
5452 lib_LTLIBRARIES += \
5453         libnss_resolve.la
5454
5455 systemd_resolve_host_SOURCES = \
5456         src/resolve-host/resolve-host.c \
5457         src/resolve/resolved-dns-packet.c \
5458         src/resolve/resolved-dns-packet.h \
5459         src/resolve/resolved-dns-rr.c \
5460         src/resolve/resolved-dns-rr.h \
5461         src/resolve/resolved-dns-answer.c \
5462         src/resolve/resolved-dns-answer.h \
5463         src/resolve/resolved-dns-question.c \
5464         src/resolve/resolved-dns-question.h \
5465         src/resolve/resolved-dns-domain.c \
5466         src/resolve/resolved-dns-domain.h \
5467         src/resolve/dns-type.c \
5468         src/resolve/dns-type.h \
5469         src/resolve/dns_type-from-name.h \
5470         src/resolve/dns_type-to-name.h
5471
5472 systemd_resolve_host_LDADD = \
5473         libsystemd-internal.la \
5474         libsystemd-shared.la \
5475         $(LIBIDN_LIBS)
5476
5477 rootlibexec_PROGRAMS += \
5478         systemd-resolve-host
5479
5480 endif
5481
5482 # ------------------------------------------------------------------------------
5483 if ENABLE_NETWORKD
5484 rootlibexec_PROGRAMS += \
5485         systemd-networkd
5486
5487 systemd_networkd_SOURCES = \
5488         src/network/networkd.c
5489
5490 systemd_networkd_LDADD = \
5491         libsystemd-networkd-core.la
5492
5493 if HAVE_LIBIPTC
5494 systemd_networkd_LDADD += \
5495         libsystemd-fw.la
5496 endif
5497
5498 noinst_LTLIBRARIES += \
5499         libsystemd-networkd-core.la
5500
5501 libsystemd_networkd_core_la_CFLAGS = \
5502         $(AM_CFLAGS)
5503
5504 libsystemd_networkd_core_la_SOURCES = \
5505         src/libsystemd-network/network-internal.h \
5506         src/network/networkd.h \
5507         src/network/networkd-link.h \
5508         src/network/networkd-netdev.h \
5509         src/network/networkd-netdev-tunnel.h \
5510         src/network/networkd-netdev-veth.h \
5511         src/network/networkd-netdev-vxlan.h \
5512         src/network/networkd-netdev-vlan.h \
5513         src/network/networkd-netdev-macvlan.h \
5514         src/network/networkd-netdev-ipvlan.h \
5515         src/network/networkd-netdev-dummy.h \
5516         src/network/networkd-netdev-tuntap.h \
5517         src/network/networkd-netdev-bond.h \
5518         src/network/networkd-netdev-bridge.h \
5519         src/network/networkd-netdev.c \
5520         src/network/networkd-netdev-tunnel.c \
5521         src/network/networkd-netdev-veth.c \
5522         src/network/networkd-netdev-vxlan.c \
5523         src/network/networkd-netdev-vlan.c \
5524         src/network/networkd-netdev-macvlan.c \
5525         src/network/networkd-netdev-ipvlan.c \
5526         src/network/networkd-netdev-dummy.c \
5527         src/network/networkd-netdev-tuntap.c \
5528         src/network/networkd-netdev-bond.c \
5529         src/network/networkd-netdev-bridge.c \
5530         src/network/networkd-link.c \
5531         src/network/networkd-ipv4ll.c \
5532         src/network/networkd-dhcp4.c \
5533         src/network/networkd-dhcp6.c \
5534         src/network/networkd-network.c \
5535         src/network/networkd-address.c \
5536         src/network/networkd-route.c \
5537         src/network/networkd-manager.c \
5538         src/network/networkd-fdb.c \
5539         src/network/networkd-address-pool.c
5540
5541 nodist_libsystemd_networkd_core_la_SOURCES = \
5542         src/network/networkd-network-gperf.c \
5543         src/network/networkd-netdev-gperf.c
5544
5545 libsystemd_networkd_core_la_LIBADD = \
5546         libudev-internal.la \
5547         libsystemd-internal.la \
5548         libsystemd-network.la \
5549         libsystemd-label.la \
5550         libsystemd-shared.la
5551
5552 rootlibexec_PROGRAMS += \
5553         systemd-networkd-wait-online
5554
5555 systemd_networkd_wait_online_CFLAGS = \
5556         $(AM_CFLAGS)
5557
5558 systemd_networkd_wait_online_SOURCES = \
5559         src/libsystemd-network/network-internal.h \
5560         src/network/networkd-wait-online.h \
5561         src/network/networkd-wait-online-link.h \
5562         src/network/networkd-wait-online.c \
5563         src/network/networkd-wait-online-manager.c \
5564         src/network/networkd-wait-online-link.c
5565
5566 systemd_networkd_wait_online_LDADD = \
5567         libsystemd-network.la \
5568         libudev-internal.la \
5569         libsystemd-internal.la \
5570         libsystemd-shared.la
5571
5572 rootbin_PROGRAMS += \
5573         networkctl
5574
5575 networkctl_SOURCES = \
5576         src/network/networkctl.c
5577
5578 networkctl_LDADD = \
5579         libsystemd-internal.la \
5580         libudev-internal.la \
5581         libsystemd-shared.la \
5582         libsystemd-network.la
5583
5584 test_network_SOURCES = \
5585         src/network/test-network.c
5586
5587 test_network_LDADD = \
5588         libsystemd-networkd-core.la
5589
5590 if HAVE_LIBIPTC
5591 test_network_LDADD += \
5592         libsystemd-fw.la
5593 endif
5594
5595 test_network_tables_SOURCES = \
5596         src/network/test-network-tables.c \
5597         src/shared/test-tables.h
5598
5599 test_network_tables_LDADD = \
5600         libsystemd-networkd-core.la \
5601         libudev-core.la
5602
5603 if HAVE_LIBIPTC
5604 test_network_tables_LDADD += \
5605         libsystemd-fw.la
5606 endif
5607
5608 tests += \
5609         test-network \
5610         test-network-tables
5611
5612 nodist_systemunit_DATA += \
5613         units/systemd-networkd.service \
5614         units/systemd-networkd-wait-online.service
5615
5616 GENERAL_ALIASES += \
5617         $(systemunitdir)/systemd-networkd.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-networkd.service \
5618         $(systemunitdir)/systemd-networkd-wait-online.service $(pkgsysconfdir)/system/network-online.target.wants/systemd-networkd-wait-online.service
5619
5620 EXTRA_DIST += \
5621         src/network/networkd-network-gperf.gperf \
5622         src/network/networkd-netdev-gperf.gperf \
5623         units/systemd-networkd.service.in \
5624         units/systemd-networkd-wait-online.service.in
5625
5626 CLEANFILES += \
5627         src/network/networkd-network-gperf.c \
5628         src/network/networkd-netdev-gperf.c
5629 endif
5630
5631 # ------------------------------------------------------------------------------
5632 if ENABLE_LOGIND
5633 systemd_logind_SOURCES = \
5634         src/login/logind.c \
5635         src/login/logind.h
5636
5637 nodist_systemd_logind_SOURCES = \
5638         src/login/logind-gperf.c
5639
5640 systemd_logind_LDADD = \
5641         libsystemd-logind-core.la
5642
5643 libsystemd_logind_core_la_SOURCES = \
5644         src/login/logind-core.c \
5645         src/login/logind-device.c \
5646         src/login/logind-device.h \
5647         src/login/logind-button.c \
5648         src/login/logind-button.h \
5649         src/login/logind-action.c \
5650         src/login/logind-action.h \
5651         src/login/logind-seat.c \
5652         src/login/logind-seat.h \
5653         src/login/logind-session.c \
5654         src/login/logind-session.h \
5655         src/login/logind-session-device.c \
5656         src/login/logind-session-device.h \
5657         src/login/logind-user.c \
5658         src/login/logind-user.h \
5659         src/login/logind-inhibit.c \
5660         src/login/logind-inhibit.h \
5661         src/login/logind-dbus.c \
5662         src/login/logind-session-dbus.c \
5663         src/login/logind-seat-dbus.c \
5664         src/login/logind-user-dbus.c \
5665         src/login/logind-acl.h
5666
5667 libsystemd_logind_core_la_LIBADD = \
5668         libsystemd-label.la \
5669         libsystemd-internal.la \
5670         libudev-internal.la \
5671         libsystemd-shared.la
5672
5673 if HAVE_ACL
5674 libsystemd_logind_core_la_SOURCES += \
5675         src/login/logind-acl.c
5676
5677 libsystemd_logind_core_la_LIBADD += \
5678         libsystemd-acl.la
5679 endif
5680
5681 noinst_LTLIBRARIES += \
5682         libsystemd-logind-core.la
5683
5684 systemd_user_sessions_SOURCES = \
5685         src/login/user-sessions.c
5686
5687 systemd_user_sessions_LDADD = \
5688         libsystemd-shared.la
5689
5690 rootlibexec_PROGRAMS += \
5691         systemd-logind \
5692         systemd-user-sessions
5693
5694 loginctl_SOURCES = \
5695         src/login/loginctl.c \
5696         src/login/sysfs-show.h \
5697         src/login/sysfs-show.c
5698
5699 loginctl_LDADD = \
5700         libsystemd-internal.la \
5701         libsystemd-logs.la \
5702         libsystemd-journal-internal.la \
5703         libudev-internal.la \
5704         libsystemd-shared.la
5705
5706 rootbin_PROGRAMS += \
5707         loginctl
5708
5709 dist_bashcompletion_DATA += \
5710         shell-completion/bash/loginctl
5711
5712 dist_zshcompletion_DATA += \
5713         shell-completion/zsh/_loginctl \
5714         shell-completion/zsh/_systemd-inhibit
5715
5716 systemd_inhibit_SOURCES = \
5717         src/login/inhibit.c
5718
5719 systemd_inhibit_LDADD = \
5720         libsystemd-internal.la \
5721         libsystemd-shared.la
5722
5723 rootbin_PROGRAMS += \
5724         systemd-inhibit
5725
5726 test_login_SOURCES = \
5727         src/libsystemd/sd-login/test-login.c
5728
5729 test_login_LDADD = \
5730         libsystemd-internal.la \
5731         libsystemd-shared.la
5732
5733 test_login_shared_SOURCES = \
5734         src/login/test-login-shared.c
5735
5736 test_login_shared_LDADD = \
5737         libsystemd-internal.la \
5738         libsystemd-shared.la
5739
5740 test_inhibit_SOURCES = \
5741         src/login/test-inhibit.c
5742
5743 test_inhibit_LDADD = \
5744         libsystemd-internal.la \
5745         libsystemd-shared.la
5746
5747 test_login_tables_SOURCES = \
5748         src/login/test-login-tables.c
5749
5750 test_login_tables_LDADD = \
5751         libsystemd-logind-core.la
5752
5753 manual_tests += \
5754         test-login \
5755         test-inhibit
5756
5757 tests += \
5758         test-login-tables \
5759         test-login-shared
5760
5761 if HAVE_PAM
5762 pam_systemd_la_SOURCES = \
5763         src/login/pam_systemd.sym \
5764         src/login/pam_systemd.c
5765
5766 pam_systemd_la_CFLAGS = \
5767         $(AM_CFLAGS) \
5768         $(PAM_CFLAGS) \
5769         -fvisibility=hidden
5770
5771 pam_systemd_la_LDFLAGS = \
5772         $(AM_LDFLAGS) \
5773         -module \
5774         -export-dynamic \
5775         -avoid-version \
5776         -shared \
5777         -Wl,--version-script=$(top_srcdir)/src/login/pam_systemd.sym
5778
5779 pam_systemd_la_LIBADD = \
5780         libsystemd-internal.la \
5781         libsystemd-shared.la \
5782         $(PAM_LIBS)
5783
5784 pamlib_LTLIBRARIES = \
5785         pam_systemd.la
5786
5787 dist_pamconf_DATA = \
5788         src/login/systemd-user
5789 endif
5790
5791 nodist_systemunit_DATA += \
5792         units/systemd-logind.service \
5793         units/systemd-user-sessions.service
5794
5795 dist_systemunit_DATA += \
5796         units/user.slice
5797
5798 dist_systemunit_DATA_busnames += \
5799         units/org.freedesktop.login1.busname
5800
5801 dist_dbussystemservice_DATA += \
5802         src/login/org.freedesktop.login1.service
5803
5804 dist_dbuspolicy_DATA += \
5805         src/login/org.freedesktop.login1.conf
5806
5807 dist_pkgsysconf_DATA += \
5808         src/login/logind.conf
5809
5810 polkitpolicy_files += \
5811         src/login/org.freedesktop.login1.policy
5812
5813 INSTALL_DIRS += \
5814         $(systemdstatedir)
5815
5816 MULTI_USER_TARGET_WANTS += \
5817         systemd-logind.service \
5818         systemd-user-sessions.service
5819
5820 SYSTEM_UNIT_ALIASES += \
5821         systemd-logind.service dbus-org.freedesktop.login1.service
5822
5823 BUSNAMES_TARGET_WANTS += \
5824         org.freedesktop.login1.busname
5825
5826 dist_udevrules_DATA += \
5827         src/login/70-uaccess.rules \
5828         src/login/70-power-switch.rules
5829
5830 nodist_udevrules_DATA += \
5831         src/login/71-seat.rules \
5832         src/login/73-seat-late.rules
5833
5834 CLEANFILES += \
5835         src/login/logind-gperf.c \
5836         src/login/71-seat.rules \
5837         src/login/73-seat-late.rules
5838 endif
5839
5840 polkitpolicy_in_files += \
5841         src/login/org.freedesktop.login1.policy.in
5842
5843 EXTRA_DIST += \
5844         src/login/logind-gperf.gperf \
5845         src/login/71-seat.rules.in \
5846         src/login/73-seat-late.rules.in \
5847         units/systemd-logind.service.in \
5848         units/systemd-user-sessions.service.in
5849
5850 # ------------------------------------------------------------------------------
5851 if HAVE_PYTHON_DEVEL
5852 pkgpyexec_LTLIBRARIES = \
5853         _journal.la \
5854         id128.la \
5855         _daemon.la \
5856         _reader.la \
5857         login.la
5858
5859 _journal_la_SOURCES = \
5860         src/python-systemd/_journal.c
5861
5862 _journal_la_CFLAGS = \
5863         $(AM_CFLAGS) \
5864         -fvisibility=default \
5865         $(PYTHON_DEVEL_CFLAGS)
5866
5867 _journal_la_LDFLAGS = \
5868         $(AM_LDFLAGS) \
5869         -shared \
5870         -module \
5871         -avoid-version
5872
5873 _journal_la_LIBADD = \
5874         $(PYTHON_DEVEL_LIBS) \
5875         libsystemd.la
5876
5877 id128_la_SOURCES = \
5878         src/python-systemd/id128.c \
5879         src/python-systemd/pyutil.c \
5880         src/python-systemd/pyutil.h
5881
5882 nodist_id128_la_SOURCES = \
5883         src/python-systemd/id128-constants.h
5884
5885 id128_la_CFLAGS = \
5886         $(AM_CFLAGS) \
5887         -fvisibility=default \
5888         $(PYTHON_DEVEL_CFLAGS) \
5889         -I$(top_builddir)/src/python-systemd
5890
5891 id128_la_LDFLAGS = \
5892         $(AM_LDFLAGS) \
5893         -shared \
5894         -module \
5895         -avoid-version
5896
5897 id128_la_LIBADD = \
5898         $(PYTHON_DEVEL_LIBS) \
5899         libsystemd-shared.la \
5900         libsystemd.la
5901
5902 _daemon_la_SOURCES = \
5903         src/python-systemd/_daemon.c \
5904         src/python-systemd/pyutil.c \
5905         src/python-systemd/pyutil.h
5906
5907 _daemon_la_CFLAGS = \
5908         $(AM_CFLAGS) \
5909         -fvisibility=default \
5910         $(PYTHON_DEVEL_CFLAGS) \
5911         -I$(top_builddir)/src/python-systemd
5912
5913 _daemon_la_LDFLAGS = \
5914         $(AM_LDFLAGS) \
5915         -shared \
5916         -module \
5917         -avoid-version
5918
5919 _daemon_la_LIBADD = \
5920         $(PYTHON_DEVEL_LIBS) \
5921         libsystemd-shared.la \
5922         libsystemd.la
5923
5924 _reader_la_SOURCES = \
5925         src/python-systemd/_reader.c \
5926         src/python-systemd/pyutil.c \
5927         src/python-systemd/pyutil.h
5928
5929 _reader_la_CFLAGS = \
5930         $(AM_CFLAGS) \
5931         -fvisibility=default \
5932         $(PYTHON_DEVEL_CFLAGS)
5933
5934 _reader_la_LDFLAGS = \
5935         $(AM_LDFLAGS) \
5936         -shared \
5937         -module \
5938         -avoid-version
5939
5940 _reader_la_LIBADD = \
5941         $(PYTHON_DEVEL_LIBS) \
5942         libsystemd-shared.la \
5943         libsystemd.la
5944
5945 login_la_SOURCES = \
5946         src/python-systemd/login.c \
5947         src/python-systemd/pyutil.c \
5948         src/python-systemd/pyutil.h
5949
5950 login_la_CFLAGS = \
5951         $(AM_CFLAGS) \
5952         -fvisibility=default \
5953         $(PYTHON_DEVEL_CFLAGS)
5954
5955 login_la_LDFLAGS = \
5956         $(AM_LDFLAGS) \
5957         -shared \
5958         -module \
5959         -avoid-version
5960
5961 login_la_LIBADD = \
5962         $(PYTHON_DEVEL_LIBS) \
5963         libsystemd-shared.la \
5964         libsystemd.la
5965
5966 dist_pkgpyexec_PYTHON = \
5967         src/python-systemd/journal.py \
5968         src/python-systemd/daemon.py \
5969         src/python-systemd/__init__.py
5970
5971 src/python-systemd/id128-constants.h: src/systemd/sd-messages.h
5972         $(AM_V_at)$(MKDIR_P) $(dir $@)
5973         $(AM_V_GEN)$(SED) -n -r 's/,//g; s/#define (SD_MESSAGE_[A-Z0-9_]+)\s.*/add_id(m, "\1", \1) JOINER/p' <$< >$@
5974
5975 BUILT_SOURCES += \
5976         src/python-systemd/id128-constants.h
5977
5978 SPHINXOPTS = -D version=$(VERSION) -D release=$(VERSION)
5979 sphinx-%:
5980         $(AM_V_at)test -n "$(SPHINX_BUILD)" || { echo " *** sphinx-build is not available"; exit 1; }
5981         $(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/
5982         $(AM_V_at)echo Output has been generated in $(abs_top_builddir)/docs/html/python-systemd/
5983
5984 python-shell:
5985         $(AM_V_at)echo "Starting python with $(DESTDIR)$(pyexecdir)"
5986         $(AM_V_at)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(PYTHON)
5987
5988 destdir-sphinx: all
5989         dir="$$(mktemp -d /tmp/systemd-install.XXXXXX)" && \
5990                 $(MAKE) DESTDIR="$$dir" install && \
5991                 $(MAKE) DESTDIR="$$dir" sphinx-html && \
5992                 rm -rf "$$dir"
5993
5994 endif
5995
5996 CLEAN_LOCAL_HOOKS += clean-sphinx
5997
5998 .PHONY: python-shell destdir-sphinx clean-sphinx clean-python
5999
6000 clean-sphinx:
6001         -rm -rf docs/html/python-systemd/
6002
6003 # Remove Python stuff, e.g. to force rebuilding for a different Python version.
6004 clean-python:
6005         -rm -rf src/python-systemd/.libs src/python-systemd/*.l[ao]
6006         -rm -f _daemon.la id128.la _journal.la login.la _reader.la
6007
6008 # ------------------------------------------------------------------------------
6009 if ENABLE_COMPAT_LIBS
6010 EXTRA_DIST += \
6011         src/compat-libs/linkwarning.h
6012
6013 libsystemd-%.c: src/compat-libs/libsystemd-%.sym
6014         $(AM_V_at)$(MKDIR_P) $(dir $@)
6015         $(AM_V_GEN)sed -r -n 's/^ +(sd_.*);/obsolete_lib(\1,$(notdir $(basename $<)));/p' <$< >$@
6016
6017 BUILT_SOURCES += \
6018         libsystemd-journal.c \
6019         libsystemd-login.c \
6020         libsystemd-id128.c \
6021         libsystemd-daemon.c
6022
6023 libsystemd_journal_la_SOURCES = \
6024         libsystemd-journal.c \
6025         src/compat-libs/libsystemd-journal.sym
6026
6027 libsystemd_journal_la_CPPFLAGS = \
6028         $(AM_CFLAGS) \
6029         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6030
6031 libsystemd_journal_la_LDFLAGS = \
6032         $(AM_LDFLAGS) \
6033         -version-info $(LIBSYSTEMD_JOURNAL_CURRENT):$(LIBSYSTEMD_JOURNAL_REVISION):$(LIBSYSTEMD_JOURNAL_AGE) \
6034         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-journal.sym
6035
6036 libsystemd_journal_la_LIBADD = \
6037         libsystemd-journal-internal.la \
6038         libsystemd-internal.la \
6039         libsystemd-shared.la
6040
6041 libsystemd_login_la_SOURCES = \
6042         libsystemd-login.c \
6043         src/compat-libs/libsystemd-login.sym
6044
6045 libsystemd_login_la_CPPFLAGS = \
6046         $(AM_CFLAGS) \
6047         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6048
6049 libsystemd_login_la_LDFLAGS = \
6050         $(AM_LDFLAGS) \
6051         -version-info $(LIBSYSTEMD_LOGIN_CURRENT):$(LIBSYSTEMD_LOGIN_REVISION):$(LIBSYSTEMD_LOGIN_AGE) \
6052         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-login.sym
6053
6054 libsystemd_login_la_LIBADD = \
6055         libsystemd-internal.la \
6056         libsystemd-shared.la
6057
6058 libsystemd_id128_la_SOURCES = \
6059         libsystemd-id128.c \
6060         src/compat-libs/libsystemd-id128.sym
6061
6062 libsystemd_id128_la_CPPFLAGS = \
6063         $(AM_CFLAGS) \
6064         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6065
6066 libsystemd_id128_la_LDFLAGS = \
6067         $(AM_LDFLAGS) \
6068         -version-info $(LIBSYSTEMD_ID128_CURRENT):$(LIBSYSTEMD_ID128_REVISION):$(LIBSYSTEMD_ID128_AGE) \
6069         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-id128.sym
6070
6071 libsystemd_id128_la_LIBADD = \
6072         libsystemd-internal.la \
6073         libsystemd-shared.la
6074
6075 libsystemd_daemon_la_SOURCES = \
6076         libsystemd-daemon.c \
6077         src/compat-libs/libsystemd-daemon.sym
6078
6079 libsystemd_daemon_la_CPPFLAGS = \
6080         $(AM_CFLAGS) \
6081         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6082
6083 libsystemd_daemon_la_LDFLAGS = \
6084         $(AM_LDFLAGS) \
6085         -version-info $(LIBSYSTEMD_DAEMON_CURRENT):$(LIBSYSTEMD_DAEMON_REVISION):$(LIBSYSTEMD_DAEMON_AGE) \
6086         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-daemon.sym
6087
6088 libsystemd_daemon_la_LIBADD = \
6089         libsystemd-internal.la \
6090         libsystemd-shared.la
6091
6092 lib_LTLIBRARIES += \
6093         libsystemd-journal.la \
6094         libsystemd-login.la \
6095         libsystemd-id128.la \
6096         libsystemd-daemon.la
6097
6098 pkgconfiglib_DATA += \
6099         src/compat-libs/libsystemd-journal.pc \
6100         src/compat-libs/libsystemd-login.pc \
6101         src/compat-libs/libsystemd-id128.pc \
6102         src/compat-libs/libsystemd-daemon.pc
6103
6104 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
6105 compat-lib-install-hook:
6106         libname=libsystemd-login.so && $(move-to-rootlibdir)
6107         libname=libsystemd-journal.so && $(move-to-rootlibdir)
6108         libname=libsystemd-id128.so && $(move-to-rootlibdir)
6109         libname=libsystemd-daemon.so && $(move-to-rootlibdir)
6110
6111 compat-lib-uninstall-hook:
6112         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-login.so*
6113         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-journal.so*
6114         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-id128.so*
6115         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-daemon.so*
6116
6117 INSTALL_EXEC_HOOKS += compat-lib-install-hook
6118 UNINSTALL_EXEC_HOOKS += compat-lib-uninstall-hook
6119 endif
6120
6121 EXTRA_DIST += \
6122         src/compat-libs/libsystemd-journal.pc.in \
6123         src/compat-libs/libsystemd-login.pc.in \
6124         src/compat-libs/libsystemd-id128.pc.in \
6125         src/compat-libs/libsystemd-daemon.pc.in
6126
6127 # ------------------------------------------------------------------------------
6128 substitutions = \
6129        '|rootlibexecdir=$(rootlibexecdir)|' \
6130        '|rootbindir=$(rootbindir)|' \
6131        '|bindir=$(bindir)|' \
6132        '|SYSTEMCTL=$(rootbindir)/systemctl|' \
6133        '|SYSTEMD_NOTIFY=$(rootbindir)/systemd-notify|' \
6134        '|pkgsysconfdir=$(pkgsysconfdir)|' \
6135        '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
6136        '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
6137        '|pkgdatadir=$(pkgdatadir)|' \
6138        '|systemunitdir=$(systemunitdir)|' \
6139        '|userunitdir=$(userunitdir)|' \
6140        '|systempresetdir=$(systempresetdir)|' \
6141        '|userpresetdir=$(userpresetdir)|' \
6142        '|udevhwdbdir=$(udevhwdbdir)|' \
6143        '|udevrulesdir=$(udevrulesdir)|' \
6144        '|catalogdir=$(catalogdir)|' \
6145        '|tmpfilesdir=$(tmpfilesdir)|' \
6146        '|sysusersdir=$(sysusersdir)|' \
6147        '|sysctldir=$(sysctldir)|' \
6148        '|systemgeneratordir=$(systemgeneratordir)|' \
6149        '|usergeneratordir=$(usergeneratordir)|' \
6150        '|CERTIFICATEROOT=$(CERTIFICATEROOT)|' \
6151        '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
6152        '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
6153        '|PACKAGE_URL=$(PACKAGE_URL)|' \
6154        '|RANDOM_SEED_DIR=$(localstatedir)/lib/systemd/|' \
6155        '|RANDOM_SEED=$(localstatedir)/lib/systemd/random-seed|' \
6156        '|prefix=$(prefix)|' \
6157        '|exec_prefix=$(exec_prefix)|' \
6158        '|libdir=$(libdir)|' \
6159        '|includedir=$(includedir)|' \
6160        '|VERSION=$(VERSION)|' \
6161        '|rootprefix=$(rootprefix)|' \
6162        '|udevlibexecdir=$(udevlibexecdir)|' \
6163        '|SUSHELL=$(SUSHELL)|' \
6164        '|DEBUGTTY=$(DEBUGTTY)|' \
6165        '|KILL=$(KILL)|' \
6166        '|KMOD=$(KMOD)|' \
6167        '|MKDIR_P=$(MKDIR_P)|' \
6168        '|QUOTAON=$(QUOTAON)|' \
6169        '|QUOTACHECK=$(QUOTACHECK)|' \
6170        '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
6171        '|VARLOGDIR=$(varlogdir)|' \
6172        '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
6173        '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
6174        '|PYTHON=$(PYTHON)|' \
6175        '|PYTHON_BINARY=$(PYTHON_BINARY)|' \
6176        '|NTP_SERVERS=$(NTP_SERVERS)|' \
6177        '|DNS_SERVERS=$(DNS_SERVERS)|' \
6178        '|systemuidmax=$(SYSTEM_UID_MAX)|' \
6179        '|systemgidmax=$(SYSTEM_GID_MAX)|' \
6180        '|TTY_GID=$(TTY_GID)|' \
6181        '|systemsleepdir=$(systemsleepdir)|' \
6182        '|systemshutdowndir=$(systemshutdowndir)|' \
6183        '|binfmtdir=$(binfmtdir)|' \
6184        '|modulesloaddir=$(modulesloaddir)|'
6185
6186 SED_PROCESS = \
6187         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
6188         $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
6189                 < $< > $@
6190
6191 units/%: units/%.in
6192         $(SED_PROCESS)
6193
6194 man/%: man/%.in
6195         $(SED_PROCESS)
6196
6197 sysctl.d/%: sysctl.d/%.in
6198         $(SED_PROCESS)
6199
6200 %.pc: %.pc.in
6201         $(SED_PROCESS)
6202
6203 %.conf: %.conf.in
6204         $(SED_PROCESS)
6205
6206 src/core/macros.%: src/core/macros.%.in
6207         $(SED_PROCESS)
6208
6209 src/%.policy.in: src/%.policy.in.in
6210         $(SED_PROCESS)
6211
6212 shell-completion/%: shell-completion/%.in
6213         $(SED_PROCESS)
6214
6215 %.rules: %.rules.in
6216         $(SED_PROCESS)
6217
6218 %.conf: %.conf.in
6219         $(SED_PROCESS)
6220
6221 %.sh: %.sh.in
6222         $(SED_PROCESS)
6223         $(AM_V_GEN)chmod +x $@
6224
6225 src/%.c: src/%.gperf
6226         $(AM_V_at)$(MKDIR_P) $(dir $@)
6227         $(AM_V_GPERF)$(GPERF) < $< > $@
6228
6229 src/%: src/%.m4
6230         $(AM_V_at)$(MKDIR_P) $(dir $@)
6231         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6232
6233 sysusers.d/%: sysusers.d/%.m4
6234         $(AM_V_at)$(MKDIR_P) $(dir $@)
6235         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6236
6237 tmpfiles.d/%: tmpfiles.d/%.m4
6238         $(AM_V_at)$(MKDIR_P) $(dir $@)
6239         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6240
6241
6242 units/%: units/%.m4
6243         $(AM_V_at)$(MKDIR_P) $(dir $@)
6244         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
6245
6246 units/user/%: units/user/%.m4
6247         $(AM_V_at)$(MKDIR_P) $(dir $@)
6248         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
6249
6250 if ENABLE_POLKIT
6251 nodist_polkitpolicy_DATA = \
6252         $(polkitpolicy_files) \
6253         $(polkitpolicy_in_in_files:.policy.in.in=.policy)
6254 endif
6255
6256 EXTRA_DIST += \
6257         $(polkitpolicy_in_files) \
6258         $(polkitpolicy_in_in_files)
6259
6260 CLEANFILES += \
6261         $(nodist_systemunit_DATA) \
6262         $(nodist_userunit_DATA) \
6263         $(pkgconfiglib_DATA) \
6264         $(nodist_polkitpolicy_DATA)
6265
6266 # ------------------------------------------------------------------------------
6267 if ENABLE_MANPAGES
6268 man/custom-entities.ent: configure.ac
6269         $(AM_V_GEN)$(MKDIR_P) $(dir $@)
6270         $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
6271          printf '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">\n,$(substitutions))))') \
6272          > $@ # '
6273
6274 DISTCLEANFILES += \
6275         man/custom-entities.ent
6276
6277 XSLTPROC_FLAGS = \
6278         --nonet \
6279         --xinclude \
6280         --stringparam man.output.quietly 1 \
6281         --stringparam funcsynopsis.style ansi \
6282         --stringparam man.authors.section.enabled 0 \
6283         --stringparam man.copyright.section.enabled 0 \
6284         --stringparam systemd.version $(VERSION) \
6285         --path '$(builddir)/man:$(srcdir)/man'
6286
6287 XSLTPROC_PROCESS_MAN = \
6288         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
6289
6290 XSLTPROC_PROCESS_HTML = \
6291         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
6292
6293 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
6294         $(XSLTPROC_PROCESS_MAN)
6295
6296 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
6297         $(XSLTPROC_PROCESS_MAN)
6298
6299 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
6300         $(XSLTPROC_PROCESS_MAN)
6301
6302 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
6303         $(XSLTPROC_PROCESS_MAN)
6304
6305 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
6306         $(XSLTPROC_PROCESS_MAN)
6307
6308 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
6309         $(XSLTPROC_PROCESS_HTML)
6310
6311 define html-alias
6312         $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
6313 endef
6314
6315 endif
6316
6317 EXTRA_DIST += \
6318         man/custom-html.xsl \
6319         man/custom-man.xsl
6320
6321 # ------------------------------------------------------------------------------
6322 if HAVE_SYSV_COMPAT
6323 sysvinit_DATA = \
6324         docs/sysvinit/README
6325
6326 varlog_DATA = \
6327         docs/var-log/README
6328
6329 docs/sysvinit/README: docs/sysvinit/README.in
6330         $(SED_PROCESS)
6331
6332 docs/var-log/README: docs/var-log/README.in
6333         $(SED_PROCESS)
6334
6335 CLEANFILES += \
6336         docs/sysvinit/README \
6337         docs/var-log/README
6338 endif
6339
6340 EXTRA_DIST += \
6341         docs/sysvinit/README.in \
6342         docs/var-log/README.in
6343
6344 SOCKETS_TARGET_WANTS += \
6345         systemd-initctl.socket \
6346         systemd-shutdownd.socket
6347
6348 if HAVE_UTMP
6349 if HAVE_SYSV_COMPAT
6350 RUNLEVEL1_TARGET_WANTS += \
6351         systemd-update-utmp-runlevel.service
6352 RUNLEVEL2_TARGET_WANTS += \
6353         systemd-update-utmp-runlevel.service
6354 RUNLEVEL3_TARGET_WANTS += \
6355         systemd-update-utmp-runlevel.service
6356 RUNLEVEL4_TARGET_WANTS += \
6357         systemd-update-utmp-runlevel.service
6358 RUNLEVEL5_TARGET_WANTS += \
6359         systemd-update-utmp-runlevel.service
6360 endif
6361
6362 SYSINIT_TARGET_WANTS += \
6363         systemd-update-utmp.service
6364 endif
6365
6366 SYSINIT_TARGET_WANTS += \
6367         systemd-update-done.service
6368
6369 LOCAL_FS_TARGET_WANTS += \
6370         systemd-remount-fs.service \
6371         tmp.mount
6372
6373 MULTI_USER_TARGET_WANTS += \
6374         getty.target \
6375         systemd-ask-password-wall.path
6376
6377 SYSINIT_TARGET_WANTS += \
6378         dev-hugepages.mount \
6379         dev-mqueue.mount \
6380         sys-kernel-config.mount \
6381         sys-kernel-debug.mount \
6382         sys-fs-fuse-connections.mount \
6383         systemd-sysctl.service \
6384         systemd-ask-password-console.path
6385
6386 if HAVE_SYSV_COMPAT
6387 SYSTEM_UNIT_ALIASES += \
6388         poweroff.target runlevel0.target \
6389         rescue.target runlevel1.target \
6390         multi-user.target runlevel2.target \
6391         multi-user.target runlevel3.target \
6392         multi-user.target runlevel4.target \
6393         graphical.target runlevel5.target \
6394         reboot.target runlevel6.target
6395 endif
6396
6397 SYSTEM_UNIT_ALIASES += \
6398         graphical.target default.target \
6399         reboot.target ctrl-alt-del.target \
6400         getty@.service autovt@.service
6401
6402 USER_UNIT_ALIASES += \
6403         $(systemunitdir)/shutdown.target shutdown.target \
6404         $(systemunitdir)/sockets.target sockets.target \
6405         $(systemunitdir)/timers.target timers.target \
6406         $(systemunitdir)/paths.target paths.target \
6407         $(systemunitdir)/bluetooth.target bluetooth.target \
6408         $(systemunitdir)/printer.target printer.target \
6409         $(systemunitdir)/sound.target sound.target \
6410         $(systemunitdir)/smartcard.target smartcard.target
6411
6412 if ENABLE_KDBUS
6413 USER_UNIT_ALIASES += \
6414         $(systemunitdir)/busnames.target busnames.target
6415 endif
6416
6417 GENERAL_ALIASES += \
6418         $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \
6419         $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \
6420         $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \
6421         $(dbussystemservicedir)/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service
6422
6423 if HAVE_SYSV_COMPAT
6424 INSTALL_DIRS += \
6425         $(systemunitdir)/runlevel1.target.wants \
6426         $(systemunitdir)/runlevel2.target.wants \
6427         $(systemunitdir)/runlevel3.target.wants \
6428         $(systemunitdir)/runlevel4.target.wants \
6429         $(systemunitdir)/runlevel5.target.wants
6430 endif
6431
6432 INSTALL_DIRS += \
6433         $(prefix)/lib/modules-load.d \
6434         $(sysconfdir)/modules-load.d \
6435         $(prefix)/lib/systemd/network \
6436         $(sysconfdir)/systemd/network \
6437         $(prefix)/lib/sysctl.d \
6438         $(sysconfdir)/sysctl.d \
6439         $(prefix)/lib/kernel/install.d \
6440         $(sysconfdir)/kernel/install.d \
6441         $(systemshutdowndir) \
6442         $(systemsleepdir) \
6443         $(systemgeneratordir) \
6444         $(usergeneratordir) \
6445         \
6446         $(userunitdir) \
6447         $(pkgsysconfdir)/system \
6448         $(pkgsysconfdir)/system/multi-user.target.wants \
6449         $(pkgsysconfdir)/system/getty.target.wants \
6450         $(pkgsysconfdir)/user \
6451         $(dbussessionservicedir) \
6452         $(sysconfdir)/xdg/systemd
6453
6454 install-exec-hook: $(INSTALL_EXEC_HOOKS)
6455
6456 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
6457
6458 install-data-hook: $(INSTALL_DATA_HOOKS)
6459
6460 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
6461
6462 clean-local: $(CLEAN_LOCAL_HOOKS)
6463         rm -rf $(abs_srcdir)/install-tree
6464         rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
6465               $(abs_srcdir)/hwdb/iab.txt
6466
6467 DISTCHECK_CONFIGURE_FLAGS = \
6468         --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
6469         --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
6470         --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
6471         --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
6472         --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
6473         --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
6474         --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
6475         --with-rootprefix=$$dc_install_base \
6476         --disable-split-usr \
6477         --enable-kdbus \
6478         --enable-compat-libs
6479
6480 if HAVE_SYSV_COMPAT
6481 DISTCHECK_CONFIGURE_FLAGS += \
6482         --with-sysvinit-path=$$dc_install_base/$(sysvinitdir) \
6483         --with-sysvrcnd-path=$$dc_install_base/$(sysvrcnddir)
6484 else
6485 DISTCHECK_CONFIGURE_FLAGS += \
6486         --with-sysvinit-path= \
6487         --with-sysvrcnd-path=
6488 endif
6489
6490 if HAVE_PYTHON
6491 DISTCHECK_CONFIGURE_FLAGS += \
6492         --with-python
6493 endif
6494
6495 if ENABLE_GTK_DOC
6496 DISTCHECK_CONFIGURE_FLAGS += \
6497         --enable-gtk-doc
6498 endif
6499
6500 #
6501 # Require python when making dist
6502 #
6503 .PHONY: dist-check-python
6504 dist-check-python:
6505 if !HAVE_PYTHON
6506         @echo "*** python and python-lxml module must be installed and enabled in order to make dist"
6507         @false
6508 endif
6509
6510 dist-check-compat-libs:
6511 if !ENABLE_COMPAT_LIBS
6512         @echo "*** compat-libs must be enabled in order to make dist"
6513         @false
6514 endif
6515
6516 dist: dist-check-python dist-check-compat-libs
6517
6518 # check "broken" platforms limited toolchains for link breakage before we release
6519 .PHONY: linkcheck
6520 linkcheck:
6521         $(MAKE) CFLAGS='-fno-lto' LDFLAGS='-Wl,-fuse-ld=gold -Wl,--as-needed -Wl,--no-gc-sections' distcheck
6522
6523 .PHONY: hwdb-update
6524 hwdb-update:
6525         ( cd $(top_srcdir)/hwdb && \
6526         wget -N http://www.linux-usb.org/usb.ids \
6527                 http://pci-ids.ucw.cz/v2.2/pci.ids \
6528                 http://standards.ieee.org/develop/regauth/oui/oui.txt \
6529                 http://standards.ieee.org/develop/regauth/iab/iab.txt && \
6530         ./ids-update.pl )
6531
6532 .PHONY: kdbus-update
6533 kdbus-update:
6534         ( cd $(top_srcdir)/src/libsystemd/sd-bus/ && \
6535         wget -N https://d-bus.googlecode.com/git/kdbus.h )
6536
6537 .PHONY: git-tag
6538 git-tag:
6539         git tag -s "v$(VERSION)" -m "systemd $(VERSION)"
6540
6541 www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd
6542 .PHONY: upload
6543 upload: all check dist
6544         scp systemd-$(VERSION).tar.xz $(www_target)
6545
6546 .PHONY: doc-sync
6547 doc-sync: all destdir-sphinx
6548         gtkdoc-rebase --html-dir=docs/libudev/html --online
6549         rsync -rlv --delete docs/libudev/html/ --omit-dir-times $(www_target)/libudev/
6550         gtkdoc-rebase --html-dir=docs/gudev/html --online
6551         rsync -rlv --delete docs/gudev/html/ --omit-dir-times $(www_target)/gudev/
6552         rsync -rlv --delete-excluded --include="*.html" --exclude="*" --omit-dir-times man/ $(www_target)/man/
6553         rsync -rlv --delete --omit-dir-times docs/html/python-systemd/ $(www_target)/python-systemd/
6554
6555 .PHONY: gardel
6556 gardel: upload
6557         scp man/*.html gardel:public/systemd-man/
6558
6559 .PHONY: lennart-fedora
6560 lennart-fedora:
6561         cp -v systemd-$(VERSION).tar.xz /home/lennart/git.fedora/systemd/
6562
6563 .PHONY: install-tree
6564 install-tree: all
6565         rm -rf $(abs_srcdir)/install-tree
6566         $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
6567         tree $(abs_srcdir)/install-tree
6568
6569 # Let's run all tests of the test suite, but under valgrind. Let's
6570 # exclude the one perl script we have in there
6571 .PHONY: valgrind-tests
6572 valgrind-tests: $(TESTS)
6573         $(AM_V_GEN)for f in $(filter-out %.pl, $^); do \
6574                 if file $$f | grep -q shell; then \
6575                 echo -e "$${x}Skipping non-binary $$f"; else \
6576                 echo -e "$${x}Running $$f"; \
6577                 libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \
6578                 x="\n\n"; \
6579         done
6580
6581 exported-%: %
6582         $(AM_V_GEN)$(NM) -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
6583
6584 exported: $(addprefix exported-, $(lib_LTLIBRARIES))
6585         $(AM_V_GEN)cat $^ > $@
6586
6587 .PHONY: check-api-docs
6588 check-api-docs: exported man
6589         $(AM_V_GEN)for symbol in `cat exported` ; do \
6590                 if test -f $(builddir)/man/$$symbol.html ; then \
6591                         echo "  Symbol $$symbol() is documented." ; \
6592                 else \
6593                         echo "‣ Symbol $$symbol() lacks documentation." ; \
6594                 fi ; \
6595         done
6596
6597 OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
6598 ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
6599
6600 undefined defined: $(ALL_OBJECTS)
6601         $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
6602                 $(NM) -g --$@-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
6603         done | cut -c 20- | cut -d @ -f 1 | sort -u > $@
6604
6605 CLEANFILES += \
6606         defined \
6607         undefined
6608
6609 .PHONY: check-api-unused
6610 check-api-unused: defined undefined exported
6611         ( cat exported undefined ) | sort -u  | diff -u - defined | grep ^+ | grep -v ^+++ | cut -c2-
6612
6613 .PHONY: check-includes
6614 check-includes: $(top_srcdir)/tools/check-includes.pl
6615         $(AM_V_GEN) find * -name '*.[hcS]' -type f -print | sort -u \
6616                 | xargs $(top_srcdir)/tools/check-includes.pl
6617
6618 EXTRA_DIST += \
6619         $(top_srcdir)/tools/check-includes.pl
6620
6621 # Stupid test that everything purported to be exported really is
6622 define generate-sym-test
6623         $(AM_V_at)$(MKDIR_P) $(dir $@)
6624         $(AM_V_at)printf '#include <stdio.h>\n' > $@
6625         $(AM_V_at)printf '#include "%s"\n' $(notdir $(filter %.h, $^)) >> $@
6626         $(AM_V_at)printf 'void* functions[] = {\n' >> $@
6627         $(AM_V_GEN)sed -r -n 's/^ +([a-zA-Z0-9_]+);/\1,/p' $< >> $@
6628         $(AM_V_at)printf '};\nint main(void) {\n' >> $@
6629         $(AM_V_at)printf 'unsigned i; for (i=0;i<sizeof(functions)/sizeof(void*);i++) printf("%%p\\n", functions[i]);\n' >> $@
6630         $(AM_V_at)printf 'return 0; }\n' >> $@
6631 endef
6632
6633 test-libsystemd-sym.c: \
6634                 $(top_builddir)/src/libsystemd/libsystemd.sym \
6635                 src/systemd/sd-journal.h \
6636                 src/systemd/sd-daemon.h \
6637                 src/systemd/sd-login.h \
6638                 src/systemd/sd-bus.h \
6639                 src/systemd/sd-utf8.h \
6640                 src/systemd/sd-resolve.h \
6641                 src/systemd/sd-path.h
6642         $(generate-sym-test)
6643
6644 test-libudev-sym.c: \
6645                 src/libudev/libudev.sym \
6646                 src/udev/udev.h
6647         $(generate-sym-test)
6648
6649 test_libsystemd_sym_SOURCES = \
6650         test-libsystemd-sym.c
6651 test_libsystemd_sym_LDADD = \
6652         libsystemd.la
6653
6654 test_libudev_sym_SOURCES = \
6655         test-libudev-sym.c
6656 test_libudev_sym_CFLAGS = \
6657         $(AM_CFLAGS) \
6658         -Wno-deprecated-declarations
6659 test_libudev_sym_LDADD = \
6660         libudev.la
6661
6662 BUILT_SOURCES += \
6663         $(test_libsystemd_sym_SOURCES) \
6664         $(test_libudev_sym_SOURCES)
6665
6666 tests += \
6667         test-libsystemd-sym \
6668         test-libudev-sym
6669
6670 .PHONY: cppcheck
6671 cppcheck:
6672         cppcheck --enable=all -q $(top_srcdir)
6673
6674 # Used to extract compile flags for YCM.
6675 print-%:
6676         @echo $($*)
6677
6678 git-contrib:
6679         @git shortlog -s `git describe --abbrev=0`.. | cut -c8- | awk '{ print $$0 "," }' | sort -u
6680
6681 EXTRA_DIST += \
6682         tools/gdb-sd_dump_hashmaps.py
6683
6684 list-keys:
6685         gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --list-keys
6686
6687 add-key:
6688         gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --import -