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