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