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