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