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