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