]> git.ipfire.org Git - thirdparty/systemd.git/blob - Makefile.am
Merge pull request #4459 from keszybz/commandline-parsing
[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/emergency-action.c \
1279 src/core/emergency-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-supplementarygroups.service \
1631 test/test-execute/exec-supplementarygroups-single-group.service \
1632 test/test-execute/exec-supplementarygroups-single-group-user.service \
1633 test/test-execute/exec-supplementarygroups-multiple-groups-default-group-user.service \
1634 test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service \
1635 test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service \
1636 test/test-execute/exec-ignoresigpipe-no.service \
1637 test/test-execute/exec-ignoresigpipe-yes.service \
1638 test/test-execute/exec-personality-x86-64.service \
1639 test/test-execute/exec-personality-x86.service \
1640 test/test-execute/exec-personality-s390.service \
1641 test/test-execute/exec-personality-ppc64.service \
1642 test/test-execute/exec-personality-ppc64le.service \
1643 test/test-execute/exec-personality-aarch64.service \
1644 test/test-execute/exec-privatedevices-no.service \
1645 test/test-execute/exec-privatedevices-yes.service \
1646 test/test-execute/exec-privatedevices-no-capability-mknod.service \
1647 test/test-execute/exec-privatedevices-yes-capability-mknod.service \
1648 test/test-execute/exec-protectkernelmodules-no-capabilities.service \
1649 test/test-execute/exec-protectkernelmodules-yes-capabilities.service \
1650 test/test-execute/exec-protectkernelmodules-yes-mount-propagation.service \
1651 test/test-execute/exec-privatetmp-no.service \
1652 test/test-execute/exec-privatetmp-yes.service \
1653 test/test-execute/exec-readonlypaths.service \
1654 test/test-execute/exec-readonlypaths-mount-propagation.service \
1655 test/test-execute/exec-readwritepaths-mount-propagation.service \
1656 test/test-execute/exec-inaccessiblepaths-mount-propagation.service \
1657 test/test-execute/exec-spec-interpolation.service \
1658 test/test-execute/exec-systemcallerrornumber.service \
1659 test/test-execute/exec-systemcallfilter-failing2.service \
1660 test/test-execute/exec-systemcallfilter-failing.service \
1661 test/test-execute/exec-systemcallfilter-not-failing2.service \
1662 test/test-execute/exec-systemcallfilter-not-failing.service \
1663 test/test-execute/exec-systemcallfilter-system-user.service \
1664 test/test-execute/exec-systemcallfilter-system-user-nfsnobody.service \
1665 test/test-execute/exec-user.service \
1666 test/test-execute/exec-user-nfsnobody.service \
1667 test/test-execute/exec-workingdirectory.service \
1668 test/test-execute/exec-umask-0177.service \
1669 test/test-execute/exec-umask-default.service \
1670 test/test-execute/exec-privatenetwork-yes.service \
1671 test/test-execute/exec-environmentfile.service \
1672 test/test-execute/exec-oomscoreadjust-positive.service \
1673 test/test-execute/exec-oomscoreadjust-negative.service \
1674 test/test-execute/exec-ioschedulingclass-best-effort.service \
1675 test/test-execute/exec-ioschedulingclass-idle.service \
1676 test/test-execute/exec-ioschedulingclass-none.service \
1677 test/test-execute/exec-ioschedulingclass-realtime.service \
1678 test/test-execute/exec-capabilityboundingset-invert.service \
1679 test/test-execute/exec-capabilityboundingset-merge.service \
1680 test/test-execute/exec-capabilityboundingset-reset.service \
1681 test/test-execute/exec-capabilityboundingset-simple.service \
1682 test/test-execute/exec-capabilityambientset.service \
1683 test/test-execute/exec-capabilityambientset-nfsnobody.service \
1684 test/test-execute/exec-capabilityambientset-merge.service \
1685 test/test-execute/exec-capabilityambientset-merge-nfsnobody.service \
1686 test/test-execute/exec-runtimedirectory.service \
1687 test/test-execute/exec-runtimedirectory-mode.service \
1688 test/test-execute/exec-runtimedirectory-owner.service \
1689 test/test-execute/exec-runtimedirectory-owner-nfsnobody.service \
1690 test/bus-policy/hello.conf \
1691 test/bus-policy/methods.conf \
1692 test/bus-policy/ownerships.conf \
1693 test/bus-policy/signals.conf \
1694 test/bus-policy/check-own-rules.conf \
1695 test/bus-policy/many-rules.conf \
1696 test/bus-policy/test.conf
1697
1698
1699 EXTRA_DIST += \
1700 src/test/test-helper.h
1701
1702 test_device_nodes_SOURCES = \
1703 src/test/test-device-nodes.c
1704
1705 test_device_nodes_LDADD = \
1706 libsystemd-shared.la
1707
1708 test_engine_SOURCES = \
1709 src/test/test-engine.c
1710
1711 test_engine_CFLAGS = \
1712 $(AM_CFLAGS) \
1713 $(SECCOMP_CFLAGS) \
1714 $(MOUNT_CFLAGS)
1715
1716 test_engine_LDADD = \
1717 libcore.la
1718
1719 test_job_type_SOURCES = \
1720 src/test/test-job-type.c
1721
1722 test_job_type_CFLAGS = \
1723 $(AM_CFLAGS) \
1724 $(SECCOMP_CFLAGS) \
1725 $(MOUNT_CFLAGS)
1726
1727 test_job_type_LDADD = \
1728 libcore.la
1729
1730 test_ns_SOURCES = \
1731 src/test/test-ns.c
1732
1733 test_ns_CFLAGS = \
1734 $(AM_CFLAGS) \
1735 $(SECCOMP_CFLAGS)
1736
1737 test_ns_LDADD = \
1738 libcore.la
1739
1740 test_loopback_SOURCES = \
1741 src/test/test-loopback.c
1742
1743 test_loopback_LDADD = \
1744 libcore.la
1745
1746 test_hostname_SOURCES = \
1747 src/test/test-hostname.c
1748
1749 test_hostname_LDADD = \
1750 libcore.la
1751
1752 test_dns_domain_SOURCES = \
1753 src/test/test-dns-domain.c
1754
1755 test_dns_domain_LDADD = \
1756 libsystemd-network.la \
1757 libsystemd-shared.la
1758
1759
1760 if ENABLE_EFI
1761 tests += \
1762 test-boot-timestamps
1763
1764 test_boot_timestamps_SOURCES = \
1765 src/test/test-boot-timestamps.c
1766
1767 test_boot_timestamps_LDADD = \
1768 libsystemd-shared.la
1769 endif
1770
1771 test_unit_name_SOURCES = \
1772 src/test/test-unit-name.c
1773
1774 test_unit_name_CFLAGS = \
1775 $(AM_CFLAGS) \
1776 $(SECCOMP_CFLAGS) \
1777 $(MOUNT_CFLAGS)
1778
1779 test_unit_name_LDADD = \
1780 libcore.la
1781
1782 test_unit_file_SOURCES = \
1783 src/test/test-unit-file.c
1784
1785 test_unit_file_CFLAGS = \
1786 $(AM_CFLAGS) \
1787 $(SECCOMP_CFLAGS) \
1788 $(MOUNT_CFLAGS)
1789
1790 test_unit_file_LDADD = \
1791 libcore.la
1792
1793 test_utf8_SOURCES = \
1794 src/test/test-utf8.c
1795
1796 test_utf8_LDADD = \
1797 libsystemd-shared.la
1798
1799 test_capability_SOURCES = \
1800 src/test/test-capability.c
1801
1802 test_capability_CFLAGS = \
1803 $(AM_CFLAGS) \
1804 $(CAP_CFLAGS)
1805
1806 test_capability_LDADD = \
1807 libsystemd-shared.la \
1808 $(CAP_LIBS)
1809
1810 test_async_SOURCES = \
1811 src/test/test-async.c
1812
1813 test_async_LDADD = \
1814 libsystemd-shared.la
1815
1816 test_locale_util_SOURCES = \
1817 src/test/test-locale-util.c
1818
1819 test_locale_util_LDADD = \
1820 libsystemd-shared.la
1821
1822 test_copy_SOURCES = \
1823 src/test/test-copy.c
1824
1825 # Link statically to ensure file is large
1826 test_copy_LDADD = \
1827 libshared.la
1828
1829 test_sigbus_SOURCES = \
1830 src/test/test-sigbus.c
1831
1832 test_sigbus_LDADD = \
1833 libsystemd-shared.la
1834
1835 test_condition_SOURCES = \
1836 src/test/test-condition.c
1837
1838 test_condition_LDADD = \
1839 libsystemd-shared.la
1840
1841 test_fdset_SOURCES = \
1842 src/test/test-fdset.c
1843
1844 test_fdset_LDADD = \
1845 libsystemd-shared.la
1846
1847 test_fstab_util_SOURCES = \
1848 src/test/test-fstab-util.c
1849
1850 test_fstab_util_LDADD = \
1851 libsystemd-shared.la
1852
1853 test_ratelimit_SOURCES = \
1854 src/test/test-ratelimit.c
1855
1856 test_ratelimit_LDADD = \
1857 libsystemd-shared.la
1858
1859 test_util_SOURCES = \
1860 src/test/test-util.c
1861
1862 test_util_LDADD = \
1863 libsystemd-shared.la
1864
1865 test_hexdecoct_SOURCES = \
1866 src/test/test-hexdecoct.c
1867
1868 test_hexdecoct_LDADD = \
1869 libsystemd-shared.la
1870
1871 test_alloc_util_SOURCES = \
1872 src/test/test-alloc-util.c
1873
1874 test_alloc_util_LDADD = \
1875 libsystemd-shared.la
1876
1877 test_xattr_util_SOURCES = \
1878 src/test/test-xattr-util.c
1879
1880 test_xattr_util_LDADD = \
1881 libsystemd-shared.la
1882
1883 test_io_util_SOURCES = \
1884 src/test/test-io-util.c
1885
1886 test_io_util_LDADD = \
1887 libsystemd-shared.la
1888
1889 test_glob_util_SOURCES = \
1890 src/test/test-glob-util.c
1891
1892 test_glob_util_LDADD = \
1893 libsystemd-shared.la
1894
1895 test_fs_util_SOURCES = \
1896 src/test/test-fs-util.c
1897
1898 test_fs_util_LDADD = \
1899 libsystemd-shared.la
1900
1901 test_proc_cmdline_SOURCES = \
1902 src/test/test-proc-cmdline.c
1903
1904 test_proc_cmdline_LDADD = \
1905 libsystemd-shared.la
1906
1907 test_fd_util_SOURCES = \
1908 src/test/test-fd-util.c
1909
1910 test_fd_util_LDADD = \
1911 libsystemd-shared.la
1912
1913 test_web_util_SOURCES = \
1914 src/test/test-web-util.c
1915
1916 test_web_util_LDADD = \
1917 libsystemd-shared.la
1918
1919 test_cpu_set_util_SOURCES = \
1920 src/test/test-cpu-set-util.c
1921
1922 test_cpu_set_util_LDADD = \
1923 libsystemd-shared.la
1924
1925 test_stat_util_SOURCES = \
1926 src/test/test-stat-util.c
1927
1928 test_stat_util_LDADD = \
1929 libsystemd-shared.la
1930
1931 test_escape_SOURCES = \
1932 src/test/test-escape.c
1933
1934 test_escape_LDADD = \
1935 libsystemd-shared.la
1936
1937 test_string_util_SOURCES = \
1938 src/test/test-string-util.c
1939
1940 test_string_util_LDADD = \
1941 libsystemd-shared.la
1942
1943 test_extract_word_SOURCES = \
1944 src/test/test-extract-word.c
1945
1946 test_extract_word_LDADD = \
1947 libsystemd-shared.la
1948
1949 test_parse_util_SOURCES = \
1950 src/test/test-parse-util.c
1951
1952 test_parse_util_LDADD = \
1953 libsystemd-shared.la
1954
1955 test_user_util_SOURCES = \
1956 src/test/test-user-util.c
1957
1958 test_user_util_LDADD = \
1959 libsystemd-shared.la
1960
1961 test_hostname_util_SOURCES = \
1962 src/test/test-hostname-util.c
1963
1964 test_hostname_util_LDADD = \
1965 libsystemd-shared.la
1966
1967 test_process_util_SOURCES = \
1968 src/test/test-process-util.c
1969
1970 test_process_util_LDADD = \
1971 libsystemd-shared.la
1972
1973 test_terminal_util_SOURCES = \
1974 src/test/test-terminal-util.c
1975
1976 test_terminal_util_LDADD = \
1977 libsystemd-shared.la
1978
1979 test_path_lookup_SOURCES = \
1980 src/test/test-path-lookup.c
1981
1982 test_path_lookup_LDADD = \
1983 libsystemd-shared.la
1984
1985 test_uid_range_SOURCES = \
1986 src/test/test-uid-range.c
1987
1988 test_uid_range_LDADD = \
1989 libsystemd-shared.la
1990
1991 test_cap_list_SOURCES = \
1992 src/test/test-cap-list.c
1993
1994 test_cap_list_CFLAGS = \
1995 $(AM_CFLAGS) \
1996 $(CAP_CFLAGS)
1997
1998 test_cap_list_LDADD = \
1999 libsystemd-shared.la \
2000 $(CAP_LIBS)
2001
2002 test_socket_util_SOURCES = \
2003 src/test/test-socket-util.c
2004
2005 test_socket_util_LDADD = \
2006 libsystemd-shared.la
2007
2008 test_barrier_SOURCES = \
2009 src/test/test-barrier.c
2010
2011 test_barrier_LDADD = \
2012 libsystemd-shared.la
2013
2014 test_tmpfiles_SOURCES = \
2015 src/test/test-tmpfiles.c
2016
2017 test_tmpfiles_LDADD = \
2018 libsystemd-shared.la
2019
2020 test_namespace_SOURCES = \
2021 src/test/test-namespace.c
2022
2023 test_verbs_SOURCES = \
2024 src/test/test-verbs.c
2025
2026 test_verbs_LDADD = \
2027 libsystemd-shared.la
2028
2029 test_install_root_SOURCES = \
2030 src/test/test-install-root.c
2031
2032 test_install_root_LDADD = \
2033 libsystemd-shared.la
2034
2035 test_acl_util_SOURCES = \
2036 src/test/test-acl-util.c
2037
2038 test_acl_util_LDADD = \
2039 libsystemd-shared.la
2040
2041 test_namespace_LDADD = \
2042 libcore.la
2043
2044 test_rlimit_util_SOURCES = \
2045 src/test/test-rlimit-util.c
2046
2047 test_rlimit_util_LDADD = \
2048 libsystemd-shared.la
2049
2050 test_ask_password_api_SOURCES = \
2051 src/test/test-ask-password-api.c
2052
2053 test_ask_password_api_LDADD = \
2054 libsystemd-shared.la
2055
2056 test_signal_util_SOURCES = \
2057 src/test/test-signal-util.c
2058
2059 test_signal_util_LDADD = \
2060 libsystemd-shared.la
2061
2062 test_selinux_SOURCES = \
2063 src/test/test-selinux.c
2064
2065 test_selinux_LDADD = \
2066 libsystemd-shared.la
2067
2068 test_sizeof_SOURCES = \
2069 src/test/test-sizeof.c
2070
2071 test_sizeof_LDADD = \
2072 libsystemd-shared.la
2073
2074 BUILT_SOURCES += \
2075 src/test/test-hashmap-ordered.c
2076
2077 src/test/test-hashmap-ordered.c: src/test/test-hashmap-plain.c
2078 $(AM_V_at)$(MKDIR_P) $(dir $@)
2079 $(AM_V_GEN)$(AWK) 'BEGIN { print "/* GENERATED FILE */\n#define ORDERED" } \
2080 { if (!match($$0, "^#include")) \
2081 gsub(/hashmap/, "ordered_hashmap"); \
2082 gsub(/HASHMAP/, "ORDERED_HASHMAP"); \
2083 gsub(/Hashmap/, "OrderedHashmap"); \
2084 print }' <$< >$@
2085
2086 nodist_test_hashmap_SOURCES = \
2087 src/test/test-hashmap-ordered.c
2088
2089 test_hashmap_SOURCES = \
2090 src/test/test-hashmap.c \
2091 src/test/test-hashmap-plain.c
2092
2093 test_hashmap_LDADD = \
2094 libsystemd-shared.la
2095
2096 test_set_SOURCES = \
2097 src/test/test-set.c
2098
2099 test_set_LDADD = \
2100 libsystemd-shared.la
2101
2102 test_bitmap_SOURCES = \
2103 src/test/test-bitmap.c
2104
2105 test_bitmap_LDADD = \
2106 libsystemd-shared.la
2107
2108 test_xml_SOURCES = \
2109 src/test/test-xml.c
2110
2111 test_xml_LDADD = \
2112 libsystemd-shared.la
2113
2114 test_list_SOURCES = \
2115 src/test/test-list.c
2116
2117 test_list_LDADD = \
2118 libsystemd-shared.la
2119
2120 test_unaligned_LDADD = \
2121 libsystemd-shared.la
2122
2123 test_unaligned_SOURCES = \
2124 src/test/test-unaligned.c
2125
2126 test_tables_SOURCES = \
2127 src/test/test-tables.c \
2128 src/shared/test-tables.h \
2129 src/journal/journald-server.c \
2130 src/journal/journald-server.h
2131
2132 test_tables_CPPFLAGS = \
2133 $(AM_CPPFLAGS)
2134
2135 test_tables_CFLAGS = \
2136 $(AM_CFLAGS) \
2137 $(SECCOMP_CFLAGS) \
2138 $(MOUNT_CFLAGS)
2139
2140 test_tables_LDADD = \
2141 libjournal-core.la \
2142 libcore.la \
2143 libudev-core.la
2144
2145 test_prioq_SOURCES = \
2146 src/test/test-prioq.c
2147
2148 test_prioq_LDADD = \
2149 libsystemd-shared.la
2150
2151 test_fileio_SOURCES = \
2152 src/test/test-fileio.c
2153
2154 test_fileio_LDADD = \
2155 libsystemd-shared.la
2156
2157 test_time_SOURCES = \
2158 src/test/test-time.c
2159
2160 test_time_LDADD = \
2161 libsystemd-shared.la
2162
2163 test_clock_SOURCES = \
2164 src/test/test-clock.c
2165
2166 test_clock_LDADD = \
2167 libsystemd-shared.la
2168
2169 test_architecture_SOURCES = \
2170 src/test/test-architecture.c
2171
2172 test_architecture_LDADD = \
2173 libsystemd-shared.la
2174
2175 test_log_SOURCES = \
2176 src/test/test-log.c
2177
2178 test_log_LDADD = \
2179 libsystemd-shared.la
2180
2181 test_ipcrm_SOURCES = \
2182 src/test/test-ipcrm.c
2183
2184 test_ipcrm_LDADD = \
2185 libsystemd-shared.la
2186
2187 test_btrfs_SOURCES = \
2188 src/test/test-btrfs.c
2189
2190 test_btrfs_LDADD = \
2191 libsystemd-shared.la
2192
2193 if HAVE_LIBIPTC
2194 test_firewall_util_SOURCES = \
2195 src/test/test-firewall-util.c
2196
2197 test_firewall_util_CFLAGS = \
2198 $(AM_CFLAGS) \
2199 $(LIBIPTC_CFLAGS)
2200
2201 test_firewall_util_LDADD = \
2202 libfirewall.la \
2203 libsystemd-shared.la \
2204 $(LIBIPTC_LIBS)
2205 endif
2206
2207 test_netlink_manual_SOURCES = \
2208 src/test/test-netlink-manual.c
2209
2210 test_netlink_manual_CFLAGS = \
2211 $(AM_CFLAGS) \
2212 $(KMOD_CFLAGS)
2213
2214 test_netlink_manual_LDADD = \
2215 libsystemd-shared.la \
2216 $(KMOD_LIBS)
2217
2218 test_ellipsize_SOURCES = \
2219 src/test/test-ellipsize.c
2220
2221 test_ellipsize_LDADD = \
2222 libsystemd-shared.la
2223
2224 test_date_SOURCES = \
2225 src/test/test-date.c
2226
2227 test_date_LDADD = \
2228 libsystemd-shared.la
2229
2230 test_sleep_SOURCES = \
2231 src/test/test-sleep.c
2232
2233 test_sleep_LDADD = \
2234 libcore.la
2235
2236 test_replace_var_SOURCES = \
2237 src/test/test-replace-var.c
2238
2239 test_replace_var_LDADD = \
2240 libsystemd-shared.la
2241
2242 test_calendarspec_SOURCES = \
2243 src/test/test-calendarspec.c
2244
2245 test_calendarspec_LDADD = \
2246 libsystemd-shared.la
2247
2248 test_strip_tab_ansi_SOURCES = \
2249 src/test/test-strip-tab-ansi.c
2250
2251 test_strip_tab_ansi_LDADD = \
2252 libsystemd-shared.la
2253
2254 test_daemon_SOURCES = \
2255 src/test/test-daemon.c
2256
2257 test_daemon_LDADD = \
2258 libsystemd-shared.la
2259
2260 test_cgroup_SOURCES = \
2261 src/test/test-cgroup.c
2262
2263 test_cgroup_LDADD = \
2264 libsystemd-shared.la
2265
2266 test_cgroup_mask_SOURCES = \
2267 src/test/test-cgroup-mask.c
2268
2269 test_cgroup_mask_CPPFLAGS = \
2270 $(AM_CPPFLAGS) \
2271 $(MOUNT_CFLAGS)
2272
2273 test_cgroup_mask_CFLAGS = \
2274 $(AM_CFLAGS) \
2275 $(SECCOMP_CFLAGS)
2276
2277 test_cgroup_mask_LDADD = \
2278 libcore.la
2279
2280 test_cgroup_util_SOURCES = \
2281 src/test/test-cgroup-util.c
2282
2283 test_cgroup_util_LDADD = \
2284 libsystemd-shared.la
2285
2286 test_env_util_SOURCES = \
2287 src/test/test-env-util.c
2288
2289 test_env_util_LDADD = \
2290 libsystemd-shared.la
2291
2292 test_strbuf_SOURCES = \
2293 src/test/test-strbuf.c
2294
2295 test_strbuf_LDADD = \
2296 libsystemd-shared.la
2297
2298 test_strv_SOURCES = \
2299 src/test/test-strv.c
2300
2301 test_strv_LDADD = \
2302 libsystemd-shared.la
2303
2304 test_path_util_SOURCES = \
2305 src/test/test-path-util.c
2306
2307 test_path_util_LDADD = \
2308 libsystemd-shared.la
2309
2310 test_path_SOURCES = \
2311 src/test/test-path.c
2312
2313 test_path_CFLAGS = \
2314 $(AM_CFLAGS) \
2315 $(MOUNT_CFLAGS)
2316
2317 test_path_LDADD = \
2318 libcore.la
2319
2320 test_execute_SOURCES = \
2321 src/test/test-execute.c
2322
2323 test_execute_CFLAGS = \
2324 $(AM_CFLAGS) \
2325 $(MOUNT_CFLAGS)
2326
2327 test_execute_LDADD = \
2328 libcore.la
2329
2330 test_siphash24_SOURCES = \
2331 src/test/test-siphash24.c
2332
2333 test_siphash24_LDADD = \
2334 libsystemd-shared.la
2335
2336 test_strxcpyx_SOURCES = \
2337 src/test/test-strxcpyx.c
2338
2339 test_strxcpyx_LDADD = \
2340 libsystemd-shared.la
2341
2342 test_install_SOURCES = \
2343 src/test/test-install.c
2344
2345 test_install_LDADD = \
2346 libsystemd-shared.la
2347
2348 test_watchdog_SOURCES = \
2349 src/test/test-watchdog.c
2350
2351 test_watchdog_LDADD = \
2352 libsystemd-shared.la
2353
2354 test_sched_prio_SOURCES = \
2355 src/test/test-sched-prio.c
2356
2357 test_sched_prio_CPPFLAGS = \
2358 $(AM_CPPFLAGS) \
2359 $(MOUNT_CFLAGS)
2360
2361 test_sched_prio_CFLAGS = \
2362 $(AM_CFLAGS) \
2363 $(SECCOMP_CFLAGS)
2364
2365 test_sched_prio_LDADD = \
2366 libcore.la
2367
2368 test_conf_files_SOURCES = \
2369 src/test/test-conf-files.c
2370
2371 test_conf_files_LDADD = \
2372 libsystemd-shared.la
2373
2374 test_conf_parser_SOURCES = \
2375 src/test/test-conf-parser.c
2376
2377 test_conf_parser_LDADD = \
2378 libsystemd-shared.la
2379
2380 test_af_list_SOURCES = \
2381 src/test/test-af-list.c
2382
2383 test_af_list_LDADD = \
2384 libsystemd-shared.la
2385
2386 test_arphrd_list_SOURCES = \
2387 src/test/test-arphrd-list.c
2388
2389 test_arphrd_list_LDADD = \
2390 libsystemd-shared.la
2391
2392 # ------------------------------------------------------------------------------
2393 ## .PHONY so it always rebuilds it
2394 .PHONY: coverage lcov-run lcov-report coverage-sync
2395
2396 # run lcov from scratch, always
2397 coverage: all
2398 $(MAKE) lcov-run
2399 $(MAKE) lcov-report
2400
2401 coverage_dir = coverage
2402 coverage_opts = --base-directory $(srcdir) --directory $(builddir) --rc 'geninfo_adjust_src_path=$(abspath $(srcdir))=>$(abspath $(builddir))'
2403
2404 if ENABLE_COVERAGE
2405 # reset run coverage tests
2406 lcov-run:
2407 @rm -rf $(coverage_dir)
2408 lcov $(coverage_opts) --zerocounters
2409 -$(MAKE) check
2410
2411 # generate report based on current coverage data
2412 lcov-report:
2413 $(MKDIR_P) $(coverage_dir)
2414 lcov $(coverage_opts) --compat-libtool --capture --no-external \
2415 | sed 's|$(abspath $(builddir))|$(abspath $(srcdir))|' > $(coverage_dir)/.lcov.info
2416 lcov --remove $(coverage_dir)/.lcov.info --output-file $(coverage_dir)/.lcov-clean.info 'test-*'
2417 genhtml -t "systemd test coverage" -o $(coverage_dir) $(coverage_dir)/.lcov-clean.info
2418 @echo "Coverage report generated in $(abs_builddir)/$(coverage_dir)/index.html"
2419
2420 # lcov doesn't work properly with vpath builds, make sure that bad
2421 # output is not uploaded by mistake.
2422 coverage-sync: coverage
2423 test "$(builddir)" = "$(srcdir)"
2424 rsync -rlv --delete --omit-dir-times coverage/ $(www_target)/coverage
2425
2426 else
2427 lcov-run lcov-report:
2428 echo "Need to reconfigure with --enable-coverage"
2429 endif
2430
2431 # ------------------------------------------------------------------------------
2432 systemd_analyze_SOURCES = \
2433 src/analyze/analyze.c \
2434 src/analyze/analyze-verify.c \
2435 src/analyze/analyze-verify.h
2436
2437 systemd_analyze_CFLAGS = \
2438 $(AM_CFLAGS) \
2439 $(SECCOMP_CFLAGS) \
2440 $(MOUNT_CFLAGS)
2441
2442 systemd_analyze_LDADD = \
2443 libcore.la
2444
2445 # ------------------------------------------------------------------------------
2446 systemd_initctl_SOURCES = \
2447 src/initctl/initctl.c
2448
2449 systemd_initctl_LDADD = \
2450 libsystemd-shared.la
2451
2452 # ------------------------------------------------------------------------------
2453 systemd_update_utmp_SOURCES = \
2454 src/update-utmp/update-utmp.c
2455
2456 systemd_update_utmp_CFLAGS = \
2457 $(AM_CFLAGS) \
2458 $(AUDIT_CFLAGS)
2459
2460 systemd_update_utmp_LDADD = \
2461 libsystemd-shared.la \
2462 $(AUDIT_LIBS)
2463
2464 # ------------------------------------------------------------------------------
2465 systemd_update_done_SOURCES = \
2466 src/update-done/update-done.c
2467
2468 systemd_update_done_LDADD = \
2469 libsystemd-shared.la
2470
2471 # ------------------------------------------------------------------------------
2472 systemd_shutdown_SOURCES = \
2473 src/core/umount.c \
2474 src/core/umount.h \
2475 src/core/shutdown.c \
2476 src/core/mount-setup.c \
2477 src/core/mount-setup.h \
2478 src/core/killall.h \
2479 src/core/killall.c
2480
2481 systemd_shutdown_LDADD = \
2482 libsystemd-shared.la
2483
2484 # ------------------------------------------------------------------------------
2485 if HAVE_KMOD
2486 systemd_modules_load_SOURCES = \
2487 src/modules-load/modules-load.c
2488
2489 systemd_modules_load_CFLAGS = \
2490 $(AM_CFLAGS) \
2491 $(KMOD_CFLAGS)
2492
2493 systemd_modules_load_LDADD = \
2494 libsystemd-shared.la \
2495 $(KMOD_LIBS)
2496
2497 rootlibexec_PROGRAMS += \
2498 systemd-modules-load
2499
2500 nodist_systemunit_DATA += \
2501 units/systemd-modules-load.service
2502
2503 SYSINIT_TARGET_WANTS += \
2504 systemd-modules-load.service
2505
2506 if ENABLE_TMPFILES
2507 nodist_systemunit_DATA += \
2508 units/kmod-static-nodes.service
2509
2510 SYSINIT_TARGET_WANTS += \
2511 kmod-static-nodes.service
2512 endif
2513 endif
2514
2515 EXTRA_DIST += \
2516 units/systemd-modules-load.service.in \
2517 units/kmod-static-nodes.service.in
2518
2519 # ------------------------------------------------------------------------------
2520 if ENABLE_TMPFILES
2521 systemd_tmpfiles_SOURCES = \
2522 src/tmpfiles/tmpfiles.c
2523
2524 systemd_tmpfiles_CFLAGS = \
2525 $(AM_CFLAGS) \
2526 $(ACL_CFLAGS)
2527
2528 systemd_tmpfiles_LDADD = \
2529 libsystemd-shared.la \
2530 $(ACL_LIBS)
2531
2532 rootbin_PROGRAMS += \
2533 systemd-tmpfiles
2534
2535 dist_systemunit_DATA += \
2536 units/systemd-tmpfiles-clean.timer
2537
2538 nodist_systemunit_DATA += \
2539 units/systemd-tmpfiles-setup-dev.service \
2540 units/systemd-tmpfiles-setup.service \
2541 units/systemd-tmpfiles-clean.service
2542
2543 nodist_tmpfiles_DATA = \
2544 tmpfiles.d/systemd.conf \
2545 tmpfiles.d/etc.conf
2546
2547 dist_tmpfiles_DATA = \
2548 tmpfiles.d/systemd-nologin.conf \
2549 tmpfiles.d/tmp.conf \
2550 tmpfiles.d/x11.conf \
2551 tmpfiles.d/var.conf \
2552 tmpfiles.d/home.conf \
2553 tmpfiles.d/systemd-nspawn.conf \
2554 tmpfiles.d/journal-nocow.conf
2555
2556 if HAVE_SYSV_COMPAT
2557 dist_tmpfiles_DATA += \
2558 tmpfiles.d/legacy.conf
2559 endif
2560
2561 SYSINIT_TARGET_WANTS += \
2562 systemd-tmpfiles-setup-dev.service \
2563 systemd-tmpfiles-setup.service
2564
2565 dist_zshcompletion_data += \
2566 shell-completion/zsh/_systemd-tmpfiles
2567
2568 TIMERS_TARGET_WANTS += \
2569 systemd-tmpfiles-clean.timer
2570
2571 INSTALL_DIRS += \
2572 $(tmpfilesdir) \
2573 $(sysconfdir)/tmpfiles.d
2574 endif
2575
2576 EXTRA_DIST += \
2577 tmpfiles.d/systemd.conf.m4 \
2578 tmpfiles.d/etc.conf.m4 \
2579 units/systemd-tmpfiles-setup-dev.service.in \
2580 units/systemd-tmpfiles-setup.service.in \
2581 units/systemd-tmpfiles-clean.service.in
2582
2583 # ------------------------------------------------------------------------------
2584 if ENABLE_SYSUSERS
2585 systemd_sysusers_SOURCES = \
2586 src/sysusers/sysusers.c
2587
2588 systemd_sysusers_LDADD = \
2589 libsystemd-shared.la
2590
2591 rootbin_PROGRAMS += \
2592 systemd-sysusers
2593
2594 nodist_systemunit_DATA += \
2595 units/systemd-sysusers.service
2596
2597 SYSINIT_TARGET_WANTS += \
2598 systemd-sysusers.service
2599
2600 nodist_sysusers_DATA = \
2601 sysusers.d/systemd.conf \
2602 sysusers.d/basic.conf
2603
2604 if HAVE_REMOTE
2605 nodist_sysusers_DATA += \
2606 sysusers.d/systemd-remote.conf
2607 endif
2608
2609 INSTALL_DIRS += \
2610 $(sysusersdir)
2611 endif
2612
2613 EXTRA_DIST += \
2614 units/systemd-sysusers.service.in \
2615 sysusers.d/systemd.conf.m4 \
2616 sysusers.d/systemd-remote.conf.m4 \
2617 sysusers.d/basic.conf.in
2618
2619 # ------------------------------------------------------------------------------
2620 dist_factory_etc_DATA = \
2621 factory/etc/nsswitch.conf
2622
2623 if HAVE_PAM
2624 dist_factory_pam_DATA = \
2625 factory/etc/pam.d/system-auth \
2626 factory/etc/pam.d/other
2627 endif
2628
2629 # ------------------------------------------------------------------------------
2630 if ENABLE_FIRSTBOOT
2631 systemd_firstboot_SOURCES = \
2632 src/firstboot/firstboot.c
2633
2634 systemd_firstboot_LDADD = \
2635 libsystemd-shared.la \
2636 -lcrypt
2637
2638 rootbin_PROGRAMS += \
2639 systemd-firstboot
2640
2641 nodist_systemunit_DATA += \
2642 units/systemd-firstboot.service
2643
2644 SYSINIT_TARGET_WANTS += \
2645 systemd-firstboot.service
2646 endif
2647
2648 EXTRA_DIST += \
2649 units/systemd-firstboot.service.in
2650
2651 # ------------------------------------------------------------------------------
2652 systemd_machine_id_setup_SOURCES = \
2653 src/machine-id-setup/machine-id-setup-main.c \
2654 src/core/machine-id-setup.c \
2655 src/core/machine-id-setup.h
2656
2657 systemd_machine_id_setup_LDADD = \
2658 libsystemd-shared.la
2659
2660 SYSINIT_TARGET_WANTS += \
2661 systemd-machine-id-commit.service
2662
2663 # ------------------------------------------------------------------------------
2664 systemd_sysctl_SOURCES = \
2665 src/sysctl/sysctl.c
2666
2667 systemd_sysctl_LDADD = \
2668 libsystemd-shared.la
2669
2670 # ------------------------------------------------------------------------------
2671 systemd_sleep_SOURCES = \
2672 src/sleep/sleep.c
2673
2674 systemd_sleep_LDADD = \
2675 libsystemd-shared.la
2676
2677 # ------------------------------------------------------------------------------
2678 systemd_fsck_SOURCES = \
2679 src/fsck/fsck.c
2680
2681 systemd_fsck_LDADD = \
2682 libsystemd-shared.la
2683
2684 # ------------------------------------------------------------------------------
2685 systemd_ac_power_SOURCES = \
2686 src/ac-power/ac-power.c
2687
2688 systemd_ac_power_LDADD = \
2689 libsystemd-shared.la
2690
2691 # ------------------------------------------------------------------------------
2692 systemd_detect_virt_SOURCES = \
2693 src/detect-virt/detect-virt.c
2694
2695 systemd_detect_virt_LDADD = \
2696 libsystemd-shared.la
2697
2698 INSTALL_EXEC_HOOKS += \
2699 systemd-detect-virt-install-hook
2700
2701 # ------------------------------------------------------------------------------
2702 systemd_delta_SOURCES = \
2703 src/delta/delta.c
2704
2705 systemd_delta_LDADD = \
2706 libsystemd-shared.la
2707
2708 # ------------------------------------------------------------------------------
2709 systemd_getty_generator_SOURCES = \
2710 src/getty-generator/getty-generator.c
2711
2712 systemd_getty_generator_LDADD = \
2713 libsystemd-shared.la
2714
2715 # ------------------------------------------------------------------------------
2716 systemd_debug_generator_SOURCES = \
2717 src/debug-generator/debug-generator.c
2718
2719 systemd_debug_generator_LDADD = \
2720 libsystemd-shared.la
2721
2722 # ------------------------------------------------------------------------------
2723 systemd_fstab_generator_SOURCES = \
2724 src/fstab-generator/fstab-generator.c \
2725 src/core/mount-setup.c
2726
2727 systemd_fstab_generator_LDADD = \
2728 libsystemd-shared.la
2729
2730 # ------------------------------------------------------------------------------
2731 systemd_system_update_generator_SOURCES = \
2732 src/system-update-generator/system-update-generator.c
2733
2734 systemd_system_update_generator_LDADD = \
2735 libsystemd-shared.la
2736
2737 # ------------------------------------------------------------------------------
2738 if ENABLE_HIBERNATE
2739 systemgenerator_PROGRAMS += \
2740 systemd-hibernate-resume-generator
2741
2742 rootlibexec_PROGRAMS += \
2743 systemd-hibernate-resume
2744
2745 systemd_hibernate_resume_SOURCES = \
2746 src/hibernate-resume/hibernate-resume.c
2747
2748 systemd_hibernate_resume_LDADD = \
2749 libsystemd-shared.la
2750
2751 systemd_hibernate_resume_generator_SOURCES = \
2752 src/hibernate-resume/hibernate-resume-generator.c
2753
2754 systemd_hibernate_resume_generator_LDADD = \
2755 libsystemd-shared.la
2756
2757 dist_systemunit_DATA += \
2758 units/hibernate.target \
2759 units/hybrid-sleep.target
2760
2761 nodist_systemunit_DATA += \
2762 units/systemd-hibernate.service \
2763 units/systemd-hibernate-resume@.service \
2764 units/systemd-hybrid-sleep.service
2765 endif
2766
2767 EXTRA_DIST += \
2768 units/systemd-hibernate.service.in \
2769 units/systemd-hibernate-resume@.service.in \
2770 units/systemd-hybrid-sleep.service.in
2771
2772 # ------------------------------------------------------------------------------
2773 if ENABLE_EFI
2774 if HAVE_BLKID
2775 bootctl_SOURCES = \
2776 src/boot/bootctl.c
2777
2778 bootctl_CPPFLAGS = \
2779 $(AM_CPPFLAGS) \
2780 -DEFI_MACHINE_TYPE_NAME=\"$(EFI_MACHINE_TYPE_NAME)\" \
2781 -DBOOTLIBDIR=\"$(bootlibdir)\"
2782
2783 bootctl_CFLAGS = \
2784 $(AM_CFLAGS) \
2785 $(BLKID_CFLAGS)
2786
2787 bootctl_LDADD = \
2788 libsystemd-shared.la \
2789 $(BLKID_LIBS)
2790
2791 bin_PROGRAMS += \
2792 bootctl
2793
2794 dist_bashcompletion_data += \
2795 shell-completion/bash/bootctl
2796
2797 dist_zshcompletion_data += \
2798 shell-completion/zsh/_bootctl
2799 endif
2800
2801 # ------------------------------------------------------------------------------
2802 if HAVE_GNUEFI
2803 efi_cppflags = \
2804 $(EFI_CPPFLAGS) \
2805 -I$(top_builddir) -include config.h \
2806 -I$(EFI_INC_DIR)/efi \
2807 -I$(EFI_INC_DIR)/efi/$(EFI_ARCH) \
2808 -DEFI_MACHINE_TYPE_NAME=\"$(EFI_MACHINE_TYPE_NAME)\"
2809
2810 efi_cflags = \
2811 $(EFI_CFLAGS) \
2812 -Wall \
2813 -Wextra \
2814 -std=gnu90 \
2815 -nostdinc \
2816 -ggdb -O0 \
2817 -fpic \
2818 -fshort-wchar \
2819 -nostdinc \
2820 -ffreestanding \
2821 -fno-strict-aliasing \
2822 -fno-stack-protector \
2823 -Wsign-compare \
2824 -Wno-missing-field-initializers
2825
2826 if ARCH_X86_64
2827 efi_cflags += \
2828 -mno-red-zone \
2829 -mno-sse \
2830 -mno-mmx \
2831 -DEFI_FUNCTION_WRAPPER \
2832 -DGNU_EFI_USE_MS_ABI
2833 endif
2834
2835 if ARCH_IA32
2836 efi_cflags += \
2837 -mno-sse \
2838 -mno-mmx
2839 endif
2840
2841 efi_ldflags = \
2842 $(EFI_LDFLAGS) \
2843 -T $(EFI_LDS_DIR)/elf_$(EFI_ARCH)_efi.lds \
2844 -shared \
2845 -Bsymbolic \
2846 -nostdlib \
2847 -znocombreloc \
2848 -L $(EFI_LIB_DIR) \
2849 $(EFI_LDS_DIR)/crt0-efi-$(EFI_ARCH).o
2850
2851 # Aarch64 and ARM32 don't have an EFI capable objcopy. Use 'binary' instead,
2852 # and add required symbols manually.
2853 if ARCH_AARCH64
2854 efi_ldflags += --defsym=EFI_SUBSYSTEM=0xa
2855 EFI_FORMAT = -O binary
2856 else
2857 EFI_FORMAT = --target=efi-app-$(EFI_ARCH)
2858 endif
2859 endif
2860 endif
2861
2862 # ------------------------------------------------------------------------------
2863 systemd_boot_headers = \
2864 src/boot/efi/util.h \
2865 src/boot/efi/console.h \
2866 src/boot/efi/graphics.h \
2867 src/boot/efi/pefile.h \
2868 src/boot/efi/measure.h \
2869 src/boot/efi/disk.h
2870
2871 systemd_boot_sources = \
2872 src/boot/efi/util.c \
2873 src/boot/efi/console.c \
2874 src/boot/efi/graphics.c \
2875 src/boot/efi/pefile.c \
2876 src/boot/efi/disk.c \
2877 src/boot/efi/measure.c \
2878 src/boot/efi/boot.c
2879
2880 EXTRA_DIST += $(systemd_boot_sources) $(systemd_boot_headers)
2881
2882 systemd_boot_objects = $(addprefix $(top_builddir)/,$(systemd_boot_sources:.c=.o))
2883 systemd_boot_solib = $(top_builddir)/src/boot/efi/systemd_boot.so
2884 systemd_boot = systemd-boot$(EFI_MACHINE_TYPE_NAME).efi
2885
2886 if ENABLE_EFI
2887 if HAVE_GNUEFI
2888 bootlib_DATA = $(systemd_boot)
2889
2890 $(top_builddir)/src/boot/efi/%.o: $(top_srcdir)/src/boot/efi/%.c $(addprefix $(top_srcdir)/,$(systemd_boot_headers))
2891 @$(MKDIR_P) $(top_builddir)/src/boot/efi/
2892 $(AM_V_CC)$(EFI_CC) $(efi_cppflags) $(efi_cflags) -c $< -o $@
2893
2894 $(systemd_boot_solib): $(systemd_boot_objects)
2895 $(AM_V_CCLD)$(LD) $(efi_ldflags) $(systemd_boot_objects) \
2896 -o $@ -lefi -lgnuefi $(shell $(CC) -print-libgcc-file-name); \
2897 nm -D -u $@ | grep ' U ' && exit 1 || :
2898
2899 $(systemd_boot): $(systemd_boot_solib)
2900 $(AM_V_GEN)$(OBJCOPY) -j .text -j .sdata -j .data -j .dynamic \
2901 -j .dynsym -j .rel -j .rela -j .reloc $(EFI_FORMAT) $< $@
2902 endif
2903 endif
2904
2905 CLEANFILES += $(systemd_boot_objects) $(systemd_boot_solib) $(systemd_boot)
2906
2907 # ------------------------------------------------------------------------------
2908 stub_headers = \
2909 src/boot/efi/util.h \
2910 src/boot/efi/pefile.h \
2911 src/boot/efi/disk.h \
2912 src/boot/efi/graphics.h \
2913 src/boot/efi/splash.h \
2914 src/boot/efi/measure.h \
2915 src/boot/efi/linux.h
2916
2917 stub_sources = \
2918 src/boot/efi/util.c \
2919 src/boot/efi/pefile.c \
2920 src/boot/efi/disk.c \
2921 src/boot/efi/graphics.c \
2922 src/boot/efi/splash.c \
2923 src/boot/efi/linux.c \
2924 src/boot/efi/measure.c \
2925 src/boot/efi/stub.c
2926
2927 EXTRA_DIST += \
2928 $(stub_sources) \
2929 $(stub_headers) \
2930 test/splash.bmp
2931
2932 stub_objects = $(addprefix $(top_builddir)/,$(stub_sources:.c=.o))
2933 stub_solib = $(top_builddir)/src/boot/efi/stub.so
2934 stub = linux$(EFI_MACHINE_TYPE_NAME).efi.stub
2935
2936 if ENABLE_EFI
2937 if HAVE_GNUEFI
2938 bootlib_DATA += $(stub)
2939
2940 $(top_builddir)/src/boot/efi/%.o: $(top_srcdir)/src/boot/efi/%.c $(addprefix $(top_srcdir)/,$(stub_headers))
2941 @$(MKDIR_P) $(top_builddir)/src/boot/efi/
2942 $(AM_V_CC)$(EFI_CC) $(efi_cppflags) $(efi_cflags) -c $< -o $@
2943
2944 $(stub_solib): $(stub_objects)
2945 $(AM_V_CCLD)$(LD) $(efi_ldflags) $(stub_objects) \
2946 -o $@ -lefi -lgnuefi $(shell $(CC) -print-libgcc-file-name); \
2947 nm -D -u $@ | grep ' U ' && exit 1 || :
2948
2949 $(stub): $(stub_solib)
2950 $(AM_V_GEN)$(OBJCOPY) -j .text -j .sdata -j .data -j .dynamic \
2951 -j .dynsym -j .rel -j .rela -j .reloc $(EFI_FORMAT) $< $@
2952 endif
2953 endif
2954
2955 CLEANFILES += $(stub_objects) $(stub_solib) $(stub)
2956
2957
2958 # ------------------------------------------------------------------------------
2959 CLEANFILES += test-efi-disk.img
2960
2961 test-efi-disk.img: $(systemd_boot) $(stub) test/test-efi-create-disk.sh
2962 $(AM_V_GEN)test/test-efi-create-disk.sh
2963
2964 test-efi: test-efi-disk.img
2965 $(QEMU) -machine accel=kvm -m 1024 -bios $(QEMU_BIOS) -snapshot test-efi-disk.img
2966
2967 EXTRA_DIST += test/test-efi-create-disk.sh
2968
2969 # ------------------------------------------------------------------------------
2970 if HAVE_BLKID
2971 systemgenerator_PROGRAMS += \
2972 systemd-gpt-auto-generator
2973
2974 systemd_gpt_auto_generator_SOURCES = \
2975 src/gpt-auto-generator/gpt-auto-generator.c \
2976 src/basic/blkid-util.h
2977
2978 systemd_gpt_auto_generator_LDADD = \
2979 libsystemd-shared.la \
2980 $(BLKID_LIBS)
2981
2982 systemd_gpt_auto_generator_CFLAGS = \
2983 $(AM_CFLAGS) \
2984 $(BLKID_CFLAGS)
2985 endif
2986
2987 # ------------------------------------------------------------------------------
2988 dist_xinitrc_SCRIPTS = \
2989 xorg/50-systemd-user.sh
2990
2991 # ------------------------------------------------------------------------------
2992 systemd_sysv_generator_SOURCES = \
2993 src/sysv-generator/sysv-generator.c
2994
2995 systemd_sysv_generator_LDADD = \
2996 libcore.la
2997
2998 # ------------------------------------------------------------------------------
2999 systemd_rc_local_generator_SOURCES = \
3000 src/rc-local-generator/rc-local-generator.c
3001
3002 systemd_rc_local_generator_LDADD = \
3003 libsystemd-shared.la
3004
3005 # ------------------------------------------------------------------------------
3006 systemd_remount_fs_SOURCES = \
3007 src/remount-fs/remount-fs.c \
3008 src/core/mount-setup.c \
3009 src/core/mount-setup.h
3010
3011 systemd_remount_fs_LDADD = \
3012 libsystemd-shared.la
3013
3014 # ------------------------------------------------------------------------------
3015 systemd_cgroups_agent_SOURCES = \
3016 src/cgroups-agent/cgroups-agent.c
3017
3018 systemd_cgroups_agent_LDADD = \
3019 libsystemd-shared.la
3020
3021 # ------------------------------------------------------------------------------
3022 systemd_escape_SOURCES = \
3023 src/escape/escape.c
3024
3025 systemd_escape_LDADD = \
3026 libsystemd-shared.la
3027
3028 # -----------------------------------------------------------------------------
3029 systemctl_SOURCES = \
3030 src/systemctl/systemctl.c
3031
3032 systemctl_LDADD = \
3033 libsystemd-shared.la
3034
3035 # ------------------------------------------------------------------------------
3036 systemd_notify_SOURCES = \
3037 src/notify/notify.c
3038
3039 systemd_notify_LDADD = \
3040 libsystemd-shared.la
3041
3042 # ------------------------------------------------------------------------------
3043 systemd_path_SOURCES = \
3044 src/path/path.c
3045
3046 systemd_path_LDADD = \
3047 libsystemd-shared.la
3048
3049 # ------------------------------------------------------------------------------
3050 systemd_ask_password_SOURCES = \
3051 src/ask-password/ask-password.c
3052
3053 systemd_ask_password_LDADD = \
3054 libsystemd-shared.la
3055
3056 # ------------------------------------------------------------------------------
3057 systemd_reply_password_SOURCES = \
3058 src/reply-password/reply-password.c
3059
3060 systemd_reply_password_LDADD = \
3061 libsystemd-shared.la
3062
3063 # ------------------------------------------------------------------------------
3064 systemd_cgls_SOURCES = \
3065 src/cgls/cgls.c
3066
3067 systemd_cgls_LDADD = \
3068 libsystemd-shared.la
3069
3070 # ------------------------------------------------------------------------------
3071 systemd_cgtop_SOURCES = \
3072 src/cgtop/cgtop.c
3073
3074 systemd_cgtop_LDADD = \
3075 libsystemd-shared.la
3076
3077 # ------------------------------------------------------------------------------
3078 systemd_nspawn_SOURCES = \
3079 src/nspawn/nspawn.c \
3080 src/nspawn/nspawn-settings.c \
3081 src/nspawn/nspawn-settings.h \
3082 src/nspawn/nspawn-mount.c \
3083 src/nspawn/nspawn-mount.h \
3084 src/nspawn/nspawn-network.c \
3085 src/nspawn/nspawn-network.h \
3086 src/nspawn/nspawn-expose-ports.c \
3087 src/nspawn/nspawn-expose-ports.h \
3088 src/nspawn/nspawn-cgroup.c \
3089 src/nspawn/nspawn-cgroup.h \
3090 src/nspawn/nspawn-seccomp.c \
3091 src/nspawn/nspawn-seccomp.h \
3092 src/nspawn/nspawn-register.c \
3093 src/nspawn/nspawn-register.h \
3094 src/nspawn/nspawn-setuid.c \
3095 src/nspawn/nspawn-setuid.h \
3096 src/nspawn/nspawn-stub-pid1.c \
3097 src/nspawn/nspawn-stub-pid1.h \
3098 src/nspawn/nspawn-patch-uid.c \
3099 src/nspawn/nspawn-patch-uid.h \
3100 src/core/mount-setup.c \
3101 src/core/mount-setup.h \
3102 src/core/loopback-setup.c \
3103 src/core/loopback-setup.h
3104
3105 nodist_systemd_nspawn_SOURCES = \
3106 src/nspawn/nspawn-gperf.c
3107
3108 gperf_gperf_sources += \
3109 src/nspawn/nspawn-gperf.gperf
3110
3111 systemd_nspawn_CFLAGS = \
3112 $(AM_CFLAGS) \
3113 $(ACL_CFLAGS) \
3114 $(BLKID_CFLAGS) \
3115 $(SECCOMP_CFLAGS) \
3116 $(SELINUX_CFLAGS)
3117
3118 systemd_nspawn_LDADD = \
3119 libsystemd-shared.la \
3120 $(ACL_LIBS) \
3121 $(BLKID_LIBS) \
3122 $(SECCOMP_LIBS) \
3123 $(SELINUX_LIBS)
3124
3125 if HAVE_LIBIPTC
3126 systemd_nspawn_LDADD += \
3127 libfirewall.la
3128 endif
3129
3130 test_patch_uid_SOURCES = \
3131 src/nspawn/nspawn-patch-uid.c \
3132 src/nspawn/nspawn-patch-uid.h \
3133 src/nspawn/test-patch-uid.c
3134
3135 test_patch_uid_CFLAGS = \
3136 $(AM_CFLAGS) \
3137 $(ACL_CFLAGS)
3138
3139 test_patch_uid_LDADD = \
3140 libsystemd-shared.la \
3141 $(ACL_LIBS)
3142
3143 manual_tests += \
3144 test-patch-uid
3145
3146 # ------------------------------------------------------------------------------
3147 systemd_run_SOURCES = \
3148 src/run/run.c
3149
3150 systemd_run_LDADD = \
3151 libsystemd-shared.la
3152
3153 # ------------------------------------------------------------------------------
3154 systemd_mount_SOURCES = \
3155 src/mount/mount-tool.c
3156
3157 systemd_mount_LDADD = \
3158 libsystemd-shared.la
3159
3160 # ------------------------------------------------------------------------------
3161 systemd_stdio_bridge_SOURCES = \
3162 src/stdio-bridge/stdio-bridge.c
3163
3164 systemd_stdio_bridge_LDADD = \
3165 libsystemd-shared.la
3166
3167 # ------------------------------------------------------------------------------
3168 systemd_tty_ask_password_agent_SOURCES = \
3169 src/tty-ask-password-agent/tty-ask-password-agent.c
3170
3171 systemd_tty_ask_password_agent_LDADD = \
3172 libsystemd-shared.la
3173
3174 # ------------------------------------------------------------------------------
3175 libsystemd_internal_la_SOURCES = \
3176 src/systemd/sd-bus.h \
3177 src/systemd/sd-bus-protocol.h \
3178 src/systemd/sd-bus-vtable.h \
3179 src/systemd/sd-utf8.h \
3180 src/systemd/sd-event.h \
3181 src/systemd/sd-netlink.h \
3182 src/systemd/sd-resolve.h \
3183 src/systemd/sd-login.h \
3184 src/systemd/sd-id128.h \
3185 src/systemd/sd-daemon.h \
3186 src/systemd/sd-path.h \
3187 src/systemd/sd-network.h \
3188 src/systemd/sd-hwdb.h \
3189 src/systemd/sd-device.h \
3190 src/libsystemd/libsystemd.sym \
3191 src/libsystemd/sd-bus/sd-bus.c \
3192 src/libsystemd/sd-bus/bus-control.c \
3193 src/libsystemd/sd-bus/bus-control.h \
3194 src/libsystemd/sd-bus/bus-error.c \
3195 src/libsystemd/sd-bus/bus-error.h \
3196 src/libsystemd/sd-bus/bus-common-errors.h \
3197 src/libsystemd/sd-bus/bus-common-errors.c \
3198 src/libsystemd/sd-bus/bus-internal.c \
3199 src/libsystemd/sd-bus/bus-internal.h \
3200 src/libsystemd/sd-bus/bus-socket.c \
3201 src/libsystemd/sd-bus/bus-socket.h \
3202 src/libsystemd/sd-bus/bus-kernel.c \
3203 src/libsystemd/sd-bus/bus-kernel.h \
3204 src/libsystemd/sd-bus/bus-container.c \
3205 src/libsystemd/sd-bus/bus-container.h \
3206 src/libsystemd/sd-bus/bus-message.c \
3207 src/libsystemd/sd-bus/bus-message.h \
3208 src/libsystemd/sd-bus/bus-creds.c \
3209 src/libsystemd/sd-bus/bus-creds.h \
3210 src/libsystemd/sd-bus/bus-signature.c \
3211 src/libsystemd/sd-bus/bus-signature.h \
3212 src/libsystemd/sd-bus/bus-type.c \
3213 src/libsystemd/sd-bus/bus-type.h \
3214 src/libsystemd/sd-bus/bus-match.c \
3215 src/libsystemd/sd-bus/bus-match.h \
3216 src/libsystemd/sd-bus/bus-bloom.c \
3217 src/libsystemd/sd-bus/bus-bloom.h \
3218 src/libsystemd/sd-bus/bus-introspect.c \
3219 src/libsystemd/sd-bus/bus-introspect.h \
3220 src/libsystemd/sd-bus/bus-objects.c \
3221 src/libsystemd/sd-bus/bus-objects.h \
3222 src/libsystemd/sd-bus/bus-gvariant.c \
3223 src/libsystemd/sd-bus/bus-gvariant.h \
3224 src/libsystemd/sd-bus/bus-convenience.c \
3225 src/libsystemd/sd-bus/bus-track.c \
3226 src/libsystemd/sd-bus/bus-track.h \
3227 src/libsystemd/sd-bus/bus-slot.c \
3228 src/libsystemd/sd-bus/bus-slot.h \
3229 src/libsystemd/sd-bus/bus-protocol.h \
3230 src/libsystemd/sd-bus/kdbus.h \
3231 src/libsystemd/sd-bus/bus-dump.c \
3232 src/libsystemd/sd-bus/bus-dump.h \
3233 src/libsystemd/sd-utf8/sd-utf8.c \
3234 src/libsystemd/sd-event/sd-event.c \
3235 src/libsystemd/sd-netlink/sd-netlink.c \
3236 src/libsystemd/sd-netlink/netlink-internal.h \
3237 src/libsystemd/sd-netlink/netlink-message.c \
3238 src/libsystemd/sd-netlink/netlink-socket.c \
3239 src/libsystemd/sd-netlink/rtnl-message.c \
3240 src/libsystemd/sd-netlink/netlink-types.h \
3241 src/libsystemd/sd-netlink/netlink-types.c \
3242 src/libsystemd/sd-netlink/netlink-util.h \
3243 src/libsystemd/sd-netlink/netlink-util.c \
3244 src/libsystemd/sd-netlink/local-addresses.h \
3245 src/libsystemd/sd-netlink/local-addresses.c \
3246 src/libsystemd/sd-id128/sd-id128.c \
3247 src/libsystemd/sd-id128/id128-util.h \
3248 src/libsystemd/sd-id128/id128-util.c \
3249 src/libsystemd/sd-daemon/sd-daemon.c \
3250 src/libsystemd/sd-login/sd-login.c \
3251 src/libsystemd/sd-path/sd-path.c \
3252 src/libsystemd/sd-network/sd-network.c \
3253 src/libsystemd/sd-network/network-util.h \
3254 src/libsystemd/sd-network/network-util.c \
3255 src/libsystemd/sd-hwdb/sd-hwdb.c \
3256 src/libsystemd/sd-hwdb/hwdb-util.h \
3257 src/libsystemd/sd-hwdb/hwdb-internal.h \
3258 src/libsystemd/sd-device/device-internal.h \
3259 src/libsystemd/sd-device/device-util.h \
3260 src/libsystemd/sd-device/device-enumerator.c \
3261 src/libsystemd/sd-device/device-enumerator-private.h \
3262 src/libsystemd/sd-device/sd-device.c \
3263 src/libsystemd/sd-device/device-private.c \
3264 src/libsystemd/sd-device/device-private.h \
3265 src/libsystemd/sd-resolve/sd-resolve.c
3266
3267 libsystemd_internal_la_LIBADD = \
3268 -lresolv
3269
3270 noinst_LTLIBRARIES += \
3271 libsystemd-internal.la
3272
3273 EXTRA_DIST += \
3274 src/libsystemd/libsystemd.pc.in \
3275 src/libsystemd/sd-bus/DIFFERENCES \
3276 src/libsystemd/sd-bus/GVARIANT-SERIALIZATION
3277
3278 libsystemd_la_SOURCES =
3279
3280 libsystemd_la_LDFLAGS = \
3281 $(AM_LDFLAGS) \
3282 -version-info $(LIBSYSTEMD_CURRENT):$(LIBSYSTEMD_REVISION):$(LIBSYSTEMD_AGE) \
3283 -Wl,--version-script=$(top_srcdir)/src/libsystemd/libsystemd.sym
3284
3285 libsystemd_la_LIBADD = \
3286 libsystemd-internal.la \
3287 libbasic.la \
3288 libsystemd-journal-internal.la
3289
3290 pkgconfiglib_DATA += \
3291 src/libsystemd/libsystemd.pc
3292
3293 pkginclude_HEADERS += \
3294 src/systemd/sd-bus.h \
3295 src/systemd/sd-bus-protocol.h \
3296 src/systemd/sd-bus-vtable.h \
3297 src/systemd/sd-event.h \
3298 src/systemd/sd-login.h \
3299 src/systemd/sd-id128.h \
3300 src/systemd/sd-daemon.h
3301
3302 rootlib_LTLIBRARIES += \
3303 libsystemd.la
3304
3305 tests += \
3306 test-bus-marshal \
3307 test-bus-signature \
3308 test-bus-benchmark \
3309 test-bus-chat \
3310 test-bus-cleanup \
3311 test-bus-server \
3312 test-bus-match \
3313 test-bus-kernel \
3314 test-bus-kernel-bloom \
3315 test-bus-zero-copy \
3316 test-bus-introspect \
3317 test-bus-objects \
3318 test-bus-error \
3319 test-bus-creds \
3320 test-bus-gvariant \
3321 test-bus-track \
3322 test-event \
3323 test-netlink \
3324 test-local-addresses \
3325 test-resolve
3326
3327 bin_PROGRAMS += \
3328 busctl
3329
3330 test_bus_marshal_SOURCES = \
3331 src/libsystemd/sd-bus/test-bus-marshal.c
3332
3333 test_bus_marshal_LDADD = \
3334 libsystemd-shared.la \
3335 $(GLIB_LIBS) \
3336 $(DBUS_LIBS)
3337
3338 test_bus_marshal_CFLAGS = \
3339 $(AM_CFLAGS) \
3340 $(GLIB_CFLAGS) \
3341 $(DBUS_CFLAGS)
3342
3343 test_bus_signature_SOURCES = \
3344 src/libsystemd/sd-bus/test-bus-signature.c
3345
3346 test_bus_signature_LDADD = \
3347 libsystemd-shared.la
3348
3349 test_bus_chat_SOURCES = \
3350 src/libsystemd/sd-bus/test-bus-chat.c
3351
3352 test_bus_chat_LDADD = \
3353 libsystemd-shared.la
3354
3355 test_bus_cleanup_SOURCES = \
3356 src/libsystemd/sd-bus/test-bus-cleanup.c
3357
3358 test_bus_cleanup_CFLAGS = \
3359 $(AM_CFLAGS) \
3360 $(SECCOMP_CFLAGS)
3361
3362 test_bus_cleanup_LDADD = \
3363 libsystemd-shared.la
3364
3365 test_bus_track_SOURCES = \
3366 src/libsystemd/sd-bus/test-bus-track.c
3367
3368 test_bus_track_CFLAGS = \
3369 $(AM_CFLAGS) \
3370 $(SECCOMP_CFLAGS)
3371
3372 test_bus_track_LDADD = \
3373 libsystemd-shared.la
3374
3375 test_bus_server_SOURCES = \
3376 src/libsystemd/sd-bus/test-bus-server.c
3377
3378 test_bus_server_LDADD = \
3379 libsystemd-shared.la
3380
3381 test_bus_objects_SOURCES = \
3382 src/libsystemd/sd-bus/test-bus-objects.c
3383
3384 test_bus_objects_LDADD = \
3385 libsystemd-shared.la
3386
3387 test_bus_error_SOURCES = \
3388 src/libsystemd/sd-bus/test-bus-error.c
3389
3390 # Link statically because this test uses BUS_ERROR_MAP_ELF_REGISTER
3391 test_bus_error_LDADD = \
3392 libshared.la
3393
3394 test_bus_gvariant_SOURCES = \
3395 src/libsystemd/sd-bus/test-bus-gvariant.c
3396
3397 test_bus_gvariant_LDADD = \
3398 libsystemd-shared.la \
3399 $(GLIB_LIBS)
3400
3401 test_bus_gvariant_CFLAGS = \
3402 $(AM_CFLAGS) \
3403 $(GLIB_CFLAGS)
3404
3405 test_bus_creds_SOURCES = \
3406 src/libsystemd/sd-bus/test-bus-creds.c
3407
3408 test_bus_creds_LDADD = \
3409 libsystemd-shared.la
3410
3411 test_bus_match_SOURCES = \
3412 src/libsystemd/sd-bus/test-bus-match.c
3413
3414 test_bus_match_LDADD = \
3415 libsystemd-shared.la
3416
3417 test_bus_kernel_SOURCES = \
3418 src/libsystemd/sd-bus/test-bus-kernel.c
3419
3420 test_bus_kernel_LDADD = \
3421 libsystemd-shared.la
3422
3423 test_bus_kernel_bloom_SOURCES = \
3424 src/libsystemd/sd-bus/test-bus-kernel-bloom.c
3425
3426 test_bus_kernel_bloom_LDADD = \
3427 libsystemd-shared.la
3428
3429 test_bus_benchmark_SOURCES = \
3430 src/libsystemd/sd-bus/test-bus-benchmark.c
3431
3432 test_bus_benchmark_LDADD = \
3433 libsystemd-shared.la
3434
3435 test_bus_zero_copy_SOURCES = \
3436 src/libsystemd/sd-bus/test-bus-zero-copy.c
3437
3438 test_bus_zero_copy_LDADD = \
3439 libsystemd-shared.la
3440
3441 test_bus_introspect_SOURCES = \
3442 src/libsystemd/sd-bus/test-bus-introspect.c
3443
3444 test_bus_introspect_LDADD = \
3445 libsystemd-shared.la
3446
3447 test_event_SOURCES = \
3448 src/libsystemd/sd-event/test-event.c
3449
3450 test_event_LDADD = \
3451 libsystemd-shared.la
3452
3453 test_netlink_SOURCES = \
3454 src/libsystemd/sd-netlink/test-netlink.c
3455
3456 test_netlink_LDADD = \
3457 libsystemd-shared.la
3458
3459 test_local_addresses_SOURCES = \
3460 src/libsystemd/sd-netlink/test-local-addresses.c
3461
3462 test_local_addresses_LDADD = \
3463 libsystemd-shared.la
3464
3465 test_resolve_SOURCES = \
3466 src/libsystemd/sd-resolve/test-resolve.c
3467
3468 test_resolve_LDADD = \
3469 libsystemd-shared.la
3470
3471 busctl_SOURCES = \
3472 src/libsystemd/sd-bus/busctl.c \
3473 src/libsystemd/sd-bus/busctl-introspect.c \
3474 src/libsystemd/sd-bus/busctl-introspect.h
3475
3476 busctl_LDADD = \
3477 libsystemd-shared.la
3478
3479 # ------------------------------------------------------------------------------
3480 noinst_LTLIBRARIES += \
3481 libsystemd-network.la
3482
3483 libsystemd_network_la_CFLAGS = \
3484 $(AM_CFLAGS) \
3485 $(KMOD_CFLAGS)
3486
3487 libsystemd_network_la_SOURCES = \
3488 src/systemd/sd-dhcp-client.h \
3489 src/systemd/sd-dhcp-server.h \
3490 src/systemd/sd-dhcp-lease.h \
3491 src/systemd/sd-ipv4ll.h \
3492 src/systemd/sd-ipv4acd.h \
3493 src/systemd/sd-ndisc.h \
3494 src/systemd/sd-dhcp6-client.h \
3495 src/systemd/sd-dhcp6-lease.h \
3496 src/systemd/sd-lldp.h \
3497 src/libsystemd-network/sd-dhcp-client.c \
3498 src/libsystemd-network/sd-dhcp-server.c \
3499 src/libsystemd-network/dhcp-network.c \
3500 src/libsystemd-network/dhcp-option.c \
3501 src/libsystemd-network/dhcp-packet.c \
3502 src/libsystemd-network/dhcp-internal.h \
3503 src/libsystemd-network/dhcp-server-internal.h \
3504 src/libsystemd-network/dhcp-protocol.h \
3505 src/libsystemd-network/dhcp-lease-internal.h \
3506 src/libsystemd-network/sd-dhcp-lease.c \
3507 src/libsystemd-network/sd-ipv4ll.c \
3508 src/libsystemd-network/sd-ipv4acd.c \
3509 src/libsystemd-network/arp-util.h \
3510 src/libsystemd-network/arp-util.c \
3511 src/libsystemd-network/network-internal.c \
3512 src/libsystemd-network/network-internal.h \
3513 src/libsystemd-network/sd-ndisc.c \
3514 src/libsystemd-network/ndisc-internal.h \
3515 src/libsystemd-network/ndisc-router.h \
3516 src/libsystemd-network/ndisc-router.c \
3517 src/libsystemd-network/icmp6-util.h \
3518 src/libsystemd-network/icmp6-util.c \
3519 src/libsystemd-network/sd-dhcp6-client.c \
3520 src/libsystemd-network/dhcp6-internal.h \
3521 src/libsystemd-network/dhcp6-protocol.h \
3522 src/libsystemd-network/dhcp6-network.c \
3523 src/libsystemd-network/dhcp6-option.c \
3524 src/libsystemd-network/dhcp6-lease-internal.h \
3525 src/libsystemd-network/sd-dhcp6-lease.c \
3526 src/libsystemd-network/dhcp-identifier.h \
3527 src/libsystemd-network/dhcp-identifier.c \
3528 src/libsystemd-network/lldp-internal.h \
3529 src/libsystemd-network/lldp-network.h \
3530 src/libsystemd-network/lldp-network.c \
3531 src/libsystemd-network/lldp-neighbor.h \
3532 src/libsystemd-network/lldp-neighbor.c \
3533 src/libsystemd-network/sd-lldp.c
3534
3535 libsystemd_network_la_LIBADD = \
3536 $(KMOD_LIBS)
3537
3538 test_dhcp_option_SOURCES = \
3539 src/libsystemd-network/dhcp-protocol.h \
3540 src/libsystemd-network/dhcp-internal.h \
3541 src/libsystemd-network/test-dhcp-option.c
3542
3543 test_dhcp_option_LDADD = \
3544 libsystemd-network.la \
3545 libsystemd-shared.la
3546
3547 test_dhcp_client_SOURCES = \
3548 src/systemd/sd-dhcp-client.h \
3549 src/libsystemd-network/dhcp-protocol.h \
3550 src/libsystemd-network/dhcp-internal.h \
3551 src/libsystemd-network/test-dhcp-client.c
3552
3553 test_dhcp_client_LDADD = \
3554 libsystemd-network.la \
3555 libsystemd-shared.la
3556
3557 test_dhcp_server_SOURCES = \
3558 src/libsystemd-network/test-dhcp-server.c
3559
3560 test_dhcp_server_LDADD = \
3561 libsystemd-network.la \
3562 libsystemd-shared.la
3563
3564 test_ipv4ll_SOURCES = \
3565 src/systemd/sd-ipv4ll.h \
3566 src/libsystemd-network/arp-util.h \
3567 src/libsystemd-network/test-ipv4ll.c
3568
3569 test_ipv4ll_LDADD = \
3570 libsystemd-network.la \
3571 libsystemd-shared.la
3572
3573 test_ipv4ll_manual_SOURCES = \
3574 src/systemd/sd-ipv4ll.h \
3575 src/libsystemd-network/test-ipv4ll-manual.c
3576
3577 test_ipv4ll_manual_LDADD = \
3578 libsystemd-network.la \
3579 libsystemd-shared.la
3580
3581 test_acd_SOURCES = \
3582 src/systemd/sd-ipv4acd.h \
3583 src/libsystemd-network/test-acd.c
3584
3585 test_acd_LDADD = \
3586 libsystemd-network.la \
3587 libsystemd-shared.la
3588
3589 test_ndisc_rs_SOURCES = \
3590 src/systemd/sd-dhcp6-client.h \
3591 src/systemd/sd-ndisc.h \
3592 src/libsystemd-network/icmp6-util.h \
3593 src/libsystemd-network/test-ndisc-rs.c \
3594 src/libsystemd-network/dhcp-identifier.h \
3595 src/libsystemd-network/dhcp-identifier.c
3596
3597 test_ndisc_rs_LDADD = \
3598 libsystemd-network.la \
3599 libudev.la \
3600 libsystemd-shared.la
3601
3602 test_dhcp6_client_SOURCES = \
3603 src/systemd/sd-dhcp6-client.h \
3604 src/libsystemd-network/dhcp6-internal.h \
3605 src/libsystemd-network/test-dhcp6-client.c \
3606 src/libsystemd-network/dhcp-identifier.h \
3607 src/libsystemd-network/dhcp-identifier.c
3608
3609 test_dhcp6_client_LDADD = \
3610 libsystemd-network.la \
3611 libudev.la \
3612 libsystemd-shared.la
3613
3614 test_lldp_SOURCES = \
3615 src/libsystemd-network/test-lldp.c
3616
3617 test_lldp_LDADD = \
3618 libsystemd-network.la \
3619 libsystemd-shared.la
3620
3621 tests += \
3622 test-dhcp-option \
3623 test-dhcp-client \
3624 test-dhcp-server \
3625 test-ipv4ll \
3626 test-ndisc-rs \
3627 test-dhcp6-client \
3628 test-lldp
3629
3630 # ------------------------------------------------------------------------------
3631 include_HEADERS += \
3632 src/libudev/libudev.h
3633
3634 rootlib_LTLIBRARIES += \
3635 libudev.la
3636
3637 libudev_la_SOURCES =\
3638 src/libudev/libudev.sym \
3639 src/libudev/libudev-private.h \
3640 src/libudev/libudev-device-internal.h \
3641 src/libudev/libudev.c \
3642 src/libudev/libudev-list.c \
3643 src/libudev/libudev-util.c \
3644 src/libudev/libudev-device.c \
3645 src/libudev/libudev-device-private.c \
3646 src/libudev/libudev-enumerate.c \
3647 src/libudev/libudev-monitor.c \
3648 src/libudev/libudev-queue.c \
3649 src/libudev/libudev-hwdb.c
3650
3651 libudev_la_LDFLAGS = \
3652 $(AM_LDFLAGS) \
3653 -version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \
3654 -Wl,--version-script=$(top_srcdir)/src/libudev/libudev.sym
3655
3656 libudev_la_LIBADD = \
3657 libsystemd-internal.la \
3658 libbasic.la
3659
3660 pkgconfiglib_DATA += \
3661 src/libudev/libudev.pc
3662
3663 EXTRA_DIST += \
3664 src/libudev/libudev.pc.in
3665
3666 # ------------------------------------------------------------------------------
3667 noinst_LTLIBRARIES += \
3668 libudev-internal.la
3669
3670 libudev_internal_la_SOURCES =\
3671 $(libudev_la_SOURCES)
3672
3673 # ------------------------------------------------------------------------------
3674 INSTALL_DIRS += \
3675 $(sysconfdir)/udev/rules.d
3676
3677 dist_network_DATA = \
3678 network/99-default.link \
3679 network/80-container-host0.network \
3680 network/80-container-ve.network \
3681 network/80-container-vz.network
3682
3683 dist_udevrules_DATA += \
3684 rules/50-udev-default.rules \
3685 rules/60-block.rules \
3686 rules/60-drm.rules \
3687 rules/60-evdev.rules \
3688 rules/60-persistent-storage-tape.rules \
3689 rules/60-persistent-input.rules \
3690 rules/60-persistent-alsa.rules \
3691 rules/60-persistent-storage.rules \
3692 rules/60-serial.rules \
3693 rules/64-btrfs.rules \
3694 rules/70-mouse.rules \
3695 rules/70-touchpad.rules \
3696 rules/75-net-description.rules \
3697 rules/78-sound-card.rules \
3698 rules/80-net-setup-link.rules
3699
3700 nodist_udevrules_DATA += \
3701 rules/99-systemd.rules
3702
3703 udevconfdir = $(sysconfdir)/udev
3704 dist_udevconf_DATA = \
3705 src/udev/udev.conf
3706
3707 pkgconfigdata_DATA += \
3708 src/udev/udev.pc
3709
3710 EXTRA_DIST += \
3711 rules/99-systemd.rules.in \
3712 src/udev/udev.pc.in
3713
3714 EXTRA_DIST += \
3715 units/systemd-udevd.service.in \
3716 units/systemd-udev-trigger.service.in \
3717 units/systemd-udev-settle.service.in
3718
3719 SOCKETS_TARGET_WANTS += \
3720 systemd-udevd-control.socket \
3721 systemd-udevd-kernel.socket
3722
3723 SYSINIT_TARGET_WANTS += \
3724 systemd-udevd.service \
3725 systemd-udev-trigger.service
3726
3727 rootbin_PROGRAMS += \
3728 udevadm
3729
3730 rootlibexec_PROGRAMS += \
3731 systemd-udevd
3732
3733 noinst_LTLIBRARIES += \
3734 libudev-core.la
3735
3736 src/udev/keyboard-keys-list.txt:
3737 $(AM_V_at)$(MKDIR_P) $(dir $@)
3738 $(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 } }' > $@
3739
3740 src/udev/keyboard-keys-from-name.gperf: src/udev/keyboard-keys-list.txt
3741 $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print tolower(substr($$1 ,5)) ", " $$1 }' < $< > $@
3742
3743 src/udev/keyboard-keys-from-name.h: src/udev/keyboard-keys-from-name.gperf
3744 $(AM_V_GPERF)$(GPERF) -L ANSI-C -t -N keyboard_lookup_key -H hash_key_name -p -C < $< > $@
3745
3746 gperf_txt_sources += \
3747 src/udev/keyboard-keys-list.txt
3748
3749 libudev_core_la_SOURCES = \
3750 src/udev/udev.h \
3751 src/udev/udev-event.c \
3752 src/udev/udev-watch.c \
3753 src/udev/udev-node.c \
3754 src/udev/udev-rules.c \
3755 src/udev/udev-ctrl.c \
3756 src/udev/udev-builtin.c \
3757 src/udev/udev-builtin-btrfs.c \
3758 src/udev/udev-builtin-hwdb.c \
3759 src/udev/udev-builtin-input_id.c \
3760 src/udev/udev-builtin-keyboard.c \
3761 src/udev/udev-builtin-net_id.c \
3762 src/udev/udev-builtin-net_setup_link.c \
3763 src/udev/udev-builtin-path_id.c \
3764 src/udev/udev-builtin-usb_id.c \
3765 src/udev/net/link-config.h \
3766 src/udev/net/link-config.c \
3767 src/udev/net/ethtool-util.h \
3768 src/udev/net/ethtool-util.c
3769
3770 nodist_libudev_core_la_SOURCES = \
3771 src/udev/keyboard-keys-from-name.h \
3772 src/udev/net/link-config-gperf.c
3773
3774 gperf_gperf_sources += \
3775 src/udev/net/link-config-gperf.gperf
3776
3777 libudev_core_la_CFLAGS = \
3778 $(AM_CFLAGS) \
3779 $(BLKID_CFLAGS) \
3780 $(KMOD_CFLAGS)
3781
3782 libudev_core_la_LIBADD = \
3783 libsystemd-network.la \
3784 libshared.la \
3785 $(BLKID_LIBS) \
3786 $(KMOD_LIBS)
3787
3788 if HAVE_KMOD
3789 libudev_core_la_SOURCES += \
3790 src/udev/udev-builtin-kmod.c
3791
3792 dist_udevrules_DATA += \
3793 rules/80-drivers.rules
3794 endif
3795
3796 if HAVE_BLKID
3797 libudev_core_la_SOURCES += \
3798 src/udev/udev-builtin-blkid.c
3799 endif
3800
3801 if HAVE_ACL
3802 libudev_core_la_SOURCES += \
3803 src/udev/udev-builtin-uaccess.c \
3804 src/login/logind-acl.c \
3805 src/libsystemd/sd-login/sd-login.c \
3806 src/systemd/sd-login.h
3807 endif
3808
3809 systemd_udevd_SOURCES = \
3810 src/udev/udevd.c
3811
3812 systemd_udevd_LDADD = \
3813 libudev-core.la \
3814 libbasic.la
3815
3816 udevadm_SOURCES = \
3817 src/udev/udevadm.c \
3818 src/udev/udevadm-info.c \
3819 src/udev/udevadm-control.c \
3820 src/udev/udevadm-monitor.c \
3821 src/udev/udevadm-hwdb.c \
3822 src/udev/udevadm-settle.c \
3823 src/udev/udevadm-trigger.c \
3824 src/udev/udevadm-test.c \
3825 src/udev/udevadm-test-builtin.c \
3826 src/udev/udevadm-util.c \
3827 src/udev/udevadm-util.h
3828
3829 udevadm_LDADD = \
3830 libudev-core.la \
3831 libbasic.la
3832
3833 # ------------------------------------------------------------------------------
3834 if ENABLE_HWDB
3835 INSTALL_DIRS += \
3836 $(sysconfdir)/udev/hwdb.d
3837
3838 systemd_hwdb_SOURCES = \
3839 src/libsystemd/sd-hwdb/hwdb-internal.h \
3840 src/hwdb/hwdb.c
3841
3842 systemd_hwdb_LDADD = \
3843 libshared.la
3844
3845 rootbin_PROGRAMS += \
3846 systemd-hwdb
3847
3848 dist_udevhwdb_DATA = \
3849 hwdb/20-pci-vendor-model.hwdb \
3850 hwdb/20-pci-classes.hwdb \
3851 hwdb/20-usb-vendor-model.hwdb \
3852 hwdb/20-usb-classes.hwdb \
3853 hwdb/20-sdio-vendor-model.hwdb \
3854 hwdb/20-sdio-classes.hwdb \
3855 hwdb/20-bluetooth-vendor-product.hwdb \
3856 hwdb/20-acpi-vendor.hwdb \
3857 hwdb/20-OUI.hwdb \
3858 hwdb/20-net-ifname.hwdb \
3859 hwdb/60-evdev.hwdb \
3860 hwdb/60-keyboard.hwdb \
3861 hwdb/70-mouse.hwdb \
3862 hwdb/70-pointingstick.hwdb \
3863 hwdb/70-touchpad.hwdb
3864
3865 SYSINIT_TARGET_WANTS += \
3866 systemd-hwdb-update.service
3867
3868 # Update hwdb on installation. Do not bother if installing
3869 # in DESTDIR, since this is likely for packaging purposes.
3870 hwdb-update-hook:
3871 -test -n "$(DESTDIR)" || $(rootbindir)/systemd-hwdb update
3872
3873 INSTALL_DATA_HOOKS += \
3874 hwdb-update-hook
3875
3876 hwdb-remove-hook:
3877 -test -n "$(DESTDIR)" || rm -f /etc/udev/hwdb.bin
3878 endif
3879
3880 EXTRA_DIST += \
3881 units/systemd-hwdb-update.service.in \
3882 hwdb/ids-update.pl \
3883 hwdb/sdio.ids
3884
3885 # ------------------------------------------------------------------------------
3886 if ENABLE_TESTS
3887 TESTS += \
3888 test/udev-test.pl
3889
3890 if HAVE_PYTHON
3891 TESTS += \
3892 test/rule-syntax-check.py \
3893 hwdb/parse_hwdb.py
3894
3895 if HAVE_SYSV_COMPAT
3896 TESTS += \
3897 test/sysv-generator-test.py
3898 endif
3899 endif
3900 endif
3901
3902 tests += \
3903 test-libudev
3904
3905 manual_tests += \
3906 test-udev
3907
3908 test_libudev_SOURCES = \
3909 src/test/test-libudev.c
3910
3911 test_libudev_LDADD = \
3912 libsystemd-shared.la
3913
3914 test_udev_SOURCES = \
3915 src/test/test-udev.c
3916
3917 test_udev_LDADD = \
3918 libudev-core.la \
3919 libsystemd-shared.la \
3920 $(BLKID_LIBS) \
3921 $(KMOD_LIBS) \
3922 -lrt
3923
3924 if ENABLE_TESTS
3925 check_DATA += \
3926 test/sys
3927 endif
3928
3929 # packed sysfs test tree
3930 test/sys: test/sys.tar.xz
3931 -rm -rf test/sys
3932 $(AM_V_at)$(MKDIR_P) $(dir $@)
3933 $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
3934 -touch test/sys
3935
3936 test-sys-distclean:
3937 -rm -rf test/sys
3938 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
3939
3940 EXTRA_DIST += \
3941 test/sys.tar.xz \
3942 test/udev-test.pl \
3943 test/rule-syntax-check.py \
3944 test/sysv-generator-test.py \
3945 test/mocks/fsck \
3946 hwdb/parse_hwdb.py
3947
3948 # ------------------------------------------------------------------------------
3949 ata_id_SOURCES = \
3950 src/udev/ata_id/ata_id.c
3951
3952 ata_id_LDADD = \
3953 libshared.la
3954
3955 udevlibexec_PROGRAMS += \
3956 ata_id
3957
3958 # ------------------------------------------------------------------------------
3959 cdrom_id_SOURCES = \
3960 src/udev/cdrom_id/cdrom_id.c
3961
3962 cdrom_id_LDADD = \
3963 libshared.la
3964
3965 udevlibexec_PROGRAMS += \
3966 cdrom_id
3967
3968 dist_udevrules_DATA += \
3969 rules/60-cdrom_id.rules
3970
3971 # ------------------------------------------------------------------------------
3972 collect_SOURCES = \
3973 src/udev/collect/collect.c
3974
3975 collect_LDADD = \
3976 libshared.la
3977
3978 udevlibexec_PROGRAMS += \
3979 collect
3980
3981 # ------------------------------------------------------------------------------
3982 scsi_id_SOURCES =\
3983 src/udev/scsi_id/scsi_id.c \
3984 src/udev/scsi_id/scsi_serial.c \
3985 src/udev/scsi_id/scsi.h \
3986 src/udev/scsi_id/scsi_id.h
3987
3988 scsi_id_LDADD = \
3989 libshared.la
3990
3991 udevlibexec_PROGRAMS += \
3992 scsi_id
3993
3994 EXTRA_DIST += \
3995 src/udev/scsi_id/README
3996
3997 # ------------------------------------------------------------------------------
3998 v4l_id_SOURCES = \
3999 src/udev/v4l_id/v4l_id.c
4000
4001 v4l_id_LDADD = \
4002 libshared.la
4003
4004 udevlibexec_PROGRAMS += \
4005 v4l_id
4006
4007 dist_udevrules_DATA += \
4008 rules/60-persistent-v4l.rules
4009
4010 # ------------------------------------------------------------------------------
4011 mtd_probe_SOURCES = \
4012 src/udev/mtd_probe/mtd_probe.c \
4013 src/udev/mtd_probe/mtd_probe.h \
4014 src/udev/mtd_probe/probe_smartmedia.c
4015
4016 dist_udevrules_DATA += \
4017 rules/75-probe_mtd.rules
4018
4019 udevlibexec_PROGRAMS += \
4020 mtd_probe
4021
4022 # ------------------------------------------------------------------------------
4023 test_id128_SOURCES = \
4024 src/test/test-id128.c
4025
4026 test_id128_LDADD = \
4027 libsystemd-shared.la
4028
4029 tests += \
4030 test-id128
4031
4032 # ------------------------------------------------------------------------------
4033
4034 bin_PROGRAMS += \
4035 systemd-socket-activate
4036
4037 systemd_socket_activate_SOURCES = \
4038 src/activate/activate.c
4039
4040 systemd_socket_activate_LDADD = \
4041 libsystemd-shared.la
4042
4043 # ------------------------------------------------------------------------------
4044 systemd_journald_SOURCES = \
4045 src/journal/journald.c \
4046 src/journal/journald-server.h
4047
4048 systemd_journald_LDADD = \
4049 libjournal-core.la \
4050 libsystemd-shared.la
4051
4052 systemd_cat_SOURCES = \
4053 src/journal/cat.c
4054
4055 systemd_cat_LDADD = \
4056 libjournal-core.la
4057
4058 if HAVE_LIBCURL
4059 rootlibexec_PROGRAMS += \
4060 systemd-journal-upload
4061
4062 systemd_journal_upload_SOURCES = \
4063 src/journal-remote/journal-upload.h \
4064 src/journal-remote/journal-upload.c \
4065 src/journal-remote/journal-upload-journal.c
4066
4067 systemd_journal_upload_CFLAGS = \
4068 $(AM_CFLAGS) \
4069 $(LIBCURL_CFLAGS)
4070
4071 systemd_journal_upload_LDADD = \
4072 libsystemd-shared.la \
4073 $(LIBCURL_LIBS)
4074
4075 nodist_systemunit_DATA += \
4076 units/systemd-journal-upload.service
4077
4078 nodist_pkgsysconf_DATA += \
4079 src/journal-remote/journal-upload.conf
4080 endif
4081
4082 EXTRA_DIST += \
4083 units/systemd-journal-upload.service.in \
4084 src/journal-remote/journal-upload.conf.in
4085
4086 if HAVE_MICROHTTPD
4087 rootlibexec_PROGRAMS += \
4088 systemd-journal-remote
4089
4090 systemd_journal_remote_SOURCES = \
4091 src/journal-remote/journal-remote-parse.h \
4092 src/journal-remote/journal-remote-parse.c \
4093 src/journal-remote/journal-remote-write.h \
4094 src/journal-remote/journal-remote-write.c \
4095 src/journal-remote/journal-remote.h \
4096 src/journal-remote/journal-remote.c
4097
4098 systemd_journal_remote_LDADD = \
4099 libjournal-core.la
4100
4101 systemd_journal_remote_SOURCES += \
4102 src/journal-remote/microhttpd-util.h \
4103 src/journal-remote/microhttpd-util.c
4104
4105 systemd_journal_remote_CFLAGS = \
4106 $(AM_CFLAGS) \
4107 $(MICROHTTPD_CFLAGS)
4108
4109 systemd_journal_remote_LDADD += \
4110 $(MICROHTTPD_LIBS)
4111
4112 if ENABLE_TMPFILES
4113 dist_tmpfiles_DATA += \
4114 tmpfiles.d/systemd-remote.conf
4115 endif
4116
4117 if HAVE_GNUTLS
4118 systemd_journal_remote_LDADD += \
4119 $(GNUTLS_LIBS)
4120 endif
4121
4122 # systemd-journal-remote make sense mostly with full crypto stack
4123 dist_systemunit_DATA += \
4124 units/systemd-journal-remote.socket
4125
4126 nodist_systemunit_DATA += \
4127 units/systemd-journal-remote.service
4128
4129 journal-remote-install-hook: journal-install-hook
4130 -$(MKDIR_P) $(DESTDIR)/var/log/journal/remote
4131 -chown 0:0 $(DESTDIR)/var/log/journal/remote
4132 -chmod 755 $(DESTDIR)/var/log/journal/remote
4133
4134 INSTALL_EXEC_HOOKS += journal-remote-install-hook
4135
4136 nodist_pkgsysconf_DATA += \
4137 src/journal-remote/journal-remote.conf
4138
4139 EXTRA_DIST += \
4140 units/systemd-journal-remote.service.in \
4141 src/journal-remote/journal-remote.conf.in \
4142 src/journal-remote/log-generator.py
4143 endif
4144
4145 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4146 journalctl_CFLAGS = \
4147 $(AM_CFLAGS)
4148
4149 journalctl_SOURCES = \
4150 src/journal/journalctl.c
4151
4152 journalctl_LDADD = \
4153 libsystemd-shared.la \
4154 libudev-core.la
4155
4156 if HAVE_QRENCODE
4157 journalctl_SOURCES += \
4158 src/journal/journal-qrcode.c \
4159 src/journal/journal-qrcode.h
4160
4161 journalctl_CFLAGS += \
4162 $(QRENCODE_CFLAGS)
4163
4164 journalctl_LDADD += \
4165 $(QRENCODE_LIBS)
4166 endif
4167
4168 test_journal_SOURCES = \
4169 src/journal/test-journal.c
4170
4171 test_journal_LDADD = \
4172 libjournal-core.la
4173
4174 test_journal_send_SOURCES = \
4175 src/journal/test-journal-send.c
4176
4177 test_journal_send_LDADD = \
4178 libjournal-core.la
4179
4180 test_journal_syslog_SOURCES = \
4181 src/journal/test-journal-syslog.c
4182
4183 test_journal_syslog_LDADD = \
4184 libjournal-core.la
4185
4186 test_journal_match_SOURCES = \
4187 src/journal/test-journal-match.c
4188
4189 test_journal_match_LDADD = \
4190 libjournal-core.la
4191
4192 test_journal_enum_SOURCES = \
4193 src/journal/test-journal-enum.c
4194
4195 test_journal_enum_LDADD = \
4196 libjournal-core.la
4197
4198 test_journal_stream_SOURCES = \
4199 src/journal/test-journal-stream.c
4200
4201 test_journal_stream_LDADD = \
4202 libjournal-core.la
4203
4204 test_journal_flush_SOURCES = \
4205 src/journal/test-journal-flush.c
4206
4207 test_journal_flush_LDADD = \
4208 libjournal-core.la
4209
4210 test_journal_init_SOURCES = \
4211 src/journal/test-journal-init.c
4212
4213 test_journal_init_LDADD = \
4214 libjournal-core.la
4215
4216 test_journal_verify_SOURCES = \
4217 src/journal/test-journal-verify.c
4218
4219 test_journal_verify_LDADD = \
4220 libjournal-core.la
4221
4222 test_journal_interleaving_SOURCES = \
4223 src/journal/test-journal-interleaving.c
4224
4225 test_journal_interleaving_LDADD = \
4226 libjournal-core.la
4227
4228 test_mmap_cache_SOURCES = \
4229 src/journal/test-mmap-cache.c
4230
4231 test_mmap_cache_LDADD = \
4232 libjournal-core.la
4233
4234 test_catalog_SOURCES = \
4235 src/journal/test-catalog.c
4236
4237 test_catalog_CPPFLAGS = \
4238 $(AM_CPPFLAGS) \
4239 -DCATALOG_DIR=\"$(abs_top_builddir)/catalog\"
4240
4241 test_catalog_LDADD = \
4242 libjournal-core.la
4243
4244 test_compress_SOURCES = \
4245 src/journal/test-compress.c
4246
4247 test_compress_LDADD = \
4248 libsystemd-shared.la
4249
4250 if HAVE_LZ4
4251 test_compress_LDADD += \
4252 -llz4
4253 endif
4254
4255 test_compress_benchmark_SOURCES = \
4256 src/journal/test-compress-benchmark.c
4257
4258 test_compress_benchmark_LDADD = \
4259 libsystemd-shared.la
4260
4261 test_audit_type_SOURCES = \
4262 src/journal/test-audit-type.c
4263
4264 test_audit_type_LDADD = \
4265 libjournal-core.la
4266
4267 libjournal_core_la_SOURCES = \
4268 src/journal/journald-kmsg.c \
4269 src/journal/journald-kmsg.h \
4270 src/journal/journald-syslog.c \
4271 src/journal/journald-syslog.h \
4272 src/journal/journald-stream.c \
4273 src/journal/journald-stream.h \
4274 src/journal/journald-server.c \
4275 src/journal/journald-server.h \
4276 src/journal/journald-console.c \
4277 src/journal/journald-console.h \
4278 src/journal/journald-wall.c \
4279 src/journal/journald-wall.h \
4280 src/journal/journald-native.c \
4281 src/journal/journald-native.h \
4282 src/journal/journald-audit.c \
4283 src/journal/journald-audit.h \
4284 src/journal/journald-rate-limit.c \
4285 src/journal/journald-rate-limit.h \
4286 src/journal/journal-internal.h
4287
4288 nodist_libjournal_core_la_SOURCES = \
4289 src/journal/journald-gperf.c
4290
4291 libjournal_core_la_LIBADD = \
4292 libsystemd-shared.la
4293
4294 noinst_LTLIBRARIES += \
4295 libjournal-core.la
4296
4297 journal-install-hook:
4298 -$(MKDIR_P) $(DESTDIR)/var/log/journal
4299 -chown 0:0 $(DESTDIR)/var/log/journal
4300 -chmod 755 $(DESTDIR)/var/log/journal
4301 -setfacl -nm g:adm:rx,d:g:adm:rx $(DESTDIR)/var/log/journal/
4302 -setfacl -nm g:wheel:rx,d:g:wheel:rx $(DESTDIR)/var/log/journal/
4303
4304 journal-uninstall-hook:
4305 -rmdir $(DESTDIR)/var/log/journal/remote
4306 -rmdir $(DESTDIR)/var/log/journal/
4307
4308 INSTALL_EXEC_HOOKS += journal-install-hook
4309 UNINSTALL_EXEC_HOOKS += journal-uninstall-hook
4310
4311 # ------------------------------------------------------------------------------
4312 # Update catalog on installation. Do not bother if installing
4313 # in DESTDIR, since this is likely for packaging purposes.
4314 catalog-update-hook:
4315 -test -n "$(DESTDIR)" || $(rootbindir)/journalctl --update-catalog
4316
4317 INSTALL_DATA_HOOKS += \
4318 catalog-update-hook
4319
4320 catalog-remove-hook:
4321 -test -n "$(DESTDIR)" || rm -f $(catalogstatedir)/database
4322
4323 UNINSTALL_DATA_HOOKS += \
4324 catalog-remove-hook
4325
4326 tests += \
4327 test-journal \
4328 test-journal-enum \
4329 test-journal-send \
4330 test-journal-syslog \
4331 test-journal-match \
4332 test-journal-stream \
4333 test-journal-init \
4334 test-journal-verify \
4335 test-journal-interleaving \
4336 test-journal-flush \
4337 test-mmap-cache \
4338 test-catalog \
4339 test-audit-type
4340
4341 if HAVE_COMPRESSION
4342 tests += \
4343 test-compress \
4344 test-compress-benchmark
4345 endif
4346
4347 pkginclude_HEADERS += \
4348 src/systemd/sd-journal.h \
4349 src/systemd/sd-messages.h \
4350 src/systemd/_sd-common.h
4351
4352 libsystemd_journal_internal_la_SOURCES = \
4353 src/journal/sd-journal.c \
4354 src/systemd/sd-journal.h \
4355 src/systemd/_sd-common.h \
4356 src/journal/journal-file.c \
4357 src/journal/journal-file.h \
4358 src/journal/journal-vacuum.c \
4359 src/journal/journal-vacuum.h \
4360 src/journal/journal-verify.c \
4361 src/journal/journal-verify.h \
4362 src/journal/lookup3.c \
4363 src/journal/lookup3.h \
4364 src/journal/journal-send.c \
4365 src/journal/journal-def.h \
4366 src/journal/compress.h \
4367 src/journal/catalog.c \
4368 src/journal/catalog.h \
4369 src/journal/mmap-cache.c \
4370 src/journal/mmap-cache.h \
4371 src/journal/compress.c \
4372 src/journal/audit-type.h \
4373 src/journal/audit-type.c \
4374 src/shared/gcrypt-util.h \
4375 src/shared/gcrypt-util.c
4376
4377 nodist_libsystemd_journal_internal_la_SOURCES = \
4378 src/journal/audit_type-to-name.h
4379
4380 gperf_txt_sources += \
4381 src/journal/audit_type-list.txt
4382
4383 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4384 libsystemd_journal_internal_la_CFLAGS = \
4385 $(AM_CFLAGS)
4386
4387 libsystemd_journal_internal_la_LIBADD =
4388
4389 if HAVE_XZ
4390 libsystemd_journal_internal_la_CFLAGS += \
4391 $(XZ_CFLAGS)
4392
4393 libsystemd_journal_internal_la_LIBADD += \
4394 $(XZ_LIBS)
4395 endif
4396
4397 if HAVE_LZ4
4398 libsystemd_journal_internal_la_LIBADD += \
4399 -llz4
4400 endif
4401
4402 if HAVE_GCRYPT
4403 libsystemd_journal_internal_la_SOURCES += \
4404 src/journal/journal-authenticate.c \
4405 src/journal/journal-authenticate.h \
4406 src/journal/fsprg.c \
4407 src/journal/fsprg.h
4408
4409 libsystemd_journal_internal_la_LIBADD += \
4410 $(GCRYPT_LIBS)
4411
4412 # fsprg.c is a drop-in file using void pointer arithmetic
4413 libsystemd_journal_internal_la_CFLAGS += \
4414 $(GCRYPT_CFLAGS) \
4415 -Wno-pointer-arith
4416 endif
4417
4418 noinst_LTLIBRARIES += \
4419 libsystemd-journal-internal.la
4420
4421 rootlibexec_PROGRAMS += \
4422 systemd-journald
4423
4424 rootbin_PROGRAMS += \
4425 journalctl
4426
4427 bin_PROGRAMS += \
4428 systemd-cat
4429
4430 dist_systemunit_DATA += \
4431 units/systemd-journald.socket \
4432 units/systemd-journald-dev-log.socket \
4433 units/systemd-journald-audit.socket
4434
4435 nodist_systemunit_DATA += \
4436 units/systemd-journald.service \
4437 units/systemd-journal-flush.service \
4438 units/systemd-journal-catalog-update.service
4439
4440 dist_pkgsysconf_DATA += \
4441 src/journal/journald.conf
4442
4443 nodist_catalog_DATA = \
4444 catalog/systemd.bg.catalog \
4445 catalog/systemd.be.catalog \
4446 catalog/systemd.be@latin.catalog \
4447 catalog/systemd.fr.catalog \
4448 catalog/systemd.it.catalog \
4449 catalog/systemd.pl.catalog \
4450 catalog/systemd.pt_BR.catalog \
4451 catalog/systemd.ru.catalog \
4452 catalog/systemd.zh_CN.catalog \
4453 catalog/systemd.zh_TW.catalog \
4454 catalog/systemd.catalog
4455
4456 EXTRA_DIST += \
4457 $(nodist_catalog_DATA:.catalog=.catalog.in)
4458
4459 # Note that we don't use @@ for replacement markers here, but %%. This is
4460 # because the catalog uses @@ already for its runtime replacement handling and
4461 # we don't want to conflict with that.
4462 catalog/%.catalog: catalog/%.catalog.in
4463 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
4464 $(SED) -e 's~%SUPPORT_URL%~$(SUPPORT_URL)~' < $< > $@
4465
4466 SOCKETS_TARGET_WANTS += \
4467 systemd-journald.socket \
4468 systemd-journald-dev-log.socket \
4469 systemd-journald-audit.socket
4470
4471 SYSINIT_TARGET_WANTS += \
4472 systemd-journald.service \
4473 systemd-journal-flush.service \
4474 systemd-journal-catalog-update.service
4475
4476 EXTRA_DIST += \
4477 units/systemd-journald.service.in \
4478 units/systemd-journal-flush.service.in \
4479 units/systemd-journal-catalog-update.service.in
4480
4481 gperf_gperf_sources += \
4482 src/journal/journald-gperf.gperf
4483
4484 # ------------------------------------------------------------------------------
4485 if HAVE_MICROHTTPD
4486 gatewayddocumentrootdir=$(pkgdatadir)/gatewayd
4487
4488 rootlibexec_PROGRAMS += \
4489 systemd-journal-gatewayd
4490
4491 systemd_journal_gatewayd_SOURCES = \
4492 src/journal-remote/journal-gatewayd.c \
4493 src/journal-remote/microhttpd-util.h \
4494 src/journal-remote/microhttpd-util.c
4495
4496 systemd_journal_gatewayd_LDADD = \
4497 libsystemd-shared.la \
4498 $(MICROHTTPD_LIBS)
4499
4500 if HAVE_GNUTLS
4501 systemd_journal_gatewayd_LDADD += \
4502 $(GNUTLS_LIBS)
4503 endif
4504
4505 systemd_journal_gatewayd_CFLAGS = \
4506 $(AM_CFLAGS) \
4507 $(MICROHTTPD_CFLAGS)
4508
4509 systemd_journal_gatewayd_CPPFLAGS = \
4510 $(AM_CPPFLAGS) \
4511 -DDOCUMENT_ROOT=\"$(gatewayddocumentrootdir)\"
4512
4513 dist_systemunit_DATA += \
4514 units/systemd-journal-gatewayd.socket
4515
4516 nodist_systemunit_DATA += \
4517 units/systemd-journal-gatewayd.service
4518
4519 dist_gatewayddocumentroot_DATA = \
4520 src/journal-remote/browse.html
4521
4522 endif
4523
4524 EXTRA_DIST += \
4525 units/systemd-journal-gatewayd.service.in
4526
4527 # ------------------------------------------------------------------------------
4528
4529 systemd_socket_proxyd_SOURCES = \
4530 src/socket-proxy/socket-proxyd.c
4531
4532 systemd_socket_proxyd_LDADD = \
4533 libsystemd-shared.la
4534
4535 # ------------------------------------------------------------------------------
4536 if ENABLE_COREDUMP
4537 systemd_coredump_SOURCES = \
4538 src/coredump/coredump.c \
4539 src/coredump/coredump-vacuum.c \
4540 src/coredump/coredump-vacuum.h
4541
4542 systemd_coredump_CFLAGS = \
4543 $(AM_CFLAGS) \
4544 $(ACL_CFLAGS)
4545
4546 systemd_coredump_LDADD = \
4547 libsystemd-shared.la \
4548 $(ACL_LIBS)
4549
4550 if HAVE_ELFUTILS
4551 systemd_coredump_SOURCES += \
4552 src/coredump/stacktrace.c \
4553 src/coredump/stacktrace.h
4554
4555 systemd_coredump_LDADD += \
4556 $(ELFUTILS_LIBS)
4557 endif
4558
4559 nodist_systemunit_DATA += \
4560 units/systemd-coredump@.service
4561
4562 dist_systemunit_DATA += \
4563 units/systemd-coredump.socket
4564
4565 SOCKETS_TARGET_WANTS += \
4566 systemd-coredump.socket
4567
4568 rootlibexec_PROGRAMS += \
4569 systemd-coredump
4570
4571 dist_pkgsysconf_DATA += \
4572 src/coredump/coredump.conf
4573
4574 coredumpctl_SOURCES = \
4575 src/coredump/coredumpctl.c
4576
4577 coredumpctl_LDADD = \
4578 libsystemd-shared.la
4579
4580 bin_PROGRAMS += \
4581 coredumpctl
4582
4583 manual_tests += \
4584 test-coredump-vacuum
4585
4586 test_coredump_vacuum_SOURCES = \
4587 src/coredump/test-coredump-vacuum.c \
4588 src/coredump/coredump-vacuum.c \
4589 src/coredump/coredump-vacuum.h
4590
4591 test_coredump_vacuum_LDADD = \
4592 libsystemd-shared.la
4593
4594 dist_bashcompletion_data += \
4595 shell-completion/bash/coredumpctl
4596
4597 dist_zshcompletion_data += \
4598 shell-completion/zsh/_coredumpctl
4599
4600 nodist_sysctl_DATA = \
4601 sysctl.d/50-coredump.conf
4602
4603 CLEANFILES += \
4604 sysctl.d/50-coredump.conf
4605 endif
4606
4607 EXTRA_DIST += \
4608 sysctl.d/50-coredump.conf.in \
4609 units/systemd-coredump@.service.in
4610
4611 # ------------------------------------------------------------------------------
4612 if ENABLE_BINFMT
4613 systemd_binfmt_SOURCES = \
4614 src/binfmt/binfmt.c
4615
4616 systemd_binfmt_LDADD = \
4617 libsystemd-shared.la
4618
4619 rootlibexec_PROGRAMS += \
4620 systemd-binfmt
4621
4622 dist_systemunit_DATA += \
4623 units/proc-sys-fs-binfmt_misc.automount \
4624 units/proc-sys-fs-binfmt_misc.mount
4625
4626 nodist_systemunit_DATA += \
4627 units/systemd-binfmt.service
4628
4629 INSTALL_DIRS += \
4630 $(prefix)/lib/binfmt.d \
4631 $(sysconfdir)/binfmt.d
4632
4633 SYSINIT_TARGET_WANTS += \
4634 systemd-binfmt.service \
4635 proc-sys-fs-binfmt_misc.automount
4636
4637 endif
4638
4639 EXTRA_DIST += \
4640 units/systemd-binfmt.service.in
4641
4642 # ------------------------------------------------------------------------------
4643 if ENABLE_VCONSOLE
4644 systemd_vconsole_setup_SOURCES = \
4645 src/vconsole/vconsole-setup.c
4646
4647 systemd_vconsole_setup_LDADD = \
4648 libsystemd-shared.la
4649
4650 rootlibexec_PROGRAMS += \
4651 systemd-vconsole-setup
4652
4653 nodist_udevrules_DATA += \
4654 src/vconsole/90-vconsole.rules
4655
4656 nodist_systemunit_DATA += \
4657 units/systemd-vconsole-setup.service
4658 endif
4659
4660 EXTRA_DIST += \
4661 src/vconsole/90-vconsole.rules.in \
4662 units/systemd-vconsole-setup.service.in
4663
4664 # ------------------------------------------------------------------------------
4665 if ENABLE_QUOTACHECK
4666 rootlibexec_PROGRAMS += \
4667 systemd-quotacheck
4668
4669 nodist_systemunit_DATA += \
4670 units/systemd-quotacheck.service
4671
4672 systemd_quotacheck_SOURCES = \
4673 src/quotacheck/quotacheck.c
4674
4675 systemd_quotacheck_LDADD = \
4676 libsystemd-shared.la
4677 endif
4678
4679 EXTRA_DIST += \
4680 units/systemd-quotacheck.service.in
4681
4682 nodist_systemunit_DATA += \
4683 units/quotaon.service
4684
4685 # ------------------------------------------------------------------------------
4686 if ENABLE_RANDOMSEED
4687 rootlibexec_PROGRAMS += \
4688 systemd-random-seed
4689
4690 nodist_systemunit_DATA += \
4691 units/systemd-random-seed.service
4692
4693 systemd_random_seed_SOURCES = \
4694 src/random-seed/random-seed.c
4695
4696 systemd_random_seed_LDADD = \
4697 libsystemd-shared.la
4698
4699 SYSINIT_TARGET_WANTS += \
4700 systemd-random-seed.service
4701
4702 endif
4703
4704 EXTRA_DIST += \
4705 units/systemd-random-seed.service.in
4706
4707 # ------------------------------------------------------------------------------
4708 if ENABLE_BACKLIGHT
4709 rootlibexec_PROGRAMS += \
4710 systemd-backlight
4711
4712 nodist_systemunit_DATA += \
4713 units/systemd-backlight@.service
4714
4715 systemd_backlight_SOURCES = \
4716 src/backlight/backlight.c
4717
4718 systemd_backlight_LDADD = \
4719 libsystemd-shared.la
4720 endif
4721
4722 EXTRA_DIST += \
4723 units/systemd-backlight@.service.in
4724
4725 # ------------------------------------------------------------------------------
4726 if ENABLE_RFKILL
4727 rootlibexec_PROGRAMS += \
4728 systemd-rfkill
4729
4730 nodist_systemunit_DATA += \
4731 units/systemd-rfkill.service
4732
4733 dist_systemunit_DATA += \
4734 units/systemd-rfkill.socket
4735
4736 systemd_rfkill_SOURCES = \
4737 src/rfkill/rfkill.c
4738
4739 systemd_rfkill_LDADD = \
4740 libsystemd-shared.la
4741 endif
4742
4743 EXTRA_DIST += \
4744 units/systemd-rfkill.service.in
4745
4746 # ------------------------------------------------------------------------------
4747 if HAVE_LIBCRYPTSETUP
4748 rootlibexec_PROGRAMS += \
4749 systemd-cryptsetup
4750
4751 systemgenerator_PROGRAMS += \
4752 systemd-cryptsetup-generator
4753
4754 dist_systemunit_DATA += \
4755 units/cryptsetup.target \
4756 units/cryptsetup-pre.target
4757
4758 systemd_cryptsetup_SOURCES = \
4759 src/cryptsetup/cryptsetup.c
4760
4761 systemd_cryptsetup_CFLAGS = \
4762 $(AM_CFLAGS) \
4763 $(LIBCRYPTSETUP_CFLAGS)
4764
4765 systemd_cryptsetup_LDADD = \
4766 libsystemd-shared.la \
4767 $(LIBCRYPTSETUP_LIBS)
4768
4769 systemd_cryptsetup_generator_SOURCES = \
4770 src/cryptsetup/cryptsetup-generator.c
4771
4772 systemd_cryptsetup_generator_LDADD = \
4773 libsystemd-shared.la
4774
4775 SYSINIT_TARGET_WANTS += \
4776 cryptsetup.target
4777
4778 endif
4779
4780 # ------------------------------------------------------------------------------
4781 if ENABLE_HOSTNAMED
4782 systemd_hostnamed_SOURCES = \
4783 src/hostname/hostnamed.c
4784
4785 systemd_hostnamed_LDADD = \
4786 libsystemd-shared.la
4787
4788 rootlibexec_PROGRAMS += \
4789 systemd-hostnamed
4790
4791 nodist_systemunit_DATA += \
4792 units/systemd-hostnamed.service
4793
4794 dist_systemunit_DATA_busnames += \
4795 units/org.freedesktop.hostname1.busname
4796
4797 dist_dbuspolicy_DATA += \
4798 src/hostname/org.freedesktop.hostname1.conf
4799
4800 dist_dbussystemservice_DATA += \
4801 src/hostname/org.freedesktop.hostname1.service
4802
4803 polkitpolicy_files += \
4804 src/hostname/org.freedesktop.hostname1.policy
4805
4806 SYSTEM_UNIT_ALIASES += \
4807 systemd-hostnamed.service dbus-org.freedesktop.hostname1.service
4808
4809 BUSNAMES_TARGET_WANTS += \
4810 org.freedesktop.hostname1.busname
4811
4812 hostnamectl_SOURCES = \
4813 src/hostname/hostnamectl.c
4814
4815 hostnamectl_LDADD = \
4816 libsystemd-shared.la
4817
4818 bin_PROGRAMS += \
4819 hostnamectl
4820
4821 dist_bashcompletion_data += \
4822 shell-completion/bash/hostnamectl
4823
4824 dist_zshcompletion_data += \
4825 shell-completion/zsh/_hostnamectl
4826 endif
4827
4828 polkitpolicy_in_files += \
4829 src/hostname/org.freedesktop.hostname1.policy.in
4830
4831 EXTRA_DIST += \
4832 units/systemd-hostnamed.service.in
4833
4834 # ------------------------------------------------------------------------------
4835 dist_systemunit_DATA_busnames += \
4836 units/org.freedesktop.systemd1.busname
4837
4838 BUSNAMES_TARGET_WANTS += \
4839 org.freedesktop.systemd1.busname
4840
4841 # ------------------------------------------------------------------------------
4842 if ENABLE_LOCALED
4843 systemd_localed_SOURCES = \
4844 src/locale/localed.c \
4845 src/locale/keymap-util.c \
4846 src/locale/keymap-util.h
4847
4848 systemd_localed_LDADD = \
4849 libsystemd-shared.la \
4850 -ldl
4851
4852 systemd_localed_CFLAGS = \
4853 $(AM_CFLAGS) \
4854 $(XKBCOMMON_CFLAGS)
4855
4856 nodist_systemunit_DATA += \
4857 units/systemd-localed.service
4858
4859 dist_systemunit_DATA_busnames += \
4860 units/org.freedesktop.locale1.busname
4861
4862 rootlibexec_PROGRAMS += \
4863 systemd-localed
4864
4865 dist_dbuspolicy_DATA += \
4866 src/locale/org.freedesktop.locale1.conf
4867
4868 dist_dbussystemservice_DATA += \
4869 src/locale/org.freedesktop.locale1.service
4870
4871 polkitpolicy_files += \
4872 src/locale/org.freedesktop.locale1.policy
4873
4874 SYSTEM_UNIT_ALIASES += \
4875 systemd-localed.service dbus-org.freedesktop.locale1.service
4876
4877 BUSNAMES_TARGET_WANTS += \
4878 org.freedesktop.locale1.busname
4879
4880 dist_pkgdata_DATA = \
4881 src/locale/kbd-model-map \
4882 src/locale/language-fallback-map
4883
4884 test_keymap_util_SOURCES = \
4885 src/locale/test-keymap-util.c \
4886 src/locale/keymap-util.c \
4887 src/locale/keymap-util.h
4888
4889 test_keymap_util_LDADD = \
4890 libsystemd-shared.la \
4891 -ldl
4892
4893 tests += \
4894 test-keymap-util
4895
4896 localectl_SOURCES = \
4897 src/locale/localectl.c
4898
4899 localectl_LDADD = \
4900 libsystemd-shared.la
4901
4902 bin_PROGRAMS += \
4903 localectl
4904
4905 dist_bashcompletion_data += \
4906 shell-completion/bash/localectl
4907
4908 dist_zshcompletion_data += \
4909 shell-completion/zsh/_localectl
4910 endif
4911
4912 .PHONY: update-kbd-model-map
4913
4914 polkitpolicy_in_files += \
4915 src/locale/org.freedesktop.locale1.policy.in
4916
4917 EXTRA_DIST += \
4918 units/systemd-localed.service.in
4919
4920 # ------------------------------------------------------------------------------
4921 if ENABLE_TIMEDATED
4922 systemd_timedated_SOURCES = \
4923 src/timedate/timedated.c
4924
4925 systemd_timedated_LDADD = \
4926 libsystemd-shared.la
4927
4928 rootlibexec_PROGRAMS += \
4929 systemd-timedated
4930
4931 dist_dbussystemservice_DATA += \
4932 src/timedate/org.freedesktop.timedate1.service
4933
4934 dist_dbuspolicy_DATA += \
4935 src/timedate/org.freedesktop.timedate1.conf
4936
4937 nodist_systemunit_DATA += \
4938 units/systemd-timedated.service
4939
4940 dist_systemunit_DATA_busnames += \
4941 units/org.freedesktop.timedate1.busname
4942
4943 polkitpolicy_files += \
4944 src/timedate/org.freedesktop.timedate1.policy
4945
4946 SYSTEM_UNIT_ALIASES += \
4947 systemd-timedated.service dbus-org.freedesktop.timedate1.service
4948
4949 BUSNAMES_TARGET_WANTS += \
4950 org.freedesktop.timedate1.busname
4951
4952 timedatectl_SOURCES = \
4953 src/timedate/timedatectl.c
4954
4955 timedatectl_LDADD = \
4956 libsystemd-shared.la
4957
4958 bin_PROGRAMS += \
4959 timedatectl
4960
4961 dist_bashcompletion_data += \
4962 shell-completion/bash/timedatectl
4963
4964 dist_zshcompletion_data += \
4965 shell-completion/zsh/_timedatectl
4966 endif
4967
4968 polkitpolicy_in_files += \
4969 src/timedate/org.freedesktop.timedate1.policy.in
4970
4971 EXTRA_DIST += \
4972 units/systemd-timedated.service.in
4973
4974 # ------------------------------------------------------------------------------
4975 if ENABLE_TIMESYNCD
4976 systemd_timesyncd_SOURCES = \
4977 src/timesync/timesyncd.c \
4978 src/timesync/timesyncd-manager.c \
4979 src/timesync/timesyncd-manager.h \
4980 src/timesync/timesyncd-conf.c \
4981 src/timesync/timesyncd-conf.h \
4982 src/timesync/timesyncd-server.c \
4983 src/timesync/timesyncd-server.h
4984
4985 nodist_systemd_timesyncd_SOURCES = \
4986 src/timesync/timesyncd-gperf.c
4987
4988 systemd_timesyncd_LDADD = \
4989 libsystemd-network.la \
4990 libsystemd-shared.la \
4991 -lm
4992
4993 rootlibexec_PROGRAMS += \
4994 systemd-timesyncd
4995
4996 nodist_systemunit_DATA += \
4997 units/systemd-timesyncd.service
4998
4999 GENERAL_ALIASES += \
5000 $(systemunitdir)/systemd-timesyncd.service $(pkgsysconfdir)/system/sysinit.target.wants/systemd-timesyncd.service
5001
5002 nodist_pkgsysconf_DATA += \
5003 src/timesync/timesyncd.conf
5004
5005 endif
5006
5007 gperf_gperf_sources += \
5008 src/timesync/timesyncd-gperf.gperf
5009
5010 EXTRA_DIST += \
5011 units/systemd-timesyncd.service.in \
5012 src/timesync/timesyncd.conf.in
5013
5014 # ------------------------------------------------------------------------------
5015 test_nss_SOURCES = \
5016 src/test/test-nss.c
5017
5018 test_nss_LDADD = \
5019 libsystemd-internal.la \
5020 libbasic.la \
5021 -ldl
5022
5023 manual_tests += \
5024 test-nss
5025
5026 # ------------------------------------------------------------------------------
5027 libnss_systemd_la_SOURCES = \
5028 src/nss-systemd/nss-systemd.sym \
5029 src/nss-systemd/nss-systemd.c
5030
5031 libnss_systemd_la_LDFLAGS = \
5032 $(AM_LDFLAGS) \
5033 -module \
5034 -export-dynamic \
5035 -avoid-version \
5036 -shared \
5037 -shrext .so.2 \
5038 -Wl,--version-script=$(top_srcdir)/src/nss-systemd/nss-systemd.sym
5039
5040 libnss_systemd_la_LIBADD = \
5041 libsystemd-internal.la \
5042 libbasic.la
5043
5044 rootlib_LTLIBRARIES += \
5045 libnss_systemd.la
5046
5047 # ------------------------------------------------------------------------------
5048 if HAVE_MYHOSTNAME
5049 libnss_myhostname_la_SOURCES = \
5050 src/nss-myhostname/nss-myhostname.sym \
5051 src/nss-myhostname/nss-myhostname.c
5052
5053 libnss_myhostname_la_LDFLAGS = \
5054 $(AM_LDFLAGS) \
5055 -module \
5056 -export-dynamic \
5057 -avoid-version \
5058 -shared \
5059 -shrext .so.2 \
5060 -Wl,--version-script=$(top_srcdir)/src/nss-myhostname/nss-myhostname.sym
5061
5062 libnss_myhostname_la_LIBADD = \
5063 libsystemd-internal.la \
5064 libbasic.la
5065
5066 rootlib_LTLIBRARIES += \
5067 libnss_myhostname.la
5068 endif
5069
5070 # ------------------------------------------------------------------------------
5071 if ENABLE_MACHINED
5072 systemd_machined_SOURCES = \
5073 src/machine/machined.c \
5074 src/machine/machined.h
5075
5076 systemd_machined_LDADD = \
5077 libmachine-core.la
5078
5079 rootlibexec_PROGRAMS += \
5080 systemd-machined
5081
5082 libmachine_core_la_SOURCES = \
5083 src/machine/machine.c \
5084 src/machine/machine.h \
5085 src/machine/machined-dbus.c \
5086 src/machine/machine-dbus.c \
5087 src/machine/machine-dbus.h \
5088 src/machine/image-dbus.c \
5089 src/machine/image-dbus.h \
5090 src/machine/operation.c \
5091 src/machine/operation.h
5092
5093 libmachine_core_la_LIBADD = \
5094 libsystemd-shared.la
5095
5096 noinst_LTLIBRARIES += \
5097 libmachine-core.la
5098
5099 machinectl_SOURCES = \
5100 src/machine/machinectl.c
5101
5102 machinectl_LDADD = \
5103 libsystemd-shared.la
5104
5105 rootbin_PROGRAMS += \
5106 machinectl
5107
5108 test_machine_tables_SOURCES = \
5109 src/machine/test-machine-tables.c
5110
5111 test_machine_tables_LDADD = \
5112 libmachine-core.la
5113
5114 tests += \
5115 test-machine-tables
5116
5117 nodist_systemunit_DATA += \
5118 units/systemd-machined.service
5119
5120 dist_systemunit_DATA += \
5121 units/machine.slice
5122
5123 dist_systemunit_DATA_busnames += \
5124 units/org.freedesktop.machine1.busname
5125
5126 dist_dbussystemservice_DATA += \
5127 src/machine/org.freedesktop.machine1.service
5128
5129 dist_dbuspolicy_DATA += \
5130 src/machine/org.freedesktop.machine1.conf
5131
5132 polkitpolicy_files += \
5133 src/machine/org.freedesktop.machine1.policy
5134
5135 dist_bashcompletion_data += \
5136 shell-completion/bash/machinectl
5137
5138 dist_zshcompletion_data += \
5139 shell-completion/zsh/_machinectl \
5140 shell-completion/zsh/_sd_machines
5141
5142 SYSTEM_UNIT_ALIASES += \
5143 systemd-machined.service dbus-org.freedesktop.machine1.service
5144
5145 BUSNAMES_TARGET_WANTS += \
5146 org.freedesktop.machine1.busname
5147
5148 libnss_mymachines_la_SOURCES = \
5149 src/nss-mymachines/nss-mymachines.sym \
5150 src/nss-mymachines/nss-mymachines.c
5151
5152 libnss_mymachines_la_LDFLAGS = \
5153 $(AM_LDFLAGS) \
5154 -module \
5155 -export-dynamic \
5156 -avoid-version \
5157 -shared \
5158 -shrext .so.2 \
5159 -Wl,--version-script=$(top_srcdir)/src/nss-mymachines/nss-mymachines.sym
5160
5161 libnss_mymachines_la_LIBADD = \
5162 libsystemd-internal.la \
5163 libbasic.la
5164
5165 rootlib_LTLIBRARIES += \
5166 libnss_mymachines.la
5167
5168 endif
5169
5170 polkitpolicy_in_files += \
5171 src/machine/org.freedesktop.machine1.policy.in
5172
5173 EXTRA_DIST += \
5174 units/systemd-machined.service.in
5175
5176 # ------------------------------------------------------------------------------
5177 if ENABLE_IMPORTD
5178
5179 if HAVE_LIBCURL
5180 if HAVE_XZ
5181 if HAVE_ZLIB
5182 if HAVE_BZIP2
5183 if HAVE_GCRYPT
5184
5185 rootlibexec_PROGRAMS += \
5186 systemd-importd \
5187 systemd-pull \
5188 systemd-import \
5189 systemd-export
5190
5191 systemd_importd_SOURCES = \
5192 src/import/importd.c
5193
5194 systemd_importd_CFLAGS = \
5195 $(AM_CFLAGS) \
5196 -D SYSTEMD_PULL_PATH=\"$(rootlibexecdir)/systemd-pull\" \
5197 -D SYSTEMD_IMPORT_PATH=\"$(rootlibexecdir)/systemd-import\" \
5198 -D SYSTEMD_EXPORT_PATH=\"$(rootlibexecdir)/systemd-export\"
5199
5200 systemd_importd_LDADD = \
5201 libsystemd-shared.la
5202
5203 systemd_pull_SOURCES = \
5204 src/import/pull.c \
5205 src/import/pull-raw.c \
5206 src/import/pull-raw.h \
5207 src/import/pull-tar.c \
5208 src/import/pull-tar.h \
5209 src/import/pull-job.c \
5210 src/import/pull-job.h \
5211 src/import/pull-common.c \
5212 src/import/pull-common.h \
5213 src/import/import-common.c \
5214 src/import/import-common.h \
5215 src/import/import-compress.c \
5216 src/import/import-compress.h \
5217 src/import/curl-util.c \
5218 src/import/curl-util.h \
5219 src/import/qcow2-util.c \
5220 src/import/qcow2-util.h
5221
5222 systemd_pull_CFLAGS = \
5223 $(AM_CFLAGS) \
5224 $(LIBCURL_CFLAGS) \
5225 $(XZ_CFLAGS) \
5226 $(ZLIB_CFLAGS) \
5227 $(GCRYPT_CFLAGS) \
5228 -D VENDOR_KEYRING_PATH=\"$(rootlibexecdir)/import-pubring.gpg\" \
5229 -D USER_KEYRING_PATH=\"$(pkgsysconfdir)/import-pubring.gpg\"
5230
5231 systemd_pull_LDADD = \
5232 libsystemd-shared.la \
5233 $(LIBCURL_LIBS) \
5234 $(XZ_LIBS) \
5235 $(ZLIB_LIBS) \
5236 -lbz2 \
5237 $(GCRYPT_LIBS)
5238
5239 systemd_import_SOURCES = \
5240 src/import/import.c \
5241 src/import/import-raw.c \
5242 src/import/import-raw.h \
5243 src/import/import-tar.c \
5244 src/import/import-tar.h \
5245 src/import/import-common.c \
5246 src/import/import-common.h \
5247 src/import/import-compress.c \
5248 src/import/import-compress.h \
5249 src/import/qcow2-util.c \
5250 src/import/qcow2-util.h
5251
5252 systemd_import_CFLAGS = \
5253 $(AM_CFLAGS) \
5254 $(XZ_CFLAGS) \
5255 $(ZLIB_CFLAGS)
5256
5257 systemd_import_LDADD = \
5258 libsystemd-shared.la \
5259 $(XZ_LIBS) \
5260 $(ZLIB_LIBS) \
5261 -lbz2
5262
5263 systemd_export_SOURCES = \
5264 src/import/export.c \
5265 src/import/export-tar.c \
5266 src/import/export-tar.h \
5267 src/import/export-raw.c \
5268 src/import/export-raw.h \
5269 src/import/import-common.c \
5270 src/import/import-common.h \
5271 src/import/import-compress.c \
5272 src/import/import-compress.h
5273
5274 systemd_export_CFLAGS = \
5275 $(AM_CFLAGS) \
5276 $(XZ_CFLAGS) \
5277 $(ZLIB_CFLAGS)
5278
5279 systemd_export_LDADD = \
5280 libsystemd-shared.la \
5281 $(XZ_LIBS) \
5282 $(ZLIB_LIBS) \
5283 -lbz2
5284
5285 dist_rootlibexec_DATA += \
5286 src/import/import-pubring.gpg
5287
5288 nodist_systemunit_DATA += \
5289 units/systemd-importd.service
5290
5291 dist_systemunit_DATA_busnames += \
5292 units/org.freedesktop.import1.busname
5293
5294 BUSNAMES_TARGET_WANTS += \
5295 org.freedesktop.import1.busname
5296
5297 SYSTEM_UNIT_ALIASES += \
5298 systemd-importd.service dbus-org.freedesktop.import1.service
5299
5300 dist_dbussystemservice_DATA += \
5301 src/import/org.freedesktop.import1.service
5302
5303 dist_dbuspolicy_DATA += \
5304 src/import/org.freedesktop.import1.conf
5305
5306 polkitpolicy_files += \
5307 src/import/org.freedesktop.import1.policy
5308
5309 manual_tests += \
5310 test-qcow2
5311
5312 test_qcow2_SOURCES = \
5313 src/import/test-qcow2.c \
5314 src/import/qcow2-util.c \
5315 src/import/qcow2-util.h
5316
5317 test_qcow2_CFLAGS = \
5318 $(AM_CFLAGS) \
5319 $(ZLIB_CFLAGS)
5320
5321 test_qcow2_LDADD = \
5322 libsystemd-shared.la \
5323 $(ZLIB_LIBS)
5324
5325 endif
5326 endif
5327 endif
5328 endif
5329 endif
5330
5331 endif
5332
5333 polkitpolicy_in_files += \
5334 src/import/org.freedesktop.import1.policy.in
5335
5336 EXTRA_DIST += \
5337 units/systemd-importd.service.in
5338
5339
5340 # ------------------------------------------------------------------------------
5341 if ENABLE_RESOLVED
5342
5343 basic_dns_sources = \
5344 src/resolve/resolved-dns-dnssec.c \
5345 src/resolve/resolved-dns-dnssec.h \
5346 src/resolve/resolved-dns-packet.c \
5347 src/resolve/resolved-dns-packet.h \
5348 src/resolve/resolved-dns-rr.c \
5349 src/resolve/resolved-dns-rr.h \
5350 src/resolve/resolved-dns-answer.c \
5351 src/resolve/resolved-dns-answer.h \
5352 src/resolve/resolved-dns-question.c \
5353 src/resolve/resolved-dns-question.h \
5354 src/resolve/dns-type.c \
5355 src/resolve/dns-type.h
5356
5357 systemd_resolved_SOURCES = \
5358 src/resolve/resolved.c \
5359 src/resolve/resolved-manager.c \
5360 src/resolve/resolved-manager.h \
5361 src/resolve/resolved-conf.c \
5362 src/resolve/resolved-conf.h \
5363 src/resolve/resolved-resolv-conf.c \
5364 src/resolve/resolved-resolv-conf.h \
5365 src/resolve/resolved-bus.c \
5366 src/resolve/resolved-bus.h \
5367 src/resolve/resolved-link.h \
5368 src/resolve/resolved-link.c \
5369 src/resolve/resolved-link-bus.c \
5370 src/resolve/resolved-link-bus.h \
5371 src/resolve/resolved-llmnr.h \
5372 src/resolve/resolved-llmnr.c \
5373 src/resolve/resolved-mdns.h \
5374 src/resolve/resolved-mdns.c \
5375 src/resolve/resolved-def.h \
5376 $(basic_dns_sources) \
5377 src/resolve/resolved-dns-query.h \
5378 src/resolve/resolved-dns-query.c \
5379 src/resolve/resolved-dns-synthesize.h \
5380 src/resolve/resolved-dns-synthesize.c \
5381 src/resolve/resolved-dns-transaction.h \
5382 src/resolve/resolved-dns-transaction.c \
5383 src/resolve/resolved-dns-scope.h \
5384 src/resolve/resolved-dns-scope.c \
5385 src/resolve/resolved-dns-server.h \
5386 src/resolve/resolved-dns-server.c \
5387 src/resolve/resolved-dns-search-domain.h \
5388 src/resolve/resolved-dns-search-domain.c \
5389 src/resolve/resolved-dns-cache.h \
5390 src/resolve/resolved-dns-cache.c \
5391 src/resolve/resolved-dns-zone.h \
5392 src/resolve/resolved-dns-zone.c \
5393 src/resolve/resolved-dns-stream.h \
5394 src/resolve/resolved-dns-stream.c \
5395 src/resolve/resolved-dns-trust-anchor.h \
5396 src/resolve/resolved-dns-trust-anchor.c \
5397 src/resolve/resolved-dns-stub.h \
5398 src/resolve/resolved-dns-stub.c \
5399 src/resolve/resolved-etc-hosts.h \
5400 src/resolve/resolved-etc-hosts.c \
5401 src/shared/gcrypt-util.c \
5402 src/shared/gcrypt-util.h
5403
5404 nodist_systemd_resolved_SOURCES = \
5405 src/resolve/dns_type-from-name.h \
5406 src/resolve/dns_type-to-name.h \
5407 src/resolve/resolved-gperf.c
5408
5409 systemd_resolved_CFLAGS = \
5410 $(AM_CFLAGS) \
5411 $(GCRYPT_CFLAGS)
5412
5413 systemd_resolved_LDADD = \
5414 libsystemd-network.la \
5415 libsystemd-shared.la \
5416 $(GCRYPT_LIBS) \
5417 -lm
5418
5419 rootlibexec_PROGRAMS += \
5420 systemd-resolved
5421
5422 nodist_systemunit_DATA += \
5423 units/systemd-resolved.service
5424
5425 dist_systemunit_DATA_busnames += \
5426 units/org.freedesktop.resolve1.busname
5427
5428 dist_dbuspolicy_DATA += \
5429 src/resolve/org.freedesktop.resolve1.conf
5430
5431 dist_dbussystemservice_DATA += \
5432 src/resolve/org.freedesktop.resolve1.service
5433
5434 SYSTEM_UNIT_ALIASES += \
5435 systemd-resolved.service dbus-org.freedesktop.resolve1.service
5436
5437 BUSNAMES_TARGET_WANTS += \
5438 org.freedesktop.resolve1.busname
5439
5440 GENERAL_ALIASES += \
5441 $(systemunitdir)/systemd-resolved.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-resolved.service
5442
5443 nodist_pkgsysconf_DATA += \
5444 src/resolve/resolved.conf
5445
5446 libnss_resolve_la_SOURCES = \
5447 src/nss-resolve/nss-resolve.sym \
5448 src/nss-resolve/nss-resolve.c
5449
5450 libnss_resolve_la_LDFLAGS = \
5451 $(AM_LDFLAGS) \
5452 -module \
5453 -export-dynamic \
5454 -avoid-version \
5455 -shared \
5456 -shrext .so.2 \
5457 -Wl,--version-script=$(top_srcdir)/src/nss-resolve/nss-resolve.sym
5458
5459 libnss_resolve_la_LIBADD = \
5460 libsystemd-internal.la \
5461 libbasic.la \
5462 -ldl
5463
5464 rootlib_LTLIBRARIES += \
5465 libnss_resolve.la
5466
5467 systemd_resolve_SOURCES = \
5468 src/resolve/resolve-tool.c \
5469 $(basic_dns_sources) \
5470 src/shared/gcrypt-util.c \
5471 src/shared/gcrypt-util.h
5472
5473 nodist_systemd_resolve_SOURCES = \
5474 src/resolve/dns_type-from-name.h \
5475 src/resolve/dns_type-to-name.h
5476
5477 systemd_resolve_CFLAGS = \
5478 $(AM_CFLAGS) \
5479 $(GCRYPT_CFLAGS)
5480
5481 systemd_resolve_LDADD = \
5482 libsystemd-shared.la \
5483 $(GCRYPT_LIBS) \
5484 -lm
5485
5486 bin_PROGRAMS += \
5487 systemd-resolve
5488
5489 dist_bashcompletion_data += \
5490 shell-completion/bash/systemd-resolve
5491
5492 dist_zshcompletion_data += \
5493 shell-completion/zsh/_systemd-resolve
5494
5495 tests += \
5496 test-dns-packet \
5497 test-resolve-tables \
5498 test-dnssec
5499
5500 manual_tests += \
5501 test-dnssec-complex
5502
5503 test_resolve_tables_SOURCES = \
5504 src/resolve/test-resolve-tables.c \
5505 src/resolve/dns_type-from-name.h \
5506 src/resolve/dns_type-to-name.h \
5507 $(basic_dns_sources) \
5508 src/shared/test-tables.h
5509
5510 test_resolve_tables_CFLAGS = \
5511 $(AM_CFLAGS) \
5512 $(GCRYPT_CFLAGS)
5513
5514 test_resolve_tables_LDADD = \
5515 libsystemd-shared.la \
5516 $(GCRYPT_LIBS) \
5517 -lm
5518
5519 test_dns_packet_SOURCES = \
5520 src/resolve/test-dns-packet.c \
5521 $(basic_dns_sources)
5522
5523 test_dns_packet_CPPFLAGS = \
5524 $(AM_CPPFLAGS) \
5525 -DRESOLVE_TEST_DIR=\"$(abs_top_srcdir)/src/resolve/test-data\"
5526
5527 test_dns_packet_CFLAGS = \
5528 $(AM_CFLAGS) \
5529 $(GCRYPT_CFLAGS)
5530
5531 test_dns_packet_LDADD = \
5532 libsystemd-shared.la \
5533 $(GCRYPT_LIBS) \
5534 -lm
5535
5536 EXTRA_DIST += \
5537 src/resolve/test-data/_openpgpkey.fedoraproject.org.pkts \
5538 src/resolve/test-data/fedoraproject.org.pkts \
5539 src/resolve/test-data/gandi.net.pkts \
5540 src/resolve/test-data/google.com.pkts \
5541 src/resolve/test-data/root.pkts \
5542 src/resolve/test-data/sw1a1aa-sw1a2aa-sw1a2ab-sw1a2ac.find.me.uk.pkts \
5543 src/resolve/test-data/teamits.com.pkts \
5544 src/resolve/test-data/zbyszek@fedoraproject.org.pkts \
5545 src/resolve/test-data/_443._tcp.fedoraproject.org.pkts \
5546 src/resolve/test-data/kyhwana.org.pkts \
5547 src/resolve/test-data/fake-caa.pkts
5548
5549 test_dnssec_SOURCES = \
5550 src/resolve/test-dnssec.c \
5551 $(basic_dns_sources)
5552
5553 test_dnssec_CFLAGS = \
5554 $(AM_CFLAGS) \
5555 $(GCRYPT_CFLAGS)
5556
5557 test_dnssec_LDADD = \
5558 libsystemd-shared.la \
5559 $(GCRYPT_LIBS) \
5560 -lm
5561
5562 test_dnssec_complex_SOURCES = \
5563 src/resolve/test-dnssec-complex.c \
5564 src/resolve/dns-type.c \
5565 src/resolve/dns-type.h
5566
5567 test_dnssec_complex_LDADD = \
5568 libsystemd-shared.la
5569
5570 endif
5571
5572 gperf_txt_sources += \
5573 src/resolve/dns_type-list.txt
5574
5575 gperf_gperf_sources += \
5576 src/resolve/resolved-gperf.gperf
5577
5578 EXTRA_DIST += \
5579 units/systemd-resolved.service.m4.in \
5580 src/resolve/resolved.conf.in
5581
5582 dist_rootlibexec_DATA += \
5583 src/resolve/resolv.conf
5584
5585 # ------------------------------------------------------------------------------
5586 if ENABLE_NETWORKD
5587 rootlibexec_PROGRAMS += \
5588 systemd-networkd
5589
5590 systemd_networkd_SOURCES = \
5591 src/network/networkd.c
5592
5593 systemd_networkd_LDADD = \
5594 libnetworkd-core.la
5595
5596 if HAVE_LIBIPTC
5597 systemd_networkd_LDADD += \
5598 libfirewall.la
5599 endif
5600
5601 noinst_LTLIBRARIES += \
5602 libnetworkd-core.la
5603
5604 libnetworkd_core_la_CFLAGS = \
5605 $(AM_CFLAGS)
5606
5607 libnetworkd_core_la_SOURCES = \
5608 src/libsystemd-network/network-internal.h \
5609 src/network/networkd.h \
5610 src/network/networkd-conf.h \
5611 src/network/networkd-conf.c \
5612 src/network/networkd-link.h \
5613 src/network/networkd-link.c \
5614 src/network/networkd-netdev.h \
5615 src/network/networkd-netdev.c \
5616 src/network/networkd-netdev-vrf.h \
5617 src/network/networkd-netdev-vrf.c \
5618 src/network/networkd-netdev-tunnel.h \
5619 src/network/networkd-netdev-tunnel.c \
5620 src/network/networkd-netdev-veth.h \
5621 src/network/networkd-netdev-veth.c \
5622 src/network/networkd-netdev-vxlan.h \
5623 src/network/networkd-netdev-vxlan.c \
5624 src/network/networkd-netdev-vlan.h \
5625 src/network/networkd-netdev-vlan.c \
5626 src/network/networkd-netdev-macvlan.h \
5627 src/network/networkd-netdev-macvlan.c \
5628 src/network/networkd-netdev-ipvlan.h \
5629 src/network/networkd-netdev-ipvlan.c \
5630 src/network/networkd-netdev-dummy.h \
5631 src/network/networkd-netdev-dummy.c \
5632 src/network/networkd-netdev-tuntap.h \
5633 src/network/networkd-netdev-tuntap.c \
5634 src/network/networkd-netdev-bond.h \
5635 src/network/networkd-netdev-bond.c \
5636 src/network/networkd-netdev-bridge.h \
5637 src/network/networkd-netdev-bridge.c \
5638 src/network/networkd-netdev-vcan.h \
5639 src/network/networkd-netdev-vcan.c \
5640 src/network/networkd-link-bus.c \
5641 src/network/networkd-ipv4ll.c \
5642 src/network/networkd-dhcp4.c \
5643 src/network/networkd-dhcp6.c \
5644 src/network/networkd-ndisc.h \
5645 src/network/networkd-ndisc.c \
5646 src/network/networkd-network.h \
5647 src/network/networkd-network.c \
5648 src/network/networkd-network-bus.c \
5649 src/network/networkd-address.h \
5650 src/network/networkd-address.c \
5651 src/network/networkd-route.h \
5652 src/network/networkd-route.c \
5653 src/network/networkd-manager.c \
5654 src/network/networkd-manager-bus.c \
5655 src/network/networkd-fdb.h \
5656 src/network/networkd-fdb.c \
5657 src/network/networkd-brvlan.h \
5658 src/network/networkd-brvlan.c \
5659 src/network/networkd-address-pool.h \
5660 src/network/networkd-address-pool.c \
5661 src/network/networkd-util.h \
5662 src/network/networkd-util.c \
5663 src/network/networkd-lldp-tx.h \
5664 src/network/networkd-lldp-tx.c
5665
5666 nodist_libnetworkd_core_la_SOURCES = \
5667 src/network/networkd-gperf.c \
5668 src/network/networkd-network-gperf.c \
5669 src/network/networkd-netdev-gperf.c
5670
5671 libnetworkd_core_la_LIBADD = \
5672 libsystemd-network.la \
5673 libsystemd-shared.la
5674
5675 rootlibexec_PROGRAMS += \
5676 systemd-networkd-wait-online
5677
5678 systemd_networkd_wait_online_CFLAGS = \
5679 $(AM_CFLAGS)
5680
5681 systemd_networkd_wait_online_SOURCES = \
5682 src/libsystemd-network/network-internal.h \
5683 src/network/networkd-wait-online.h \
5684 src/network/networkd-wait-online-link.h \
5685 src/network/networkd-wait-online.c \
5686 src/network/networkd-wait-online-manager.c \
5687 src/network/networkd-wait-online-link.c
5688
5689 systemd_networkd_wait_online_LDADD = \
5690 libsystemd-network.la \
5691 libsystemd-shared.la
5692
5693 rootbin_PROGRAMS += \
5694 networkctl
5695
5696 networkctl_SOURCES = \
5697 src/network/networkctl.c
5698
5699 networkctl_LDADD = \
5700 libsystemd-shared.la \
5701 libsystemd-network.la
5702
5703 dist_bashcompletion_data += \
5704 shell-completion/bash/networkctl
5705
5706 test_networkd_conf_SOURCES = \
5707 src/network/test-networkd-conf.c
5708
5709 test_networkd_conf_LDADD = \
5710 libnetworkd-core.la
5711
5712 test_network_SOURCES = \
5713 src/network/test-network.c
5714
5715 test_network_LDADD = \
5716 libnetworkd-core.la
5717
5718 if HAVE_LIBIPTC
5719 test_network_LDADD += \
5720 libfirewall.la
5721 endif
5722
5723 test_network_tables_SOURCES = \
5724 src/network/test-network-tables.c \
5725 src/shared/test-tables.h
5726
5727 test_network_tables_LDADD = \
5728 libnetworkd-core.la \
5729 libudev-core.la
5730
5731 if HAVE_LIBIPTC
5732 test_network_tables_LDADD += \
5733 libfirewall.la
5734 endif
5735
5736 tests += \
5737 test-networkd-conf \
5738 test-network \
5739 test-network-tables
5740
5741 dist_systemunit_DATA += \
5742 units/systemd-networkd.socket
5743
5744 nodist_systemunit_DATA += \
5745 units/systemd-networkd.service \
5746 units/systemd-networkd-wait-online.service
5747
5748 dist_systemunit_DATA_busnames += \
5749 units/org.freedesktop.network1.busname
5750
5751 dist_dbussystemservice_DATA += \
5752 src/network/org.freedesktop.network1.service
5753
5754 dist_dbuspolicy_DATA += \
5755 src/network/org.freedesktop.network1.conf
5756
5757 GENERAL_ALIASES += \
5758 $(systemunitdir)/systemd-networkd.socket $(pkgsysconfdir)/system/sockets.target.wants/systemd-networkd.socket \
5759 $(systemunitdir)/systemd-networkd.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-networkd.service \
5760 $(systemunitdir)/systemd-networkd-wait-online.service $(pkgsysconfdir)/system/network-online.target.wants/systemd-networkd-wait-online.service
5761
5762 SYSTEM_UNIT_ALIASES += \
5763 systemd-networkd.service dbus-org.freedesktop.network1.service
5764
5765 BUSNAMES_TARGET_WANTS += \
5766 org.freedesktop.network1.busname
5767
5768 endif
5769
5770 gperf_gperf_sources += \
5771 src/network/networkd-gperf.gperf \
5772 src/network/networkd-network-gperf.gperf \
5773 src/network/networkd-netdev-gperf.gperf
5774
5775 EXTRA_DIST += \
5776 units/systemd-networkd.service.m4.in \
5777 units/systemd-networkd-wait-online.service.in \
5778 test/networkd-test.py
5779
5780 # ------------------------------------------------------------------------------
5781 if ENABLE_LOGIND
5782 systemd_logind_SOURCES = \
5783 src/login/logind.c \
5784 src/login/logind.h
5785
5786 nodist_systemd_logind_SOURCES = \
5787 src/login/logind-gperf.c
5788
5789 systemd_logind_LDADD = \
5790 liblogind-core.la
5791
5792 liblogind_core_la_SOURCES = \
5793 src/login/logind-core.c \
5794 src/login/logind-device.c \
5795 src/login/logind-device.h \
5796 src/login/logind-button.c \
5797 src/login/logind-button.h \
5798 src/login/logind-action.c \
5799 src/login/logind-action.h \
5800 src/login/logind-seat.c \
5801 src/login/logind-seat.h \
5802 src/login/logind-session.c \
5803 src/login/logind-session.h \
5804 src/login/logind-session-device.c \
5805 src/login/logind-session-device.h \
5806 src/login/logind-user.c \
5807 src/login/logind-user.h \
5808 src/login/logind-inhibit.c \
5809 src/login/logind-inhibit.h \
5810 src/login/logind-dbus.c \
5811 src/login/logind-session-dbus.c \
5812 src/login/logind-seat-dbus.c \
5813 src/login/logind-user-dbus.c \
5814 src/login/logind-utmp.c \
5815 src/login/logind-acl.h
5816
5817 liblogind_core_la_LIBADD = \
5818 libsystemd-shared.la
5819
5820 if HAVE_ACL
5821 liblogind_core_la_SOURCES += \
5822 src/login/logind-acl.c
5823 endif
5824
5825 noinst_LTLIBRARIES += \
5826 liblogind-core.la
5827
5828 rootlibexec_PROGRAMS += \
5829 systemd-logind
5830
5831 loginctl_SOURCES = \
5832 src/login/loginctl.c \
5833 src/login/sysfs-show.h \
5834 src/login/sysfs-show.c
5835
5836 loginctl_LDADD = \
5837 libsystemd-shared.la
5838
5839 rootbin_PROGRAMS += \
5840 loginctl
5841
5842 dist_bashcompletion_data += \
5843 shell-completion/bash/loginctl
5844
5845 dist_zshcompletion_data += \
5846 shell-completion/zsh/_loginctl \
5847 shell-completion/zsh/_systemd-inhibit
5848
5849 systemd_inhibit_SOURCES = \
5850 src/login/inhibit.c
5851
5852 systemd_inhibit_LDADD = \
5853 libsystemd-shared.la
5854
5855 rootbin_PROGRAMS += \
5856 systemd-inhibit
5857
5858 test_login_SOURCES = \
5859 src/libsystemd/sd-login/test-login.c
5860
5861 test_login_LDADD = \
5862 libsystemd-shared.la
5863
5864 test_login_shared_SOURCES = \
5865 src/login/test-login-shared.c
5866
5867 test_login_shared_LDADD = \
5868 libsystemd-shared.la
5869
5870 test_inhibit_SOURCES = \
5871 src/login/test-inhibit.c
5872
5873 test_inhibit_LDADD = \
5874 libsystemd-shared.la
5875
5876 test_login_tables_SOURCES = \
5877 src/login/test-login-tables.c
5878
5879 test_login_tables_LDADD = \
5880 liblogind-core.la
5881
5882 manual_tests += \
5883 test-login \
5884 test-inhibit
5885
5886 tests += \
5887 test-login-tables \
5888 test-login-shared
5889
5890 if HAVE_PAM
5891 pam_systemd_la_SOURCES = \
5892 src/login/pam_systemd.sym \
5893 src/login/pam_systemd.c
5894
5895 pam_systemd_la_CFLAGS = \
5896 $(AM_CFLAGS) \
5897 $(PAM_CFLAGS)
5898
5899 pam_systemd_la_LDFLAGS = \
5900 $(AM_LDFLAGS) \
5901 -module \
5902 -export-dynamic \
5903 -avoid-version \
5904 -shared \
5905 -Wl,--version-script=$(top_srcdir)/src/login/pam_systemd.sym
5906
5907 pam_systemd_la_LIBADD = \
5908 libshared.la \
5909 $(PAM_LIBS)
5910
5911 pamlib_LTLIBRARIES = \
5912 pam_systemd.la
5913
5914 if ENABLE_PAM_CONFIG
5915 dist_pamconf_DATA = \
5916 src/login/systemd-user
5917 endif
5918
5919 EXTRA_DIST += \
5920 src/login/systemd-user.m4
5921 endif
5922
5923 nodist_systemunit_DATA += \
5924 units/systemd-logind.service
5925
5926 dist_systemunit_DATA += \
5927 units/user.slice
5928
5929 dist_systemunit_DATA_busnames += \
5930 units/org.freedesktop.login1.busname
5931
5932 dist_dbussystemservice_DATA += \
5933 src/login/org.freedesktop.login1.service
5934
5935 dist_dbuspolicy_DATA += \
5936 src/login/org.freedesktop.login1.conf
5937
5938 nodist_pkgsysconf_DATA += \
5939 src/login/logind.conf
5940
5941 polkitpolicy_files += \
5942 src/login/org.freedesktop.login1.policy
5943
5944 INSTALL_DIRS += \
5945 $(systemdstatedir)
5946
5947 MULTI_USER_TARGET_WANTS += \
5948 systemd-logind.service
5949
5950 SYSTEM_UNIT_ALIASES += \
5951 systemd-logind.service dbus-org.freedesktop.login1.service
5952
5953 BUSNAMES_TARGET_WANTS += \
5954 org.freedesktop.login1.busname
5955
5956 dist_udevrules_DATA += \
5957 src/login/70-uaccess.rules \
5958 src/login/70-power-switch.rules
5959
5960 nodist_udevrules_DATA += \
5961 src/login/71-seat.rules \
5962 src/login/73-seat-late.rules
5963
5964 endif
5965
5966 polkitpolicy_in_files += \
5967 src/login/org.freedesktop.login1.policy.in
5968
5969 gperf_gperf_sources += \
5970 src/login/logind-gperf.gperf
5971
5972 EXTRA_DIST += \
5973 src/login/71-seat.rules.in \
5974 src/login/73-seat-late.rules.in \
5975 units/systemd-logind.service.in \
5976 src/login/logind.conf.in
5977
5978 # ------------------------------------------------------------------------------
5979 if HAVE_PAM
5980
5981 systemd_user_sessions_SOURCES = \
5982 src/user-sessions/user-sessions.c
5983
5984 systemd_user_sessions_LDADD = \
5985 libsystemd-shared.la
5986
5987 rootlibexec_PROGRAMS += \
5988 systemd-user-sessions
5989
5990 nodist_systemunit_DATA += \
5991 units/systemd-user-sessions.service
5992
5993 MULTI_USER_TARGET_WANTS += \
5994 systemd-user-sessions.service
5995
5996 endif
5997
5998 EXTRA_DIST += \
5999 units/systemd-user-sessions.service.in
6000
6001 # ------------------------------------------------------------------------------
6002 EXTRA_DIST += \
6003 test/Makefile \
6004 test/README.testsuite \
6005 test/TEST-01-BASIC \
6006 test/TEST-01-BASIC/Makefile \
6007 test/TEST-01-BASIC/test.sh \
6008 test/TEST-02-CRYPTSETUP \
6009 test/TEST-02-CRYPTSETUP/Makefile \
6010 test/TEST-02-CRYPTSETUP/test.sh \
6011 test/TEST-03-JOBS \
6012 test/TEST-03-JOBS/Makefile \
6013 test/TEST-03-JOBS/test-jobs.sh \
6014 test/TEST-03-JOBS/test.sh \
6015 test/TEST-04-JOURNAL/Makefile \
6016 test/TEST-04-JOURNAL/test-journal.sh \
6017 test/TEST-04-JOURNAL/test.sh \
6018 test/TEST-05-RLIMITS/Makefile \
6019 test/TEST-05-RLIMITS/test-rlimits.sh \
6020 test/TEST-05-RLIMITS/test.sh \
6021 test/TEST-06-SELINUX/Makefile \
6022 test/TEST-06-SELINUX/test-selinux-checks.sh \
6023 test/TEST-06-SELINUX/test.sh \
6024 test/TEST-06-SELINUX/systemd_test.te \
6025 test/TEST-06-SELINUX/systemd_test.if \
6026 test/TEST-07-ISSUE-1981/Makefile \
6027 test/TEST-07-ISSUE-1981/test-segfault.sh \
6028 test/TEST-07-ISSUE-1981/test.sh \
6029 test/TEST-08-ISSUE-2730/Makefile \
6030 test/TEST-08-ISSUE-2730/test.sh \
6031 test/TEST-09-ISSUE-2691/Makefile \
6032 test/TEST-09-ISSUE-2691/test.sh \
6033 test/TEST-10-ISSUE-2467/Makefile \
6034 test/TEST-10-ISSUE-2467/test.sh \
6035 test/TEST-11-ISSUE-3166/Makefile \
6036 test/TEST-11-ISSUE-3166/test.sh \
6037 test/TEST-12-ISSUE-3171/Makefile \
6038 test/TEST-12-ISSUE-3171/test.sh \
6039 test/TEST-13-NSPAWN-SMOKE/Makefile \
6040 test/TEST-13-NSPAWN-SMOKE/create-busybox-container \
6041 test/TEST-13-NSPAWN-SMOKE/test.sh \
6042 test/test-functions
6043
6044 EXTRA_DIST += \
6045 test/loopy2.service \
6046 test/loopy3.service \
6047 test/loopy4.service \
6048 test/loopy.service \
6049 test/loopy.service.d \
6050 test/loopy.service.d/compat.conf
6051
6052 # ------------------------------------------------------------------------------
6053 substitutions = \
6054 '|rootlibexecdir=$(rootlibexecdir)|' \
6055 '|rootbindir=$(rootbindir)|' \
6056 '|bindir=$(bindir)|' \
6057 '|SYSTEMCTL=$(rootbindir)/systemctl|' \
6058 '|SYSTEMD_NOTIFY=$(rootbindir)/systemd-notify|' \
6059 '|pkgsysconfdir=$(pkgsysconfdir)|' \
6060 '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
6061 '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
6062 '|pkgdatadir=$(pkgdatadir)|' \
6063 '|systemunitdir=$(systemunitdir)|' \
6064 '|userunitdir=$(userunitdir)|' \
6065 '|systempresetdir=$(systempresetdir)|' \
6066 '|userpresetdir=$(userpresetdir)|' \
6067 '|udevhwdbdir=$(udevhwdbdir)|' \
6068 '|udevrulesdir=$(udevrulesdir)|' \
6069 '|catalogdir=$(catalogdir)|' \
6070 '|tmpfilesdir=$(tmpfilesdir)|' \
6071 '|sysusersdir=$(sysusersdir)|' \
6072 '|sysctldir=$(sysctldir)|' \
6073 '|systemgeneratordir=$(systemgeneratordir)|' \
6074 '|usergeneratordir=$(usergeneratordir)|' \
6075 '|CERTIFICATEROOT=$(CERTIFICATEROOT)|' \
6076 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
6077 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
6078 '|PACKAGE_URL=$(PACKAGE_URL)|' \
6079 '|RANDOM_SEED_DIR=$(localstatedir)/lib/systemd/|' \
6080 '|RANDOM_SEED=$(localstatedir)/lib/systemd/random-seed|' \
6081 '|prefix=$(prefix)|' \
6082 '|exec_prefix=$(exec_prefix)|' \
6083 '|libdir=$(libdir)|' \
6084 '|includedir=$(includedir)|' \
6085 '|VERSION=$(VERSION)|' \
6086 '|rootprefix=$(rootprefix)|' \
6087 '|udevlibexecdir=$(udevlibexecdir)|' \
6088 '|SUSHELL=$(SUSHELL)|' \
6089 '|SULOGIN=$(SULOGIN)|' \
6090 '|DEBUGTTY=$(DEBUGTTY)|' \
6091 '|KILL=$(KILL)|' \
6092 '|KMOD=$(KMOD)|' \
6093 '|MOUNT_PATH=$(MOUNT_PATH)|' \
6094 '|UMOUNT_PATH=$(UMOUNT_PATH)|' \
6095 '|MKDIR_P=$(MKDIR_P)|' \
6096 '|QUOTAON=$(QUOTAON)|' \
6097 '|QUOTACHECK=$(QUOTACHECK)|' \
6098 '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
6099 '|VARLOGDIR=$(varlogdir)|' \
6100 '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
6101 '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
6102 '|PYTHON=$(PYTHON)|' \
6103 '|NTP_SERVERS=$(NTP_SERVERS)|' \
6104 '|DNS_SERVERS=$(DNS_SERVERS)|' \
6105 '|DEFAULT_DNSSEC_MODE=$(DEFAULT_DNSSEC_MODE)|' \
6106 '|KILL_USER_PROCESSES=$(KILL_USER_PROCESSES)|' \
6107 '|systemuidmax=$(SYSTEM_UID_MAX)|' \
6108 '|systemgidmax=$(SYSTEM_GID_MAX)|' \
6109 '|TTY_GID=$(TTY_GID)|' \
6110 '|systemsleepdir=$(systemsleepdir)|' \
6111 '|systemshutdowndir=$(systemshutdowndir)|' \
6112 '|binfmtdir=$(binfmtdir)|' \
6113 '|modulesloaddir=$(modulesloaddir)|'
6114
6115 SED_PROCESS = \
6116 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
6117 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
6118 < $< > $@
6119
6120 units/%: units/%.in
6121 $(SED_PROCESS)
6122
6123 man/%: man/%.in
6124 $(SED_PROCESS)
6125
6126 sysctl.d/%: sysctl.d/%.in
6127 $(SED_PROCESS)
6128
6129 %.pc: %.pc.in
6130 $(SED_PROCESS)
6131
6132 %.conf: %.conf.in
6133 $(SED_PROCESS)
6134
6135 src/core/%.systemd: src/core/%.systemd.in
6136 $(SED_PROCESS)
6137
6138 src/%.policy.in: src/%.policy.in.in
6139 $(SED_PROCESS)
6140
6141 shell-completion/%: shell-completion/%.in
6142 $(SED_PROCESS)
6143
6144 %.rules: %.rules.in
6145 $(SED_PROCESS)
6146
6147 %.conf: %.conf.in
6148 $(SED_PROCESS)
6149
6150 %.sh: %.sh.in
6151 $(SED_PROCESS)
6152 $(AM_V_GEN)chmod +x $@
6153
6154 src/%.c: src/%.gperf
6155 $(AM_V_at)$(MKDIR_P) $(dir $@)
6156 $(AM_V_GPERF)$(GPERF) < $< > $@
6157
6158 src/%: src/%.m4 $(top_builddir)/config.status
6159 $(AM_V_at)$(MKDIR_P) $(dir $@)
6160 $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6161
6162 sysusers.d/%: sysusers.d/%.m4 $(top_builddir)/config.status
6163 $(AM_V_at)$(MKDIR_P) $(dir $@)
6164 $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6165
6166 tmpfiles.d/%: tmpfiles.d/%.m4 $(top_builddir)/config.status
6167 $(AM_V_at)$(MKDIR_P) $(dir $@)
6168 $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6169
6170
6171 units/%: units/%.m4 $(top_builddir)/config.status
6172 $(AM_V_at)$(MKDIR_P) $(dir $@)
6173 $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
6174
6175 units/user/%: units/user/%.m4 $(top_builddir)/config.status
6176 $(AM_V_at)$(MKDIR_P) $(dir $@)
6177 $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
6178
6179 if ENABLE_POLKIT
6180 nodist_polkitpolicy_DATA = \
6181 $(polkitpolicy_files) \
6182 $(polkitpolicy_in_in_files:.policy.in.in=.policy)
6183 endif
6184
6185 EXTRA_DIST += \
6186 $(polkitpolicy_in_files) \
6187 $(polkitpolicy_in_in_files)
6188
6189 # ------------------------------------------------------------------------------
6190 man/custom-entities.ent: configure.ac
6191 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
6192 $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
6193 printf '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">\n,$(substitutions))))') \
6194 > $@ # '
6195
6196 CLEANFILES += \
6197 man/custom-entities.ent
6198
6199 XSLTPROC_FLAGS = \
6200 --nonet \
6201 --xinclude \
6202 --stringparam man.output.quietly 1 \
6203 --stringparam funcsynopsis.style ansi \
6204 --stringparam man.authors.section.enabled 0 \
6205 --stringparam man.copyright.section.enabled 0 \
6206 --stringparam systemd.version $(VERSION) \
6207 --path '$(builddir)/man:$(srcdir)/man'
6208
6209 XSLT = $(if $(XSLTPROC), $(XSLTPROC), xsltproc)
6210 XSLTPROC_PROCESS_MAN = \
6211 $(AM_V_XSLT)$(XSLT) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
6212
6213 XSLTPROC_PROCESS_HTML = \
6214 $(AM_V_XSLT)$(XSLT) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
6215
6216 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
6217 $(XSLTPROC_PROCESS_MAN)
6218
6219 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
6220 $(XSLTPROC_PROCESS_MAN)
6221
6222 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
6223 $(XSLTPROC_PROCESS_MAN)
6224
6225 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
6226 $(XSLTPROC_PROCESS_MAN)
6227
6228 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
6229 $(XSLTPROC_PROCESS_MAN)
6230
6231 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
6232 $(XSLTPROC_PROCESS_HTML)
6233
6234 define html-alias
6235 $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
6236 endef
6237
6238 EXTRA_DIST += \
6239 man/custom-html.xsl \
6240 man/custom-man.xsl
6241
6242 # ------------------------------------------------------------------------------
6243 if HAVE_SYSV_COMPAT
6244 sysvinit_DATA = \
6245 docs/sysvinit/README
6246
6247 varlog_DATA = \
6248 docs/var-log/README
6249
6250 docs/sysvinit/README: docs/sysvinit/README.in
6251 $(SED_PROCESS)
6252
6253 docs/var-log/README: docs/var-log/README.in
6254 $(SED_PROCESS)
6255
6256 CLEANFILES += \
6257 docs/sysvinit/README \
6258 docs/var-log/README
6259 endif
6260
6261 EXTRA_DIST += \
6262 docs/sysvinit/README.in \
6263 docs/var-log/README.in
6264
6265 SOCKETS_TARGET_WANTS += \
6266 systemd-initctl.socket
6267
6268 if HAVE_UTMP
6269 if HAVE_SYSV_COMPAT
6270 MULTI_USER_TARGET_WANTS += \
6271 systemd-update-utmp-runlevel.service
6272 GRAPHICAL_TARGET_WANTS += \
6273 systemd-update-utmp-runlevel.service
6274 RESCUE_TARGET_WANTS += \
6275 systemd-update-utmp-runlevel.service
6276 endif
6277
6278 SYSINIT_TARGET_WANTS += \
6279 systemd-update-utmp.service
6280 endif
6281
6282 SYSINIT_TARGET_WANTS += \
6283 systemd-update-done.service
6284
6285 LOCAL_FS_TARGET_WANTS += \
6286 systemd-remount-fs.service \
6287 tmp.mount \
6288 var-lib-machines.mount
6289
6290 MULTI_USER_TARGET_WANTS += \
6291 getty.target \
6292 systemd-ask-password-wall.path
6293
6294 SYSINIT_TARGET_WANTS += \
6295 dev-hugepages.mount \
6296 dev-mqueue.mount \
6297 sys-kernel-config.mount \
6298 sys-kernel-debug.mount \
6299 sys-fs-fuse-connections.mount \
6300 systemd-sysctl.service \
6301 systemd-ask-password-console.path
6302
6303 if HAVE_SYSV_COMPAT
6304 SYSTEM_UNIT_ALIASES += \
6305 poweroff.target runlevel0.target \
6306 rescue.target runlevel1.target \
6307 multi-user.target runlevel2.target \
6308 multi-user.target runlevel3.target \
6309 multi-user.target runlevel4.target \
6310 graphical.target runlevel5.target \
6311 reboot.target runlevel6.target
6312 endif
6313
6314 SYSTEM_UNIT_ALIASES += \
6315 graphical.target default.target \
6316 reboot.target ctrl-alt-del.target \
6317 getty@.service autovt@.service
6318
6319 GENERAL_ALIASES += \
6320 $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \
6321 $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \
6322 $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \
6323 $(dbussystemservicedir)/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service
6324
6325 if HAVE_SYSV_COMPAT
6326 INSTALL_DIRS += \
6327 $(systemunitdir)/runlevel1.target.wants \
6328 $(systemunitdir)/runlevel2.target.wants \
6329 $(systemunitdir)/runlevel3.target.wants \
6330 $(systemunitdir)/runlevel4.target.wants \
6331 $(systemunitdir)/runlevel5.target.wants
6332 endif
6333
6334 INSTALL_DIRS += \
6335 $(prefix)/lib/modules-load.d \
6336 $(sysconfdir)/modules-load.d \
6337 $(prefix)/lib/systemd/network \
6338 $(sysconfdir)/systemd/network \
6339 $(prefix)/lib/sysctl.d \
6340 $(sysconfdir)/sysctl.d \
6341 $(prefix)/lib/kernel/install.d \
6342 $(sysconfdir)/kernel/install.d \
6343 $(systemshutdowndir) \
6344 $(systemsleepdir) \
6345 $(systemgeneratordir) \
6346 $(usergeneratordir) \
6347 \
6348 $(userunitdir) \
6349 $(pkgsysconfdir)/system \
6350 $(pkgsysconfdir)/system/multi-user.target.wants \
6351 $(pkgsysconfdir)/system/getty.target.wants \
6352 $(pkgsysconfdir)/user \
6353 $(dbussessionservicedir) \
6354 $(sysconfdir)/xdg/systemd
6355
6356 install-exec-hook: $(INSTALL_EXEC_HOOKS)
6357
6358 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
6359
6360 install-data-hook: $(INSTALL_DATA_HOOKS)
6361
6362 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
6363
6364 clean-local: $(CLEAN_LOCAL_HOOKS)
6365 rm -rf $(abs_srcdir)/install-tree
6366 rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
6367 $(abs_srcdir)/hwdb/iab.txt
6368
6369 DISTCHECK_CONFIGURE_FLAGS = \
6370 --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
6371 --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
6372 --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
6373 --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
6374 --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
6375 --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
6376 --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
6377 --with-rootprefix=$$dc_install_base \
6378 --enable-compat-libs
6379
6380 if HAVE_SYSV_COMPAT
6381 DISTCHECK_CONFIGURE_FLAGS += \
6382 --with-sysvinit-path=$$dc_install_base/$(sysvinitdir) \
6383 --with-sysvrcnd-path=$$dc_install_base/$(sysvrcnddir)
6384 else
6385 DISTCHECK_CONFIGURE_FLAGS += \
6386 --with-sysvinit-path= \
6387 --with-sysvrcnd-path=
6388 endif
6389
6390 if ENABLE_SPLIT_USR
6391 DISTCHECK_CONFIGURE_FLAGS += \
6392 --enable-split-usr
6393 else
6394 DISTCHECK_CONFIGURE_FLAGS += \
6395 --disable-split-usr
6396 endif
6397
6398 .PHONY: dist-check-help
6399 dist-check-help: $(rootbin_PROGRAMS) $(bin_PROGRAMS)
6400 for i in $(abspath $^); do \
6401 if $$i --help | grep -v 'default:' | grep -E -q '.{80}.' ; then \
6402 echo "$(basename $$i) --help output is too wide:"; \
6403 $$i --help | awk 'length > 80' | grep -E --color=yes '.{80}'; \
6404 exit 1; \
6405 fi; done
6406
6407 include_compilers = "$(CC)" "$(CC) -ansi" "$(CC) -std=iso9899:1990"
6408 public_headers = $(filter-out src/systemd/_sd-common.h, $(pkginclude_HEADERS) $(include_HEADERS))
6409 .PHONY: dist-check-includes
6410 dist-check-includes: $(public_headers)
6411 @res=0; \
6412 for i in $(abspath $^); do \
6413 for cc in $(include_compilers); do \
6414 echo "$$cc -o/dev/null -c -x c -include "$$i" - </dev/null"; \
6415 $$cc -o/dev/null -c -x c -include "$$i" - </dev/null || res=1; \
6416 done; \
6417 done; exit $$res
6418
6419 .PHONY: hwdb-update
6420 hwdb-update:
6421 ( cd $(top_srcdir)/hwdb && \
6422 wget -O usb.ids 'http://www.linux-usb.org/usb.ids' && \
6423 wget -O pci.ids 'http://pci-ids.ucw.cz/v2.2/pci.ids' && \
6424 wget -O ma-large.txt 'http://standards.ieee.org/develop/regauth/oui/oui.txt' && \
6425 wget -O ma-medium.txt 'http://standards.ieee.org/develop/regauth/oui28/mam.txt' && \
6426 wget -O ma-small.txt 'http://standards.ieee.org/develop/regauth/oui36/oui36.txt' && \
6427 wget -O pnp_id_registry.html 'http://www.uefi.org/uefi-pnp-export' && \
6428 wget -O acpi_id_registry.html 'http://www.uefi.org/uefi-acpi-export' && \
6429 ./ids-update.pl && \
6430 ./acpi-update.py > 20-acpi-vendor.hwdb.base && \
6431 patch -p0 -o- 20-acpi-vendor.hwdb.base < 20-acpi-vendor.hwdb.patch > 20-acpi-vendor.hwdb )
6432
6433 .PHONY: built-sources
6434 built-sources: $(BUILT_SOURCES)
6435
6436 .PHONY: git-tag
6437 git-tag:
6438 git tag -s "v$(VERSION)" -m "systemd $(VERSION)"
6439
6440 .PHONY: git-tar
6441 git-tar:
6442 git archive --format=tar --prefix=systemd-$(VERSION)/ HEAD | gzip > systemd-$(VERSION).tar.gz
6443
6444 www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd
6445
6446 .PHONY: doc-sync
6447 doc-sync: all
6448 rsync -rlv --delete-excluded --include="*.html" --exclude="*" --omit-dir-times man/ $(www_target)/man/
6449
6450 .PHONY: install-tree
6451 install-tree: all
6452 rm -rf $(abs_srcdir)/install-tree
6453 $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
6454 tree $(abs_srcdir)/install-tree
6455
6456 # Let's run all tests of the test suite, but under valgrind. Let's
6457 # exclude perl/python/shell scripts we have in there
6458 .PHONY: valgrind-tests
6459 valgrind-tests: $(TESTS)
6460 $(AM_V_GEN)for f in $(filter-out %.pl %.py, $^); do \
6461 if $(LIBTOOL) --mode=execute file $$f | grep -q shell; then \
6462 echo -e "$${x}Skipping non-binary $$f"; else \
6463 echo -e "$${x}Running $$f"; \
6464 $(LIBTOOL) --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \
6465 x="\n\n"; \
6466 done
6467
6468 exported-%: %
6469 $(AM_V_GEN)$(NM) -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
6470
6471 exported: $(addprefix exported-, $(lib_LTLIBRARIES))
6472 $(AM_V_GEN)sort -u $^ > $@
6473
6474 .PHONY: check-api-docs
6475 check-api-docs: exported man
6476 $(AM_V_GEN)for symbol in `cat exported` ; do \
6477 if test -f $(builddir)/man/$$symbol.html ; then \
6478 echo " Symbol $$symbol() is documented." ; \
6479 else \
6480 echo "‣ Symbol $$symbol() lacks documentation." ; \
6481 fi ; \
6482 done
6483
6484 OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
6485 ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
6486
6487 undefined defined: $(ALL_OBJECTS)
6488 $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
6489 $(NM) -g --$@-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
6490 done | cut -c 20- | cut -d @ -f 1 | sort -u > $@
6491
6492 CLEANFILES += \
6493 defined \
6494 undefined
6495
6496 .PHONY: check-api-unused
6497 check-api-unused: defined undefined exported
6498 ( cat exported undefined ) | sort -u | diff -u - defined | grep ^+ | grep -v ^+++ | cut -c2-
6499
6500 .PHONY: check-includes
6501 check-includes: $(top_srcdir)/tools/check-includes.pl
6502 $(AM_V_GEN) find * -name '*.[hcS]' -type f -print | sort -u \
6503 | xargs $(top_srcdir)/tools/check-includes.pl
6504
6505 EXTRA_DIST += \
6506 $(top_srcdir)/tools/check-includes.pl
6507
6508 # Stupid test that everything purported to be exported really is
6509 define generate-sym-test
6510 $(AM_V_at)$(MKDIR_P) $(dir $@)
6511 $(AM_V_at)printf '#include <stdio.h>\n' > $@
6512 $(AM_V_at)printf '#include "%s"\n' $(notdir $(filter %.h, $^)) >> $@
6513 $(AM_V_at)printf 'void* functions[] = {\n' >> $@
6514 $(AM_V_GEN)sed -r -n 's/^ +([a-zA-Z0-9_]+);/\1,/p' $< >> $@
6515 $(AM_V_at)printf '};\nint main(void) {\n' >> $@
6516 $(AM_V_at)printf 'unsigned i; for (i=0;i<sizeof(functions)/sizeof(void*);i++) printf("%%p\\n", functions[i]);\n' >> $@
6517 $(AM_V_at)printf 'return 0; }\n' >> $@
6518 endef
6519
6520 test-libsystemd-sym.c: \
6521 $(top_builddir)/src/libsystemd/libsystemd.sym \
6522 src/systemd/sd-journal.h \
6523 src/systemd/sd-daemon.h \
6524 src/systemd/sd-login.h \
6525 src/systemd/sd-bus.h \
6526 src/systemd/sd-utf8.h \
6527 src/systemd/sd-resolve.h \
6528 src/systemd/sd-path.h \
6529 src/systemd/sd-event.h
6530 $(generate-sym-test)
6531
6532 test-libudev-sym.c: \
6533 src/libudev/libudev.sym \
6534 src/udev/udev.h
6535 $(generate-sym-test)
6536
6537 nodist_test_libsystemd_sym_SOURCES = \
6538 test-libsystemd-sym.c
6539 test_libsystemd_sym_LDADD = \
6540 libsystemd.la
6541
6542 nodist_test_libudev_sym_SOURCES = \
6543 test-libudev-sym.c
6544 test_libudev_sym_CFLAGS = \
6545 $(AM_CFLAGS) \
6546 -Wno-deprecated-declarations
6547 test_libudev_sym_LDADD = \
6548 libudev.la
6549
6550 BUILT_SOURCES += \
6551 test-libsystemd-sym.c \
6552 test-libudev-sym.c
6553
6554 CLEANFILES += \
6555 test-libsystemd-sym.c \
6556 test-libudev-sym.c
6557
6558 tests += \
6559 test-libsystemd-sym \
6560 test-libudev-sym
6561
6562 .PHONY: cppcheck
6563 cppcheck:
6564 cppcheck --enable=all -q $(top_srcdir)
6565
6566 # Used to extract compile flags for YCM.
6567 print-%:
6568 @echo $($*)
6569
6570 git-contrib:
6571 @git shortlog -s `git describe --abbrev=0`.. | cut -c8- | sed 's/ / /g' | awk '{ print $$0 "," }' | sort -u
6572
6573 EXTRA_DIST += \
6574 tools/gdb-sd_dump_hashmaps.py
6575
6576 list-keys:
6577 gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --list-keys
6578
6579 add-key:
6580 gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --import -