]> git.ipfire.org Git - thirdparty/systemd.git/blob - Makefile.am
620b4d22f054eccec4c1f70de126267b8fb332c9
[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 \
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/70-mouse.rules \
3557 rules/60-persistent-storage-tape.rules \
3558 rules/60-persistent-serial.rules \
3559 rules/60-persistent-input.rules \
3560 rules/60-persistent-alsa.rules \
3561 rules/60-persistent-storage.rules \
3562 rules/64-btrfs.rules \
3563 rules/75-net-description.rules \
3564 rules/75-tty-description.rules \
3565 rules/78-sound-card.rules \
3566 rules/80-net-setup-link.rules \
3567 rules/95-udev-late.rules
3568
3569 nodist_udevrules_DATA += \
3570 rules/99-systemd.rules
3571
3572 udevconfdir = $(sysconfdir)/udev
3573 dist_udevconf_DATA = \
3574 src/udev/udev.conf
3575
3576 sharepkgconfigdir = $(datadir)/pkgconfig
3577 sharepkgconfig_DATA = \
3578 src/udev/udev.pc
3579
3580 EXTRA_DIST += \
3581 rules/99-systemd.rules.in \
3582 src/udev/udev.pc.in
3583
3584 CLEANFILES += \
3585 rules/99-systemd.rules \
3586 src/udev/udev.pc
3587
3588 EXTRA_DIST += \
3589 units/systemd-udevd.service.in \
3590 units/systemd-udev-trigger.service.in \
3591 units/systemd-udev-settle.service.in
3592
3593 CLEANFILES += \
3594 units/systemd-udevd.service \
3595 units/systemd-udev-trigger.service \
3596 units/systemd-udev-settle.service
3597
3598 SOCKETS_TARGET_WANTS += \
3599 systemd-udevd-control.socket \
3600 systemd-udevd-kernel.socket
3601
3602 SYSINIT_TARGET_WANTS += \
3603 systemd-udevd.service \
3604 systemd-udev-trigger.service
3605
3606 rootbin_PROGRAMS += \
3607 udevadm
3608
3609 rootlibexec_PROGRAMS += \
3610 systemd-udevd
3611
3612 noinst_LTLIBRARIES += \
3613 libudev-core.la
3614
3615 src/udev/keyboard-keys.txt:
3616 $(AM_V_at)$(MKDIR_P) $(dir $@)
3617 $(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/' > $@
3618
3619 src/udev/keyboard-keys-from-name.gperf: src/udev/keyboard-keys.txt
3620 $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print tolower(substr($$1 ,5)) ", " $$1 }' < $< > $@
3621
3622 src/udev/keyboard-keys-from-name.h: src/udev/keyboard-keys-from-name.gperf
3623 $(AM_V_GPERF)$(GPERF) -L ANSI-C -t -N keyboard_lookup_key -H hash_key_name -p -C < $< > $@
3624
3625 src/udev/keyboard-keys-to-name.h: src/udev/keyboard-keys.txt
3626 $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char* const key_names[KEY_CNT] = { "} { print "[" $$1 "] = \"" $$1 "\"," } END{print "};"}' < $< > $@
3627
3628 libudev_core_la_SOURCES = \
3629 src/udev/udev.h \
3630 src/udev/udev-event.c \
3631 src/udev/udev-watch.c \
3632 src/udev/udev-node.c \
3633 src/udev/udev-rules.c \
3634 src/udev/udev-ctrl.c \
3635 src/udev/udev-builtin.c \
3636 src/udev/udev-builtin-btrfs.c \
3637 src/udev/udev-builtin-hwdb.c \
3638 src/udev/udev-builtin-input_id.c \
3639 src/udev/udev-builtin-keyboard.c \
3640 src/udev/udev-builtin-net_id.c \
3641 src/udev/udev-builtin-net_setup_link.c \
3642 src/udev/udev-builtin-path_id.c \
3643 src/udev/udev-builtin-usb_id.c \
3644 src/udev/net/link-config.h \
3645 src/udev/net/link-config.c \
3646 src/udev/net/ethtool-util.h \
3647 src/udev/net/ethtool-util.c
3648
3649 nodist_libudev_core_la_SOURCES = \
3650 src/udev/keyboard-keys-from-name.h \
3651 src/udev/keyboard-keys-to-name.h \
3652 src/udev/net/link-config-gperf.c
3653
3654 BUILT_SOURCES += \
3655 $(nodist_libudev_core_la_SOURCES)
3656
3657 CLEANFILES += \
3658 src/udev/keyboard-keys-from-name.gperf \
3659 src/udev/keyboard-keys.txt \
3660 src/udev/net/link-config-gperf.c
3661
3662 EXTRA_DIST += \
3663 src/udev/net/link-config-gperf.gperf
3664
3665 libudev_core_la_CFLAGS = \
3666 $(AM_CFLAGS) \
3667 $(BLKID_CFLAGS) \
3668 $(KMOD_CFLAGS)
3669
3670 libudev_core_la_LIBADD = \
3671 libudev-internal.la \
3672 libsystemd-label.la \
3673 libsystemd-internal.la \
3674 libsystemd-network.la \
3675 libsystemd-shared.la \
3676 $(BLKID_LIBS) \
3677 $(KMOD_LIBS)
3678
3679 if HAVE_KMOD
3680 libudev_core_la_SOURCES += \
3681 src/udev/udev-builtin-kmod.c
3682
3683 dist_udevrules_DATA += \
3684 rules/80-drivers.rules
3685 endif
3686
3687 if HAVE_BLKID
3688 libudev_core_la_SOURCES += \
3689 src/udev/udev-builtin-blkid.c
3690 endif
3691
3692 if HAVE_ACL
3693 libudev_core_la_SOURCES += \
3694 src/udev/udev-builtin-uaccess.c \
3695 src/login/logind-acl.c \
3696 src/libsystemd/sd-login/sd-login.c \
3697 src/systemd/sd-login.h
3698
3699 libudev_core_la_LIBADD += \
3700 libsystemd-acl.la
3701 endif
3702
3703 systemd_udevd_SOURCES = \
3704 src/udev/udevd.c
3705
3706 systemd_udevd_LDADD = \
3707 libudev-core.la
3708
3709 udevadm_SOURCES = \
3710 src/udev/udevadm.c \
3711 src/udev/udevadm-info.c \
3712 src/udev/udevadm-control.c \
3713 src/udev/udevadm-monitor.c \
3714 src/udev/udevadm-hwdb.c \
3715 src/udev/udevadm-settle.c \
3716 src/udev/udevadm-trigger.c \
3717 src/udev/udevadm-test.c \
3718 src/udev/udevadm-test-builtin.c \
3719 src/udev/udevadm-util.c \
3720 src/udev/udevadm-util.h
3721
3722 udevadm_LDADD = \
3723 libudev-core.la
3724
3725 # ------------------------------------------------------------------------------
3726 if ENABLE_HWDB
3727 INSTALL_DIRS += \
3728 $(sysconfdir)/udev/hwdb.d
3729
3730 systemd_hwdb_SOURCES = \
3731 src/libsystemd/sd-hwdb/hwdb-internal.h \
3732 src/hwdb/hwdb.c
3733
3734 systemd_hwdb_LDADD = \
3735 libsystemd-shared.la \
3736 libsystemd-internal.la \
3737 libudev-internal.la
3738
3739 rootbin_PROGRAMS += \
3740 systemd-hwdb
3741
3742 dist_udevhwdb_DATA = \
3743 hwdb/20-pci-vendor-model.hwdb \
3744 hwdb/20-pci-classes.hwdb \
3745 hwdb/20-usb-vendor-model.hwdb \
3746 hwdb/20-usb-classes.hwdb \
3747 hwdb/20-sdio-vendor-model.hwdb \
3748 hwdb/20-sdio-classes.hwdb \
3749 hwdb/20-bluetooth-vendor-product.hwdb \
3750 hwdb/20-acpi-vendor.hwdb \
3751 hwdb/20-OUI.hwdb \
3752 hwdb/20-net-ifname.hwdb \
3753 hwdb/60-keyboard.hwdb \
3754 hwdb/70-mouse.hwdb
3755
3756 EXTRA_DIST += \
3757 units/systemd-hwdb-update.service.in
3758
3759 CLEANFILES += \
3760 units/systemd-hwdb-update.service
3761
3762 SYSINIT_TARGET_WANTS += \
3763 systemd-hwdb-update.service
3764
3765 # Update hwdb on installation. Do not bother if installing
3766 # in DESTDIR, since this is likely for packaging purposes.
3767 hwdb-update-hook:
3768 -test -n "$(DESTDIR)" || $(rootbindir)/systemd-hwdb update
3769
3770 INSTALL_DATA_HOOKS += \
3771 hwdb-update-hook
3772
3773 hwdb-remove-hook:
3774 -test -n "$(DESTDIR)" || rm -f /etc/udev/hwdb.bin
3775 endif
3776
3777 # ------------------------------------------------------------------------------
3778 TESTS += \
3779 test/udev-test.pl \
3780 $(NULL)
3781
3782 if HAVE_PYTHON
3783 TESTS += \
3784 test/rule-syntax-check.py \
3785 test/sysv-generator-test.py \
3786 $(NULL)
3787 endif
3788
3789 manual_tests += \
3790 test-libudev \
3791 test-udev
3792
3793 test_libudev_SOURCES = \
3794 src/test/test-libudev.c
3795
3796 test_libudev_LDADD = \
3797 libsystemd-label.la \
3798 libudev-internal.la \
3799 libsystemd-shared.la \
3800 libsystemd-internal.la
3801
3802 test_udev_SOURCES = \
3803 src/test/test-udev.c
3804
3805 test_udev_LDADD = \
3806 libudev-core.la \
3807 $(BLKID_LIBS) \
3808 $(KMOD_LIBS) \
3809 $(SELINUX_LIBS)
3810
3811 if HAVE_ACL
3812 test_udev_LDADD += \
3813 libsystemd-acl.la
3814 endif
3815
3816 check_DATA += \
3817 test/sys
3818
3819 # packed sysfs test tree
3820 test/sys:
3821 $(AM_V_at)$(MKDIR_P) $(dir $@)
3822 $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
3823
3824 test-sys-distclean:
3825 -rm -rf test/sys
3826 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
3827
3828 EXTRA_DIST += \
3829 test/sys.tar.xz \
3830 test/udev-test.pl \
3831 test/rule-syntax-check.py \
3832 test/sysv-generator-test.py \
3833 $(NULL)
3834
3835
3836 # ------------------------------------------------------------------------------
3837 ata_id_SOURCES = \
3838 src/udev/ata_id/ata_id.c
3839
3840 ata_id_LDADD = \
3841 libudev-internal.la \
3842 libsystemd-shared.la
3843
3844 udevlibexec_PROGRAMS += \
3845 ata_id
3846
3847 # ------------------------------------------------------------------------------
3848 cdrom_id_SOURCES = \
3849 src/udev/cdrom_id/cdrom_id.c
3850
3851 cdrom_id_LDADD = \
3852 libudev-internal.la \
3853 libsystemd-shared.la
3854
3855 udevlibexec_PROGRAMS += \
3856 cdrom_id
3857
3858 dist_udevrules_DATA += \
3859 rules/60-cdrom_id.rules
3860
3861 # ------------------------------------------------------------------------------
3862 collect_SOURCES = \
3863 src/udev/collect/collect.c
3864
3865 collect_LDADD = \
3866 libudev-internal.la \
3867 libsystemd-shared.la
3868
3869 udevlibexec_PROGRAMS += \
3870 collect
3871
3872 # ------------------------------------------------------------------------------
3873 scsi_id_SOURCES =\
3874 src/udev/scsi_id/scsi_id.c \
3875 src/udev/scsi_id/scsi_serial.c \
3876 src/udev/scsi_id/scsi.h \
3877 src/udev/scsi_id/scsi_id.h
3878
3879 scsi_id_LDADD = \
3880 libudev-internal.la \
3881 libsystemd-shared.la
3882
3883 udevlibexec_PROGRAMS += \
3884 scsi_id
3885
3886 EXTRA_DIST += \
3887 src/udev/scsi_id/README
3888
3889 # ------------------------------------------------------------------------------
3890 v4l_id_SOURCES = \
3891 src/udev/v4l_id/v4l_id.c
3892
3893 v4l_id_LDADD = \
3894 libudev-internal.la \
3895 libsystemd-shared.la
3896
3897 udevlibexec_PROGRAMS += \
3898 v4l_id
3899
3900 dist_udevrules_DATA += \
3901 rules/60-persistent-v4l.rules
3902
3903 # ------------------------------------------------------------------------------
3904 accelerometer_SOURCES = \
3905 src/udev/accelerometer/accelerometer.c
3906
3907 accelerometer_LDADD = \
3908 libudev-internal.la \
3909 libsystemd-shared.la
3910
3911 udevlibexec_PROGRAMS += \
3912 accelerometer
3913
3914 dist_udevrules_DATA += \
3915 rules/61-accelerometer.rules
3916
3917 # ------------------------------------------------------------------------------
3918 if ENABLE_GUDEV
3919 if ENABLE_GTK_DOC
3920 SUBDIRS += \
3921 docs/gudev
3922 endif
3923
3924 libgudev_includedir = \
3925 $(includedir)/gudev-1.0/gudev
3926
3927 libgudev_include_HEADERS = \
3928 src/gudev/gudev.h \
3929 src/gudev/gudevenums.h \
3930 src/gudev/gudevenumtypes.h \
3931 src/gudev/gudevtypes.h \
3932 src/gudev/gudevclient.h \
3933 src/gudev/gudevdevice.h \
3934 src/gudev/gudevenumerator.h
3935
3936 lib_LTLIBRARIES += libgudev-1.0.la
3937
3938 pkgconfiglib_DATA += \
3939 src/gudev/gudev-1.0.pc
3940
3941 CLEANFILES += \
3942 src/gudev/gudev-1.0.pc
3943
3944 libgudev_1_0_la_SOURCES = \
3945 src/gudev/libgudev-1.0.sym \
3946 src/gudev/gudevenums.h \
3947 src/gudev/gudevenumtypes.h \
3948 src/gudev/gudevenumtypes.h\
3949 src/gudev/gudevtypes.h \
3950 src/gudev/gudevclient.h \
3951 src/gudev/gudevclient.c \
3952 src/gudev/gudevdevice.h \
3953 src/gudev/gudevdevice.c \
3954 src/gudev/gudevenumerator.h \
3955 src/gudev/gudevenumerator.c \
3956 src/gudev/gudevprivate.h
3957
3958 nodist_libgudev_1_0_la_SOURCES = \
3959 src/gudev/gudevmarshal.h \
3960 src/gudev/gudevmarshal.c \
3961 src/gudev/gudevenumtypes.h \
3962 src/gudev/gudevenumtypes.c
3963
3964 BUILT_SOURCES += \
3965 $(nodist_libgudev_1_0_la_SOURCES)
3966
3967 libgudev_1_0_la_CPPFLAGS = \
3968 $(AM_CPPFLAGS) \
3969 -I$(top_builddir)/src\
3970 -I$(top_srcdir)/src\
3971 -I$(top_builddir)/src/gudev \
3972 -I$(top_srcdir)/src/gudev \
3973 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
3974 -D_GUDEV_COMPILATION \
3975 -DG_LOG_DOMAIN=\"GUdev\"
3976
3977 libgudev_1_0_la_CFLAGS = \
3978 $(AM_CFLAGS) \
3979 -fvisibility=default \
3980 $(GLIB_CFLAGS)
3981
3982 libgudev_1_0_la_LIBADD = \
3983 libudev.la \
3984 $(GLIB_LIBS)
3985
3986 libgudev_1_0_la_LDFLAGS = \
3987 $(AM_LDFLAGS) \
3988 -version-info $(LIBGUDEV_CURRENT):$(LIBGUDEV_REVISION):$(LIBGUDEV_AGE) \
3989 -export-dynamic \
3990 -no-undefined \
3991 -Wl,--version-script=$(top_srcdir)/src/gudev/libgudev-1.0.sym
3992
3993 src/gudev/gudevmarshal.h: src/gudev/gudevmarshal.list
3994 $(AM_V_at)$(MKDIR_P) $(dir $@)
3995 $(AM_V_GEN)glib-genmarshal $< --prefix=g_udev_marshal --header > $@
3996
3997 src/gudev/gudevmarshal.c: src/gudev/gudevmarshal.list
3998 $(AM_V_at)$(MKDIR_P) $(dir $@)
3999 $(AM_V_GEN)echo '#include "gudevmarshal.h"' > $@ && \
4000 glib-genmarshal $< --prefix=g_udev_marshal --body >> $@
4001
4002 src/gudev/gudevenumtypes.%: src/gudev/gudevenumtypes.%.template src/gudev/gudevenums.h
4003 $(AM_V_at)$(MKDIR_P) $(dir $@)
4004 $(AM_V_GEN)glib-mkenums --template $^ > $@
4005
4006 if HAVE_INTROSPECTION
4007 -include $(INTROSPECTION_MAKEFILE)
4008
4009 src/gudev/GUdev-1.0.gir: libgudev-1.0.la
4010
4011 src_gudev_GUdev_1_0_gir_INCLUDES = GObject-2.0
4012
4013 src_gudev_GUdev_1_0_gir_CFLAGS = \
4014 $(AM_CFLAGS) \
4015 $(INCLUDES) \
4016 -D_GUDEV_COMPILATION \
4017 -D_GUDEV_WORK_AROUND_DEV_T_BUG \
4018 -I$(top_srcdir)/src \
4019 -I$(top_builddir)/src \
4020 -I$(top_srcdir)/src/gudev \
4021 -I$(top_builddir)/src/gudev
4022
4023 src_gudev_GUdev_1_0_gir_LIBS = libgudev-1.0.la
4024
4025 src_gudev_GUdev_1_0_gir_SCANNERFLAGS = \
4026 --pkg-export=gudev-1.0 \
4027 --warn-all
4028
4029 src_gudev_GUdev_1_0_gir_FILES = \
4030 src/gudev/gudev.h \
4031 src/gudev/gudevtypes.h \
4032 src/gudev/gudevenums.h \
4033 src/gudev/gudevenumtypes.h \
4034 src/gudev/gudevclient.h \
4035 src/gudev/gudevdevice.h \
4036 src/gudev/gudevenumerator.h \
4037 src/gudev/gudevclient.c \
4038 src/gudev/gudevdevice.c \
4039 src/gudev/gudevenumerator.c
4040
4041 INTROSPECTION_GIRS = src/gudev/GUdev-1.0.gir
4042 INTROSPECTION_SCANNER_ARGS = --c-include=gudev/gudev.h
4043
4044 girdir = $(datadir)/gir-1.0
4045 gir_DATA = \
4046 src/gudev/GUdev-1.0.gir
4047
4048 typelibsdir = $(libdir)/girepository-1.0
4049 typelibs_DATA = \
4050 src/gudev/GUdev-1.0.typelib
4051
4052 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
4053 endif # HAVE_INTROSPECTION
4054 endif
4055
4056 EXTRA_DIST += \
4057 src/gudev/gudev-1.0.pc.in \
4058 src/gudev/gudevmarshal.list \
4059 src/gudev/gudevenumtypes.h.template \
4060 src/gudev/gudevenumtypes.c.template \
4061 src/gudev/gjs-example.js \
4062 src/gudev/seed-example-enum.js \
4063 src/gudev/seed-example.js
4064
4065 # ------------------------------------------------------------------------------
4066 mtd_probe_SOURCES = \
4067 src/udev/mtd_probe/mtd_probe.c \
4068 src/udev/mtd_probe/mtd_probe.h \
4069 src/udev/mtd_probe/probe_smartmedia.c
4070
4071 dist_udevrules_DATA += \
4072 rules/75-probe_mtd.rules
4073
4074 udevlibexec_PROGRAMS += \
4075 mtd_probe
4076
4077 # ------------------------------------------------------------------------------
4078 test_id128_SOURCES = \
4079 src/test/test-id128.c
4080
4081 test_id128_LDADD = \
4082 libsystemd-internal.la \
4083 libsystemd-shared.la
4084
4085 tests += \
4086 test-id128
4087
4088 # ------------------------------------------------------------------------------
4089
4090 rootlibexec_PROGRAMS += \
4091 systemd-activate
4092
4093 systemd_activate_SOURCES = \
4094 src/activate/activate.c
4095
4096 systemd_activate_LDADD = \
4097 libsystemd-label.la \
4098 libsystemd-internal.la \
4099 libsystemd-shared.la
4100
4101 # ------------------------------------------------------------------------------
4102 systemd_journald_SOURCES = \
4103 src/journal/journald.c \
4104 src/journal/journald-server.h
4105
4106 systemd_journald_LDADD = \
4107 libsystemd-journal-core.la \
4108 libsystemd-internal.la \
4109 libsystemd-shared.la
4110
4111 systemd_cat_SOURCES = \
4112 src/journal/cat.c
4113
4114 systemd_cat_LDADD = \
4115 libsystemd-journal-core.la
4116
4117 if HAVE_MICROHTTPD
4118 rootlibexec_PROGRAMS += \
4119 systemd-journal-remote
4120
4121 systemd_journal_remote_SOURCES = \
4122 src/journal-remote/journal-remote-parse.h \
4123 src/journal-remote/journal-remote-parse.c \
4124 src/journal-remote/journal-remote-write.h \
4125 src/journal-remote/journal-remote-write.c \
4126 src/journal-remote/journal-remote.h \
4127 src/journal-remote/journal-remote.c
4128
4129 systemd_journal_remote_LDADD = \
4130 libsystemd-internal.la \
4131 libsystemd-journal-core.la
4132
4133 systemd_journal_remote_SOURCES += \
4134 src/journal-remote/microhttpd-util.h \
4135 src/journal-remote/microhttpd-util.c
4136
4137 systemd_journal_remote_CFLAGS = \
4138 $(AM_CFLAGS) \
4139 $(MICROHTTPD_CFLAGS)
4140
4141 systemd_journal_remote_LDADD += \
4142 $(MICROHTTPD_LIBS)
4143
4144 if ENABLE_SYSUSERS
4145 dist_sysusers_DATA += \
4146 sysusers.d/systemd-remote.conf
4147 endif
4148
4149 if ENABLE_TMPFILES
4150 dist_tmpfiles_DATA += \
4151 tmpfiles.d/systemd-remote.conf
4152 endif
4153
4154 if HAVE_GNUTLS
4155 systemd_journal_remote_LDADD += \
4156 $(GNUTLS_LIBS)
4157
4158 # systemd-journal-remote make sense mostly with full crypto stack
4159 dist_systemunit_DATA += \
4160 units/systemd-journal-remote.socket
4161
4162 nodist_systemunit_DATA += \
4163 units/systemd-journal-remote.service
4164
4165 EXTRA_DIST += \
4166 units/systemd-journal-remote.service.in
4167
4168 journal-remote-install-hook: journal-install-hook
4169 -$(MKDIR_P) $(DESTDIR)/var/log/journal/remote
4170 -chown 0:0 $(DESTDIR)/var/log/journal/remote
4171 -chmod 755 $(DESTDIR)/var/log/journal/remote
4172
4173 INSTALL_EXEC_HOOKS += journal-remote-install-hook
4174
4175 endif
4176
4177 nodist_pkgsysconf_DATA += \
4178 src/journal-remote/journal-remote.conf
4179
4180 EXTRA_DIST += \
4181 src/journal-remote/journal-remote.conf.in
4182
4183 CLEANFILES += \
4184 src/journal-remote/journal-remote.conf
4185 endif
4186
4187 if HAVE_LIBCURL
4188 rootlibexec_PROGRAMS += \
4189 systemd-journal-upload
4190
4191 systemd_journal_upload_SOURCES = \
4192 src/journal-remote/journal-upload.h \
4193 src/journal-remote/journal-upload.c \
4194 src/journal-remote/journal-upload-journal.c
4195
4196 systemd_journal_upload_CFLAGS = \
4197 $(AM_CFLAGS) \
4198 $(LIBCURL_CFLAGS)
4199
4200 systemd_journal_upload_LDADD = \
4201 libsystemd-internal.la \
4202 libsystemd-journal-internal.la \
4203 libsystemd-shared.la \
4204 $(LIBCURL_LIBS)
4205
4206 nodist_systemunit_DATA += \
4207 units/systemd-journal-upload.service
4208
4209 EXTRA_DIST += \
4210 units/systemd-journal-upload.service.in
4211
4212 nodist_pkgsysconf_DATA += \
4213 src/journal-remote/journal-upload.conf
4214
4215 EXTRA_DIST += \
4216 src/journal-remote/journal-upload.conf.in
4217
4218 CLEANFILES += \
4219 src/journal-remote/journal-upload.conf
4220 endif
4221
4222 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4223 journalctl_CFLAGS = \
4224 $(AM_CFLAGS)
4225
4226 journalctl_SOURCES = \
4227 src/journal/journalctl.c
4228
4229 journalctl_LDADD = \
4230 libsystemd-journal-internal.la \
4231 libsystemd-internal.la \
4232 libsystemd-logs.la \
4233 libsystemd-shared.la
4234
4235 if HAVE_ACL
4236 journalctl_LDADD += \
4237 libsystemd-acl.la
4238 endif
4239
4240 if HAVE_QRENCODE
4241 journalctl_SOURCES += \
4242 src/journal/journal-qrcode.c \
4243 src/journal/journal-qrcode.h
4244
4245 journalctl_CFLAGS += \
4246 $(QRENCODE_CFLAGS)
4247
4248 journalctl_LDADD += \
4249 $(QRENCODE_LIBS)
4250 endif
4251
4252 test_journal_SOURCES = \
4253 src/journal/test-journal.c
4254
4255 test_journal_LDADD = \
4256 libsystemd-journal-core.la
4257
4258 test_journal_send_SOURCES = \
4259 src/journal/test-journal-send.c
4260
4261 test_journal_send_LDADD = \
4262 libsystemd-journal-core.la
4263
4264 test_journal_syslog_SOURCES = \
4265 src/journal/test-journal-syslog.c
4266
4267 test_journal_syslog_LDADD = \
4268 libsystemd-journal-core.la
4269
4270 test_journal_match_SOURCES = \
4271 src/journal/test-journal-match.c
4272
4273 test_journal_match_LDADD = \
4274 libsystemd-journal-core.la
4275
4276 test_journal_enum_SOURCES = \
4277 src/journal/test-journal-enum.c
4278
4279 test_journal_enum_LDADD = \
4280 libsystemd-journal-core.la
4281
4282 test_journal_stream_SOURCES = \
4283 src/journal/test-journal-stream.c
4284
4285 test_journal_stream_LDADD = \
4286 libsystemd-journal-core.la
4287
4288 test_journal_flush_SOURCES = \
4289 src/journal/test-journal-flush.c
4290
4291 test_journal_flush_LDADD = \
4292 libsystemd-journal-core.la
4293
4294 test_journal_init_SOURCES = \
4295 src/journal/test-journal-init.c
4296
4297 test_journal_init_LDADD = \
4298 libsystemd-journal-core.la
4299
4300 test_journal_verify_SOURCES = \
4301 src/journal/test-journal-verify.c
4302
4303 test_journal_verify_LDADD = \
4304 libsystemd-journal-core.la
4305
4306 test_journal_interleaving_SOURCES = \
4307 src/journal/test-journal-interleaving.c
4308
4309 test_journal_interleaving_LDADD = \
4310 libsystemd-journal-core.la
4311
4312 test_mmap_cache_SOURCES = \
4313 src/journal/test-mmap-cache.c
4314
4315 test_mmap_cache_LDADD = \
4316 libsystemd-journal-core.la
4317
4318 test_catalog_SOURCES = \
4319 src/journal/test-catalog.c
4320
4321 test_catalog_CPPFLAGS = \
4322 $(AM_CPPFLAGS) \
4323 -DCATALOG_DIR=\"$(abs_top_srcdir)/catalog\"
4324
4325 test_catalog_LDADD = \
4326 libsystemd-journal-core.la
4327
4328 test_compress_SOURCES = \
4329 src/journal/test-compress.c
4330
4331 test_compress_LDADD = \
4332 libsystemd-journal-internal.la \
4333 libsystemd-shared.la
4334
4335 test_compress_benchmark_SOURCES = \
4336 src/journal/test-compress-benchmark.c
4337
4338 test_compress_benchmark_LDADD = \
4339 libsystemd-journal-internal.la \
4340 libsystemd-shared.la
4341
4342 libsystemd_journal_core_la_SOURCES = \
4343 src/journal/journald-kmsg.c \
4344 src/journal/journald-kmsg.h \
4345 src/journal/journald-syslog.c \
4346 src/journal/journald-syslog.h \
4347 src/journal/journald-stream.c \
4348 src/journal/journald-stream.h \
4349 src/journal/journald-server.c \
4350 src/journal/journald-server.h \
4351 src/journal/journald-console.c \
4352 src/journal/journald-console.h \
4353 src/journal/journald-wall.c \
4354 src/journal/journald-wall.h \
4355 src/journal/journald-native.c \
4356 src/journal/journald-native.h \
4357 src/journal/journald-audit.c \
4358 src/journal/journald-audit.h \
4359 src/journal/journald-rate-limit.c \
4360 src/journal/journald-rate-limit.h \
4361 src/journal/journal-internal.h
4362
4363 nodist_libsystemd_journal_core_la_SOURCES = \
4364 src/journal/journald-gperf.c
4365
4366 libsystemd_journal_core_la_LIBADD = \
4367 libsystemd-journal-internal.la \
4368 libudev-internal.la \
4369 libsystemd-label.la \
4370 libsystemd-internal.la \
4371 libsystemd-shared.la
4372
4373 if HAVE_ACL
4374 libsystemd_journal_core_la_LIBADD += \
4375 libsystemd-acl.la
4376 endif
4377
4378 noinst_LTLIBRARIES += \
4379 libsystemd-journal-core.la
4380
4381 journal-install-hook:
4382 -$(MKDIR_P) $(DESTDIR)/var/log/journal
4383 -chown 0:0 $(DESTDIR)/var/log/journal
4384 -chmod 755 $(DESTDIR)/var/log/journal
4385 -setfacl -nm g:adm:rx,d:g:adm:rx $(DESTDIR)/var/log/journal/
4386 -setfacl -nm g:wheel:rx,d:g:wheel:rx $(DESTDIR)/var/log/journal/
4387
4388 journal-uninstall-hook:
4389 -rmdir $(DESTDIR)/var/log/journal/remote
4390 -rmdir $(DESTDIR)/var/log/journal/
4391
4392 INSTALL_EXEC_HOOKS += journal-install-hook
4393 UNINSTALL_EXEC_HOOKS += journal-uninstall-hook
4394
4395 # ------------------------------------------------------------------------------
4396 # Update catalog on installation. Do not bother if installing
4397 # in DESTDIR, since this is likely for packaging purposes.
4398 catalog-update-hook:
4399 -test -n "$(DESTDIR)" || $(rootbindir)/journalctl --update-catalog
4400
4401 INSTALL_DATA_HOOKS += \
4402 catalog-update-hook
4403
4404 catalog-remove-hook:
4405 -test -n "$(DESTDIR)" || rm -f $(catalogstatedir)/database
4406
4407 UNINSTALL_DATA_HOOKS += \
4408 catalog-remove-hook
4409
4410 manual_tests += \
4411 test-journal-enum
4412
4413 tests += \
4414 test-journal \
4415 test-journal-send \
4416 test-journal-syslog \
4417 test-journal-match \
4418 test-journal-stream \
4419 test-journal-init \
4420 test-journal-verify \
4421 test-journal-interleaving \
4422 test-journal-flush \
4423 test-mmap-cache \
4424 test-catalog
4425
4426 if HAVE_COMPRESSION
4427 tests += \
4428 test-compress \
4429 test-compress-benchmark
4430 endif
4431
4432 pkginclude_HEADERS += \
4433 src/systemd/sd-journal.h \
4434 src/systemd/sd-messages.h \
4435 src/systemd/_sd-common.h
4436
4437 libsystemd_journal_internal_la_SOURCES = \
4438 src/journal/sd-journal.c \
4439 src/systemd/sd-journal.h \
4440 src/systemd/_sd-common.h \
4441 src/journal/journal-file.c \
4442 src/journal/journal-file.h \
4443 src/journal/journal-vacuum.c \
4444 src/journal/journal-vacuum.h \
4445 src/journal/journal-verify.c \
4446 src/journal/journal-verify.h \
4447 src/journal/lookup3.c \
4448 src/journal/lookup3.h \
4449 src/journal/journal-send.c \
4450 src/journal/journal-def.h \
4451 src/journal/compress.h \
4452 src/journal/catalog.c \
4453 src/journal/catalog.h \
4454 src/journal/mmap-cache.c \
4455 src/journal/mmap-cache.h \
4456 src/journal/compress.c
4457
4458 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4459 libsystemd_journal_internal_la_CFLAGS = \
4460 $(AM_CFLAGS)
4461
4462 libsystemd_journal_internal_la_LIBADD = \
4463 libsystemd-label.la
4464
4465 if HAVE_XZ
4466 libsystemd_journal_internal_la_CFLAGS += \
4467 $(XZ_CFLAGS)
4468
4469 libsystemd_journal_internal_la_LIBADD += \
4470 $(XZ_LIBS)
4471 endif
4472
4473 if HAVE_LZ4
4474 libsystemd_journal_internal_la_LIBADD += \
4475 -llz4
4476 endif
4477
4478 if HAVE_GCRYPT
4479 libsystemd_journal_internal_la_SOURCES += \
4480 src/journal/journal-authenticate.c \
4481 src/journal/journal-authenticate.h \
4482 src/journal/fsprg.c \
4483 src/journal/fsprg.h
4484
4485 libsystemd_journal_internal_la_LIBADD += \
4486 $(GCRYPT_LIBS)
4487
4488 # fsprg.c is a drop-in file using void pointer arithmetic
4489 libsystemd_journal_internal_la_CFLAGS += \
4490 $(GCRYPT_CFLAGS) \
4491 -Wno-pointer-arith
4492 endif
4493
4494 noinst_LTLIBRARIES += \
4495 libsystemd-journal-internal.la
4496
4497 rootlibexec_PROGRAMS += \
4498 systemd-journald
4499
4500 rootbin_PROGRAMS += \
4501 journalctl
4502
4503 bin_PROGRAMS += \
4504 systemd-cat
4505
4506 dist_systemunit_DATA += \
4507 units/systemd-journald.socket \
4508 units/systemd-journald-dev-log.socket \
4509 units/systemd-journald-audit.socket
4510
4511 nodist_systemunit_DATA += \
4512 units/systemd-journald.service \
4513 units/systemd-journal-flush.service \
4514 units/systemd-journal-catalog-update.service
4515
4516 dist_pkgsysconf_DATA += \
4517 src/journal/journald.conf
4518
4519 dist_catalog_DATA = \
4520 catalog/systemd.fr.catalog \
4521 catalog/systemd.it.catalog \
4522 catalog/systemd.pl.catalog \
4523 catalog/systemd.pt_BR.catalog \
4524 catalog/systemd.ru.catalog \
4525 catalog/systemd.catalog
4526
4527 SOCKETS_TARGET_WANTS += \
4528 systemd-journald.socket \
4529 systemd-journald-dev-log.socket \
4530 systemd-journald-audit.socket
4531
4532 SYSINIT_TARGET_WANTS += \
4533 systemd-journald.service \
4534 systemd-journal-flush.service \
4535 systemd-journal-catalog-update.service
4536
4537 EXTRA_DIST += \
4538 units/systemd-journald.service.in \
4539 units/systemd-journal-flush.service.in \
4540 units/systemd-journal-catalog-update.service.in \
4541 src/journal/journald-gperf.gperf
4542
4543 CLEANFILES += \
4544 src/journal/journald-gperf.c
4545
4546 # ------------------------------------------------------------------------------
4547 if HAVE_MICROHTTPD
4548 gatewayddocumentrootdir=$(pkgdatadir)/gatewayd
4549
4550 rootlibexec_PROGRAMS += \
4551 systemd-journal-gatewayd
4552
4553 systemd_journal_gatewayd_SOURCES = \
4554 src/journal-remote/journal-gatewayd.c \
4555 src/journal-remote/microhttpd-util.h \
4556 src/journal-remote/microhttpd-util.c
4557
4558 systemd_journal_gatewayd_LDADD = \
4559 libsystemd-logs.la \
4560 libsystemd-journal-internal.la \
4561 libsystemd-internal.la \
4562 libsystemd-shared.la \
4563 $(MICROHTTPD_LIBS)
4564
4565 if HAVE_GNUTLS
4566 systemd_journal_gatewayd_LDADD += \
4567 $(GNUTLS_LIBS)
4568 endif
4569
4570 systemd_journal_gatewayd_CFLAGS = \
4571 $(AM_CFLAGS) \
4572 $(MICROHTTPD_CFLAGS)
4573
4574 systemd_journal_gatewayd_CPPFLAGS = \
4575 $(AM_CPPFLAGS) \
4576 -DDOCUMENT_ROOT=\"$(gatewayddocumentrootdir)\"
4577
4578 dist_systemunit_DATA += \
4579 units/systemd-journal-gatewayd.socket
4580
4581 nodist_systemunit_DATA += \
4582 units/systemd-journal-gatewayd.service
4583
4584 dist_gatewayddocumentroot_DATA = \
4585 src/journal-remote/browse.html
4586
4587 endif
4588
4589 EXTRA_DIST += \
4590 units/systemd-journal-gatewayd.service.in
4591
4592 # ------------------------------------------------------------------------------
4593
4594 systemd_socket_proxyd_SOURCES = \
4595 src/socket-proxy/socket-proxyd.c
4596
4597 systemd_socket_proxyd_LDADD = \
4598 libsystemd-logs.la \
4599 libsystemd-internal.la \
4600 libsystemd-journal-internal.la \
4601 libsystemd-shared.la \
4602 libsystemd-resolve.la
4603
4604 # ------------------------------------------------------------------------------
4605 if ENABLE_COREDUMP
4606 systemd_coredump_SOURCES = \
4607 src/journal/coredump.c \
4608 src/journal/coredump-vacuum.c \
4609 src/journal/coredump-vacuum.h
4610
4611 systemd_coredump_LDADD = \
4612 libsystemd-journal-internal.la \
4613 libsystemd-label.la \
4614 libsystemd-internal.la \
4615 libsystemd-shared.la
4616
4617 if HAVE_ELFUTILS
4618 systemd_coredump_SOURCES += \
4619 src/journal/stacktrace.c \
4620 src/journal/stacktrace.h
4621
4622 systemd_coredump_LDADD += \
4623 $(ELFUTILS_LIBS)
4624 endif
4625
4626 rootlibexec_PROGRAMS += \
4627 systemd-coredump
4628
4629 dist_pkgsysconf_DATA += \
4630 src/journal/coredump.conf
4631
4632 if HAVE_ACL
4633 systemd_coredump_LDADD += \
4634 libsystemd-acl.la
4635 endif
4636
4637 coredumpctl_SOURCES = \
4638 src/journal/coredumpctl.c
4639
4640 coredumpctl_LDADD = \
4641 libsystemd-journal-internal.la \
4642 libsystemd-internal.la \
4643 libsystemd-shared.la
4644
4645 bin_PROGRAMS += \
4646 coredumpctl
4647
4648 manual_tests += \
4649 test-coredump-vacuum
4650
4651 test_coredump_vacuum_SOURCES = \
4652 src/journal/test-coredump-vacuum.c \
4653 src/journal/coredump-vacuum.c \
4654 src/journal/coredump-vacuum.h
4655
4656 test_coredump_vacuum_LDADD = \
4657 libsystemd-internal.la \
4658 libsystemd-shared.la
4659
4660 dist_bashcompletion_DATA += \
4661 shell-completion/bash/coredumpctl
4662
4663 dist_zshcompletion_DATA += \
4664 shell-completion/zsh/_coredumpctl
4665
4666 sysctl_DATA = \
4667 sysctl.d/50-coredump.conf
4668
4669 CLEANFILES += \
4670 sysctl.d/50-coredump.conf
4671 endif
4672
4673 EXTRA_DIST += \
4674 sysctl.d/50-coredump.conf.in
4675
4676 # ------------------------------------------------------------------------------
4677 if ENABLE_BINFMT
4678 systemd_binfmt_SOURCES = \
4679 src/binfmt/binfmt.c
4680
4681 systemd_binfmt_LDADD = \
4682 libsystemd-shared.la
4683
4684 rootlibexec_PROGRAMS += \
4685 systemd-binfmt
4686
4687 dist_systemunit_DATA += \
4688 units/proc-sys-fs-binfmt_misc.automount \
4689 units/proc-sys-fs-binfmt_misc.mount
4690
4691 nodist_systemunit_DATA += \
4692 units/systemd-binfmt.service
4693
4694 INSTALL_DIRS += \
4695 $(prefix)/lib/binfmt.d \
4696 $(sysconfdir)/binfmt.d
4697
4698 SYSINIT_TARGET_WANTS += \
4699 systemd-binfmt.service \
4700 proc-sys-fs-binfmt_misc.automount
4701
4702 endif
4703
4704 EXTRA_DIST += \
4705 units/systemd-binfmt.service.in
4706
4707 # ------------------------------------------------------------------------------
4708 if ENABLE_VCONSOLE
4709 systemd_vconsole_setup_SOURCES = \
4710 src/vconsole/vconsole-setup.c
4711
4712 systemd_vconsole_setup_LDADD = \
4713 libsystemd-shared.la
4714
4715 rootlibexec_PROGRAMS += \
4716 systemd-vconsole-setup
4717
4718 nodist_systemunit_DATA += \
4719 units/systemd-vconsole-setup.service
4720
4721 nodist_udevrules_DATA += \
4722 src/vconsole/90-vconsole.rules
4723
4724 SYSINIT_TARGET_WANTS += \
4725 systemd-vconsole-setup.service
4726
4727 CLEANFILES += \
4728 src/vconsole/90-vconsole.rules
4729 endif
4730
4731 EXTRA_DIST += \
4732 src/vconsole/90-vconsole.rules.in \
4733 units/systemd-vconsole-setup.service.in
4734
4735 # ------------------------------------------------------------------------------
4736 if ENABLE_BOOTCHART
4737 systemd_bootchart_SOURCES = \
4738 src/bootchart/bootchart.c \
4739 src/bootchart/bootchart.h \
4740 src/bootchart/store.c \
4741 src/bootchart/store.h \
4742 src/bootchart/svg.c \
4743 src/bootchart/svg.h
4744
4745 systemd_bootchart_LDADD = \
4746 libsystemd-journal-internal.la \
4747 libsystemd-shared.la
4748
4749 rootlibexec_PROGRAMS += \
4750 systemd-bootchart
4751
4752 dist_pkgsysconf_DATA += \
4753 src/bootchart/bootchart.conf
4754
4755 nodist_systemunit_DATA += \
4756 units/systemd-bootchart.service
4757
4758 EXTRA_DIST += \
4759 units/systemd-bootchart.service.in
4760
4761 CLEANFILES += \
4762 units/systemd-bootchart.service
4763 endif
4764
4765 # ------------------------------------------------------------------------------
4766 if ENABLE_QUOTACHECK
4767 rootlibexec_PROGRAMS += \
4768 systemd-quotacheck
4769
4770 nodist_systemunit_DATA += \
4771 units/systemd-quotacheck.service
4772
4773 systemd_quotacheck_SOURCES = \
4774 src/quotacheck/quotacheck.c
4775
4776 systemd_quotacheck_LDADD = \
4777 libsystemd-shared.la
4778 endif
4779
4780 EXTRA_DIST += \
4781 units/systemd-quotacheck.service.in
4782
4783 nodist_systemunit_DATA += \
4784 units/quotaon.service
4785
4786 # ------------------------------------------------------------------------------
4787 if ENABLE_RANDOMSEED
4788 rootlibexec_PROGRAMS += \
4789 systemd-random-seed
4790
4791 nodist_systemunit_DATA += \
4792 units/systemd-random-seed.service
4793
4794 systemd_random_seed_SOURCES = \
4795 src/random-seed/random-seed.c
4796
4797 systemd_random_seed_LDADD = \
4798 libsystemd-label.la \
4799 libsystemd-shared.la
4800
4801 SYSINIT_TARGET_WANTS += \
4802 systemd-random-seed.service
4803
4804 endif
4805
4806 EXTRA_DIST += \
4807 units/systemd-random-seed.service.in
4808
4809 # ------------------------------------------------------------------------------
4810 if ENABLE_BACKLIGHT
4811 rootlibexec_PROGRAMS += \
4812 systemd-backlight
4813
4814 nodist_systemunit_DATA += \
4815 units/systemd-backlight@.service
4816
4817 systemd_backlight_SOURCES = \
4818 src/backlight/backlight.c
4819
4820 systemd_backlight_LDADD = \
4821 libsystemd-label.la \
4822 libudev-internal.la \
4823 libsystemd-shared.la
4824 endif
4825
4826 EXTRA_DIST += \
4827 units/systemd-backlight@.service.in
4828
4829 # ------------------------------------------------------------------------------
4830 if ENABLE_RFKILL
4831 rootlibexec_PROGRAMS += \
4832 systemd-rfkill
4833
4834 nodist_systemunit_DATA += \
4835 units/systemd-rfkill@.service
4836
4837 systemd_rfkill_SOURCES = \
4838 src/rfkill/rfkill.c
4839
4840 systemd_rfkill_LDADD = \
4841 libsystemd-label.la \
4842 libudev-internal.la \
4843 libsystemd-shared.la
4844 endif
4845
4846 EXTRA_DIST += \
4847 units/systemd-rfkill@.service.in
4848
4849 # ------------------------------------------------------------------------------
4850 if HAVE_LIBCRYPTSETUP
4851 rootlibexec_PROGRAMS += \
4852 systemd-cryptsetup
4853
4854 systemgenerator_PROGRAMS += \
4855 systemd-cryptsetup-generator
4856
4857 dist_systemunit_DATA += \
4858 units/cryptsetup.target \
4859 units/cryptsetup-pre.target
4860
4861 systemd_cryptsetup_SOURCES = \
4862 src/cryptsetup/cryptsetup.c
4863
4864 systemd_cryptsetup_CFLAGS = \
4865 $(AM_CFLAGS) \
4866 $(LIBCRYPTSETUP_CFLAGS)
4867
4868 systemd_cryptsetup_LDADD = \
4869 libsystemd-label.la \
4870 libudev-internal.la \
4871 libsystemd-shared.la \
4872 $(LIBCRYPTSETUP_LIBS)
4873
4874 systemd_cryptsetup_generator_SOURCES = \
4875 src/cryptsetup/cryptsetup-generator.c
4876
4877 systemd_cryptsetup_generator_LDADD = \
4878 libsystemd-label.la \
4879 libsystemd-shared.la
4880
4881 SYSINIT_TARGET_WANTS += \
4882 cryptsetup.target
4883
4884 endif
4885
4886 # ------------------------------------------------------------------------------
4887 if ENABLE_HOSTNAMED
4888 systemd_hostnamed_SOURCES = \
4889 src/hostname/hostnamed.c
4890
4891 systemd_hostnamed_LDADD = \
4892 libsystemd-label.la \
4893 libsystemd-internal.la \
4894 libsystemd-shared.la
4895
4896 rootlibexec_PROGRAMS += \
4897 systemd-hostnamed
4898
4899 nodist_systemunit_DATA += \
4900 units/systemd-hostnamed.service
4901
4902 dist_systemunit_DATA_busnames += \
4903 units/org.freedesktop.hostname1.busname
4904
4905 dist_dbuspolicy_DATA += \
4906 src/hostname/org.freedesktop.hostname1.conf
4907
4908 dist_dbussystemservice_DATA += \
4909 src/hostname/org.freedesktop.hostname1.service
4910
4911 polkitpolicy_files += \
4912 src/hostname/org.freedesktop.hostname1.policy
4913
4914 SYSTEM_UNIT_ALIASES += \
4915 systemd-hostnamed.service dbus-org.freedesktop.hostname1.service
4916
4917 BUSNAMES_TARGET_WANTS += \
4918 org.freedesktop.hostname1.busname
4919
4920 hostnamectl_SOURCES = \
4921 src/hostname/hostnamectl.c
4922
4923 hostnamectl_LDADD = \
4924 libsystemd-internal.la \
4925 libsystemd-shared.la
4926
4927 bin_PROGRAMS += \
4928 hostnamectl
4929
4930 dist_bashcompletion_DATA += \
4931 shell-completion/bash/hostnamectl
4932
4933 dist_zshcompletion_DATA += \
4934 shell-completion/zsh/_hostnamectl
4935
4936 endif
4937
4938 polkitpolicy_in_files += \
4939 src/hostname/org.freedesktop.hostname1.policy.in
4940
4941 EXTRA_DIST += \
4942 units/systemd-hostnamed.service.in
4943
4944 # ------------------------------------------------------------------------------
4945 dist_systemunit_DATA_busnames += \
4946 units/org.freedesktop.systemd1.busname
4947
4948 BUSNAMES_TARGET_WANTS += \
4949 org.freedesktop.systemd1.busname
4950
4951 # ------------------------------------------------------------------------------
4952 if ENABLE_LOCALED
4953 systemd_localed_SOURCES = \
4954 src/locale/localed.c
4955
4956 systemd_localed_LDADD = \
4957 libsystemd-label.la \
4958 libsystemd-internal.la \
4959 libsystemd-shared.la \
4960 $(XKBCOMMON_LIBS)
4961
4962 systemd_localed_CFLAGS = \
4963 $(AM_CFLAGS) \
4964 $(XKBCOMMON_CFLAGS)
4965
4966 nodist_systemunit_DATA += \
4967 units/systemd-localed.service
4968
4969 dist_systemunit_DATA_busnames += \
4970 units/org.freedesktop.locale1.busname
4971
4972 rootlibexec_PROGRAMS += \
4973 systemd-localed
4974
4975 dist_dbuspolicy_DATA += \
4976 src/locale/org.freedesktop.locale1.conf
4977
4978 dist_dbussystemservice_DATA += \
4979 src/locale/org.freedesktop.locale1.service
4980
4981 polkitpolicy_files += \
4982 src/locale/org.freedesktop.locale1.policy
4983
4984 SYSTEM_UNIT_ALIASES += \
4985 systemd-localed.service dbus-org.freedesktop.locale1.service
4986
4987 BUSNAMES_TARGET_WANTS += \
4988 org.freedesktop.locale1.busname
4989
4990 dist_pkgdata_DATA += \
4991 src/locale/kbd-model-map
4992
4993 dist_noinst_SCRIPT = \
4994 src/locale/generate-kbd-model-map
4995
4996 localectl_SOURCES = \
4997 src/locale/localectl.c
4998
4999 localectl_LDADD = \
5000 libsystemd-internal.la \
5001 libsystemd-shared.la
5002
5003 bin_PROGRAMS += \
5004 localectl
5005
5006 dist_bashcompletion_DATA += \
5007 shell-completion/bash/localectl
5008
5009 dist_zshcompletion_DATA += \
5010 shell-completion/zsh/_localectl
5011
5012 endif
5013
5014 .PHONY: update-kbd-model-map
5015
5016 polkitpolicy_in_files += \
5017 src/locale/org.freedesktop.locale1.policy.in
5018
5019 EXTRA_DIST += \
5020 units/systemd-localed.service.in
5021
5022 # ------------------------------------------------------------------------------
5023 if ENABLE_TIMEDATED
5024 systemd_timedated_SOURCES = \
5025 src/timedate/timedated.c
5026
5027 systemd_timedated_LDADD = \
5028 libsystemd-label.la \
5029 libsystemd-internal.la \
5030 libsystemd-shared.la
5031
5032 rootlibexec_PROGRAMS += \
5033 systemd-timedated
5034
5035 dist_dbussystemservice_DATA += \
5036 src/timedate/org.freedesktop.timedate1.service
5037
5038 dist_dbuspolicy_DATA += \
5039 src/timedate/org.freedesktop.timedate1.conf
5040
5041 nodist_systemunit_DATA += \
5042 units/systemd-timedated.service
5043
5044 dist_systemunit_DATA_busnames += \
5045 units/org.freedesktop.timedate1.busname
5046
5047 polkitpolicy_files += \
5048 src/timedate/org.freedesktop.timedate1.policy
5049
5050 SYSTEM_UNIT_ALIASES += \
5051 systemd-timedated.service dbus-org.freedesktop.timedate1.service
5052
5053 BUSNAMES_TARGET_WANTS += \
5054 org.freedesktop.timedate1.busname
5055
5056 timedatectl_SOURCES = \
5057 src/timedate/timedatectl.c
5058
5059 timedatectl_LDADD = \
5060 libsystemd-internal.la \
5061 libsystemd-shared.la
5062
5063 bin_PROGRAMS += \
5064 timedatectl
5065
5066 dist_bashcompletion_DATA += \
5067 shell-completion/bash/timedatectl
5068
5069 dist_zshcompletion_DATA += \
5070 shell-completion/zsh/_timedatectl
5071 endif
5072
5073 polkitpolicy_in_files += \
5074 src/timedate/org.freedesktop.timedate1.policy.in
5075
5076 EXTRA_DIST += \
5077 units/systemd-timedated.service.in
5078
5079 # ------------------------------------------------------------------------------
5080 if ENABLE_TIMESYNCD
5081 systemd_timesyncd_SOURCES = \
5082 src/timesync/timesyncd.c \
5083 src/timesync/timesyncd-manager.c \
5084 src/timesync/timesyncd-manager.h \
5085 src/timesync/timesyncd-conf.c \
5086 src/timesync/timesyncd-conf.h \
5087 src/timesync/timesyncd-server.c \
5088 src/timesync/timesyncd-server.h
5089
5090 nodist_systemd_timesyncd_SOURCES = \
5091 src/timesync/timesyncd-gperf.c
5092
5093 EXTRA_DIST += \
5094 src/timesync/timesyncd-gperf.gperf
5095
5096 CLEANFILES += \
5097 src/timesync/timesyncd-gperf.c
5098
5099 systemd_timesyncd_LDADD = \
5100 libsystemd-resolve.la \
5101 libsystemd-network.la \
5102 libsystemd-label.la \
5103 libsystemd-internal.la \
5104 libsystemd-shared.la
5105
5106 rootlibexec_PROGRAMS += \
5107 systemd-timesyncd
5108
5109 nodist_systemunit_DATA += \
5110 units/systemd-timesyncd.service
5111
5112 GENERAL_ALIASES += \
5113 $(systemunitdir)/systemd-timesyncd.service $(pkgsysconfdir)/system/sysinit.target.wants/systemd-timesyncd.service
5114
5115 EXTRA_DIST += \
5116 units/systemd-timesyncd.service.in
5117
5118 nodist_pkgsysconf_DATA += \
5119 src/timesync/timesyncd.conf
5120
5121 EXTRA_DIST += \
5122 src/timesync/timesyncd.conf.in
5123
5124 CLEANFILES += \
5125 src/timesync/timesyncd.conf
5126 endif
5127
5128 # ------------------------------------------------------------------------------
5129 if HAVE_MYHOSTNAME
5130 libnss_myhostname_la_SOURCES = \
5131 src/nss-myhostname/nss-myhostname.sym \
5132 src/nss-myhostname/nss-myhostname.c
5133
5134 libnss_myhostname_la_LDFLAGS = \
5135 $(AM_LDFLAGS) \
5136 -module \
5137 -export-dynamic \
5138 -avoid-version \
5139 -shared \
5140 -shrext .so.2 \
5141 -Wl,--version-script=$(top_srcdir)/src/nss-myhostname/nss-myhostname.sym
5142
5143 libnss_myhostname_la_LIBADD = \
5144 libsystemd-shared.la \
5145 libsystemd-internal.la
5146
5147 lib_LTLIBRARIES += \
5148 libnss_myhostname.la
5149 endif
5150
5151 # ------------------------------------------------------------------------------
5152 if ENABLE_MACHINED
5153 systemd_machined_SOURCES = \
5154 src/machine/machined.c \
5155 src/machine/machined.h
5156
5157 systemd_machined_LDADD = \
5158 libsystemd-machine-core.la
5159
5160 rootlibexec_PROGRAMS += \
5161 systemd-machined
5162
5163 libsystemd_machine_core_la_SOURCES = \
5164 src/machine/machine.c \
5165 src/machine/machine.h \
5166 src/machine/machined-dbus.c \
5167 src/machine/machine-dbus.c \
5168 src/machine/machine-dbus.h \
5169 src/machine/image-dbus.c \
5170 src/machine/image-dbus.h
5171
5172 libsystemd_machine_core_la_LIBADD = \
5173 libsystemd-label.la \
5174 libsystemd-internal.la \
5175 libudev-internal.la \
5176 libsystemd-shared.la
5177
5178 noinst_LTLIBRARIES += \
5179 libsystemd-machine-core.la
5180
5181 machinectl_SOURCES = \
5182 src/machine/machinectl.c
5183
5184 machinectl_LDADD = \
5185 libsystemd-internal.la \
5186 libsystemd-logs.la \
5187 libsystemd-journal-internal.la \
5188 libsystemd-shared.la
5189
5190 rootbin_PROGRAMS += \
5191 machinectl
5192
5193 dist_bashcompletion_DATA += \
5194 shell-completion/bash/machinectl
5195
5196 test_machine_tables_SOURCES = \
5197 src/machine/test-machine-tables.c
5198
5199 test_machine_tables_LDADD = \
5200 libsystemd-machine-core.la
5201
5202 tests += \
5203 test-machine-tables
5204
5205 nodist_systemunit_DATA += \
5206 units/systemd-machined.service
5207
5208 dist_systemunit_DATA += \
5209 units/machine.slice
5210
5211 dist_systemunit_DATA_busnames += \
5212 units/org.freedesktop.machine1.busname
5213
5214 dist_dbussystemservice_DATA += \
5215 src/machine/org.freedesktop.machine1.service
5216
5217 dist_dbuspolicy_DATA += \
5218 src/machine/org.freedesktop.machine1.conf
5219
5220 polkitpolicy_files += \
5221 src/machine/org.freedesktop.machine1.policy
5222
5223 polkitpolicy_in_files += \
5224 src/machine/org.freedesktop.machine1.policy.in
5225
5226 dist_zshcompletion_DATA += \
5227 shell-completion/zsh/_machinectl \
5228 shell-completion/zsh/_sd_machines
5229
5230 SYSTEM_UNIT_ALIASES += \
5231 systemd-machined.service dbus-org.freedesktop.machine1.service
5232
5233 BUSNAMES_TARGET_WANTS += \
5234 org.freedesktop.machine1.busname
5235
5236 EXTRA_DIST += \
5237 units/systemd-machined.service.in
5238
5239 libnss_mymachines_la_SOURCES = \
5240 src/nss-mymachines/nss-mymachines.sym \
5241 src/nss-mymachines/nss-mymachines.c
5242
5243 libnss_mymachines_la_LDFLAGS = \
5244 $(AM_LDFLAGS) \
5245 -module \
5246 -export-dynamic \
5247 -avoid-version \
5248 -shared \
5249 -shrext .so.2 \
5250 -Wl,--version-script=$(top_srcdir)/src/nss-mymachines/nss-mymachines.sym
5251
5252 libnss_mymachines_la_LIBADD = \
5253 libsystemd-shared.la \
5254 libsystemd-internal.la
5255
5256 lib_LTLIBRARIES += \
5257 libnss_mymachines.la
5258
5259 endif
5260
5261 # ------------------------------------------------------------------------------
5262 if ENABLE_IMPORTD
5263
5264 if HAVE_LIBCURL
5265 if HAVE_XZ
5266 if HAVE_ZLIB
5267 if HAVE_BZIP2
5268 if HAVE_GCRYPT
5269
5270 rootlibexec_PROGRAMS += \
5271 systemd-importd \
5272 systemd-pull
5273
5274 systemd_importd_SOURCES = \
5275 src/import/importd.c
5276
5277 systemd_importd_CFLAGS = \
5278 $(AM_CFLAGS) \
5279 -D SYSTEMD_PULL_PATH=\"$(rootlibexecdir)/systemd-pull\"
5280
5281 systemd_importd_LDADD = \
5282 libsystemd-internal.la \
5283 libsystemd-label.la \
5284 libsystemd-shared.la
5285
5286 systemd_pull_SOURCES = \
5287 src/import/pull.c \
5288 src/import/import-raw.c \
5289 src/import/import-raw.h \
5290 src/import/import-tar.c \
5291 src/import/import-tar.h \
5292 src/import/import-dkr.c \
5293 src/import/import-dkr.h \
5294 src/import/import-job.c \
5295 src/import/import-job.h \
5296 src/import/import-common.c \
5297 src/import/import-common.h \
5298 src/import/curl-util.c \
5299 src/import/curl-util.h \
5300 src/import/aufs-util.c \
5301 src/import/aufs-util.h \
5302 src/import/qcow2-util.c \
5303 src/import/qcow2-util.h
5304
5305 systemd_pull_CFLAGS = \
5306 $(AM_CFLAGS) \
5307 $(LIBCURL_CFLAGS) \
5308 $(XZ_CFLAGS) \
5309 $(ZLIB_CFLAGS) \
5310 $(GCRYPT_CFLAGS) \
5311 -D VENDOR_KEYRING_PATH=\"$(rootlibexecdir)/import-pubring.gpg\" \
5312 -D USER_KEYRING_PATH=\"$(pkgsysconfdir)/import-pubring.gpg\"
5313
5314 systemd_pull_LDADD = \
5315 libsystemd-internal.la \
5316 libsystemd-label.la \
5317 libsystemd-shared.la \
5318 $(LIBCURL_LIBS) \
5319 $(XZ_LIBS) \
5320 $(ZLIB_LIBS) \
5321 -lbz2 \
5322 $(GCRYPT_LIBS)
5323
5324 dist_rootlibexec_DATA = \
5325 src/import/import-pubring.gpg
5326
5327 nodist_systemunit_DATA += \
5328 units/systemd-importd.service
5329
5330 EXTRA_DIST += \
5331 units/systemd-importd.service.in
5332
5333 dist_systemunit_DATA_busnames += \
5334 units/org.freedesktop.import1.busname
5335
5336 BUSNAMES_TARGET_WANTS += \
5337 org.freedesktop.import1.busname
5338
5339 SYSTEM_UNIT_ALIASES += \
5340 systemd-importd.service dbus-org.freedesktop.import1.service
5341
5342 dist_dbussystemservice_DATA += \
5343 src/import/org.freedesktop.import1.service
5344
5345 dist_dbuspolicy_DATA += \
5346 src/import/org.freedesktop.import1.conf
5347
5348 polkitpolicy_files += \
5349 src/import/org.freedesktop.import1.policy
5350
5351 polkitpolicy_in_files += \
5352 src/import/org.freedesktop.import1.policy.in
5353
5354 manual_tests += \
5355 test-qcow2
5356
5357 test_qcow2_SOURCES = \
5358 src/import/test-qcow2.c \
5359 src/import/qcow2-util.c \
5360 src/import/qcow2-util.h
5361
5362 test_qcow2_CFLAGS = \
5363 $(AM_CFLAGS) \
5364 $(ZLIB_CFLAGS)
5365
5366 test_qcow2_LDADD = \
5367 libsystemd-internal.la \
5368 libsystemd-label.la \
5369 libsystemd-shared.la \
5370 $(ZLIB_LIBS)
5371
5372 endif
5373 endif
5374 endif
5375 endif
5376 endif
5377
5378 endif
5379
5380 # ------------------------------------------------------------------------------
5381 if ENABLE_RESOLVED
5382 systemd_resolved_SOURCES = \
5383 src/resolve/resolved.c \
5384 src/resolve/resolved-manager.c \
5385 src/resolve/resolved-manager.h \
5386 src/resolve/resolved-conf.c \
5387 src/resolve/resolved-conf.h \
5388 src/resolve/resolved-bus.c \
5389 src/resolve/resolved-bus.h \
5390 src/resolve/resolved-link.h \
5391 src/resolve/resolved-link.c \
5392 src/resolve/resolved-def.h \
5393 src/resolve/resolved-dns-domain.h \
5394 src/resolve/resolved-dns-domain.c \
5395 src/resolve/resolved-dns-rr.h \
5396 src/resolve/resolved-dns-rr.c \
5397 src/resolve/resolved-dns-question.h \
5398 src/resolve/resolved-dns-question.c \
5399 src/resolve/resolved-dns-answer.h \
5400 src/resolve/resolved-dns-answer.c \
5401 src/resolve/resolved-dns-packet.h \
5402 src/resolve/resolved-dns-packet.c \
5403 src/resolve/resolved-dns-query.h \
5404 src/resolve/resolved-dns-query.c \
5405 src/resolve/resolved-dns-transaction.h \
5406 src/resolve/resolved-dns-transaction.c \
5407 src/resolve/resolved-dns-scope.h \
5408 src/resolve/resolved-dns-scope.c \
5409 src/resolve/resolved-dns-server.h \
5410 src/resolve/resolved-dns-server.c \
5411 src/resolve/resolved-dns-cache.h \
5412 src/resolve/resolved-dns-cache.c \
5413 src/resolve/resolved-dns-zone.h \
5414 src/resolve/resolved-dns-zone.c \
5415 src/resolve/resolved-dns-stream.h \
5416 src/resolve/resolved-dns-stream.c \
5417 src/resolve/dns-type.c \
5418 src/resolve/dns-type.h \
5419 src/resolve/dns_type-from-name.h \
5420 src/resolve/dns_type-to-name.h
5421
5422 nodist_systemd_resolved_SOURCES = \
5423 src/resolve/resolved-gperf.c
5424
5425 EXTRA_DIST += \
5426 src/resolve/resolved-gperf.gperf \
5427 src/resolve/dns_type-from-name.gperf
5428
5429 CLEANFILES += \
5430 src/resolve/resolved-gperf.c
5431
5432 systemd_resolved_LDADD = \
5433 libsystemd-network.la \
5434 libsystemd-label.la \
5435 libsystemd-internal.la \
5436 libsystemd-shared.la \
5437 $(LIBIDN_LIBS)
5438
5439 rootlibexec_PROGRAMS += \
5440 systemd-resolved
5441
5442 nodist_systemunit_DATA += \
5443 units/systemd-resolved.service
5444
5445 dist_systemunit_DATA_busnames += \
5446 units/org.freedesktop.resolve1.busname
5447
5448 dist_dbuspolicy_DATA += \
5449 src/resolve/org.freedesktop.resolve1.conf
5450
5451 dist_dbussystemservice_DATA += \
5452 src/resolve/org.freedesktop.resolve1.service
5453
5454 EXTRA_DIST += \
5455 units/systemd-resolved.service.in
5456
5457 SYSTEM_UNIT_ALIASES += \
5458 systemd-resolved.service dbus-org.freedesktop.resolve1.service
5459
5460 BUSNAMES_TARGET_WANTS += \
5461 org.freedesktop.resolve1.busname
5462
5463 GENERAL_ALIASES += \
5464 $(systemunitdir)/systemd-resolved.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-resolved.service
5465
5466 nodist_pkgsysconf_DATA += \
5467 src/resolve/resolved.conf
5468
5469 EXTRA_DIST += \
5470 src/resolve/resolved.conf.in
5471
5472 CLEANFILES += \
5473 src/resolve/resolved.conf
5474
5475 tests += \
5476 test-dns-domain
5477
5478 test_dns_domain_SOURCES = \
5479 src/resolve/resolved-dns-domain.h \
5480 src/resolve/resolved-dns-domain.c \
5481 src/resolve/test-dns-domain.c
5482
5483 test_dns_domain_LDADD = \
5484 libsystemd-network.la \
5485 libsystemd-label.la \
5486 libsystemd-internal.la \
5487 libsystemd-shared.la \
5488 $(LIBIDN_LIBS)
5489
5490 libnss_resolve_la_SOURCES = \
5491 src/nss-resolve/nss-resolve.sym \
5492 src/nss-resolve/nss-resolve.c
5493
5494 libnss_resolve_la_LDFLAGS = \
5495 $(AM_LDFLAGS) \
5496 -module \
5497 -export-dynamic \
5498 -avoid-version \
5499 -shared \
5500 -shrext .so.2 \
5501 -Wl,--version-script=$(top_srcdir)/src/nss-resolve/nss-resolve.sym
5502
5503 libnss_resolve_la_LIBADD = \
5504 libsystemd-internal.la \
5505 libsystemd-shared.la
5506
5507 lib_LTLIBRARIES += \
5508 libnss_resolve.la
5509
5510 systemd_resolve_host_SOURCES = \
5511 src/resolve-host/resolve-host.c \
5512 src/resolve/resolved-dns-packet.c \
5513 src/resolve/resolved-dns-packet.h \
5514 src/resolve/resolved-dns-rr.c \
5515 src/resolve/resolved-dns-rr.h \
5516 src/resolve/resolved-dns-answer.c \
5517 src/resolve/resolved-dns-answer.h \
5518 src/resolve/resolved-dns-question.c \
5519 src/resolve/resolved-dns-question.h \
5520 src/resolve/resolved-dns-domain.c \
5521 src/resolve/resolved-dns-domain.h \
5522 src/resolve/dns-type.c \
5523 src/resolve/dns-type.h \
5524 src/resolve/dns_type-from-name.h \
5525 src/resolve/dns_type-to-name.h
5526
5527 systemd_resolve_host_LDADD = \
5528 libsystemd-internal.la \
5529 libsystemd-shared.la \
5530 $(LIBIDN_LIBS)
5531
5532 rootlibexec_PROGRAMS += \
5533 systemd-resolve-host
5534
5535 endif
5536
5537 # ------------------------------------------------------------------------------
5538 if ENABLE_NETWORKD
5539 rootlibexec_PROGRAMS += \
5540 systemd-networkd
5541
5542 systemd_networkd_SOURCES = \
5543 src/network/networkd.c
5544
5545 systemd_networkd_LDADD = \
5546 libsystemd-networkd-core.la
5547
5548 if HAVE_LIBIPTC
5549 systemd_networkd_LDADD += \
5550 libsystemd-fw.la
5551 endif
5552
5553 noinst_LTLIBRARIES += \
5554 libsystemd-networkd-core.la
5555
5556 libsystemd_networkd_core_la_CFLAGS = \
5557 $(AM_CFLAGS)
5558
5559 libsystemd_networkd_core_la_SOURCES = \
5560 src/libsystemd-network/network-internal.h \
5561 src/network/networkd.h \
5562 src/network/networkd-link.h \
5563 src/network/networkd-netdev.h \
5564 src/network/networkd-netdev-tunnel.h \
5565 src/network/networkd-netdev-veth.h \
5566 src/network/networkd-netdev-vxlan.h \
5567 src/network/networkd-netdev-vlan.h \
5568 src/network/networkd-netdev-macvlan.h \
5569 src/network/networkd-netdev-ipvlan.h \
5570 src/network/networkd-netdev-dummy.h \
5571 src/network/networkd-netdev-tuntap.h \
5572 src/network/networkd-netdev-bond.h \
5573 src/network/networkd-netdev-bridge.h \
5574 src/network/networkd-netdev.c \
5575 src/network/networkd-netdev-tunnel.c \
5576 src/network/networkd-netdev-veth.c \
5577 src/network/networkd-netdev-vxlan.c \
5578 src/network/networkd-netdev-vlan.c \
5579 src/network/networkd-netdev-macvlan.c \
5580 src/network/networkd-netdev-ipvlan.c \
5581 src/network/networkd-netdev-dummy.c \
5582 src/network/networkd-netdev-tuntap.c \
5583 src/network/networkd-netdev-bond.c \
5584 src/network/networkd-netdev-bridge.c \
5585 src/network/networkd-link.c \
5586 src/network/networkd-ipv4ll.c \
5587 src/network/networkd-dhcp4.c \
5588 src/network/networkd-dhcp6.c \
5589 src/network/networkd-network.c \
5590 src/network/networkd-address.c \
5591 src/network/networkd-route.c \
5592 src/network/networkd-manager.c \
5593 src/network/networkd-fdb.c \
5594 src/network/networkd-address-pool.c
5595
5596 nodist_libsystemd_networkd_core_la_SOURCES = \
5597 src/network/networkd-network-gperf.c \
5598 src/network/networkd-netdev-gperf.c
5599
5600 libsystemd_networkd_core_la_LIBADD = \
5601 libudev-internal.la \
5602 libsystemd-internal.la \
5603 libsystemd-network.la \
5604 libsystemd-label.la \
5605 libsystemd-shared.la
5606
5607 rootlibexec_PROGRAMS += \
5608 systemd-networkd-wait-online
5609
5610 systemd_networkd_wait_online_CFLAGS = \
5611 $(AM_CFLAGS)
5612
5613 systemd_networkd_wait_online_SOURCES = \
5614 src/libsystemd-network/network-internal.h \
5615 src/network/networkd-wait-online.h \
5616 src/network/networkd-wait-online-link.h \
5617 src/network/networkd-wait-online.c \
5618 src/network/networkd-wait-online-manager.c \
5619 src/network/networkd-wait-online-link.c
5620
5621 systemd_networkd_wait_online_LDADD = \
5622 libsystemd-network.la \
5623 libudev-internal.la \
5624 libsystemd-internal.la \
5625 libsystemd-shared.la
5626
5627 rootbin_PROGRAMS += \
5628 networkctl
5629
5630 networkctl_SOURCES = \
5631 src/network/networkctl.c
5632
5633 networkctl_LDADD = \
5634 libsystemd-internal.la \
5635 libudev-internal.la \
5636 libsystemd-shared.la \
5637 libsystemd-network.la
5638
5639 test_network_SOURCES = \
5640 src/network/test-network.c
5641
5642 test_network_LDADD = \
5643 libsystemd-networkd-core.la
5644
5645 if HAVE_LIBIPTC
5646 test_network_LDADD += \
5647 libsystemd-fw.la
5648 endif
5649
5650 test_network_tables_SOURCES = \
5651 src/network/test-network-tables.c \
5652 src/shared/test-tables.h
5653
5654 test_network_tables_LDADD = \
5655 libsystemd-networkd-core.la \
5656 libudev-core.la
5657
5658 if HAVE_LIBIPTC
5659 test_network_tables_LDADD += \
5660 libsystemd-fw.la
5661 endif
5662
5663 tests += \
5664 test-network \
5665 test-network-tables
5666
5667 nodist_systemunit_DATA += \
5668 units/systemd-networkd.service \
5669 units/systemd-networkd-wait-online.service
5670
5671 GENERAL_ALIASES += \
5672 $(systemunitdir)/systemd-networkd.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-networkd.service \
5673 $(systemunitdir)/systemd-networkd-wait-online.service $(pkgsysconfdir)/system/network-online.target.wants/systemd-networkd-wait-online.service
5674
5675 EXTRA_DIST += \
5676 src/network/networkd-network-gperf.gperf \
5677 src/network/networkd-netdev-gperf.gperf \
5678 units/systemd-networkd.service.in \
5679 units/systemd-networkd-wait-online.service.in
5680
5681 CLEANFILES += \
5682 src/network/networkd-network-gperf.c \
5683 src/network/networkd-netdev-gperf.c
5684 endif
5685
5686 # ------------------------------------------------------------------------------
5687 if ENABLE_LOGIND
5688 systemd_logind_SOURCES = \
5689 src/login/logind.c \
5690 src/login/logind.h
5691
5692 nodist_systemd_logind_SOURCES = \
5693 src/login/logind-gperf.c
5694
5695 systemd_logind_LDADD = \
5696 libsystemd-logind-core.la
5697
5698 libsystemd_logind_core_la_SOURCES = \
5699 src/login/logind-core.c \
5700 src/login/logind-device.c \
5701 src/login/logind-device.h \
5702 src/login/logind-button.c \
5703 src/login/logind-button.h \
5704 src/login/logind-action.c \
5705 src/login/logind-action.h \
5706 src/login/logind-seat.c \
5707 src/login/logind-seat.h \
5708 src/login/logind-session.c \
5709 src/login/logind-session.h \
5710 src/login/logind-session-device.c \
5711 src/login/logind-session-device.h \
5712 src/login/logind-user.c \
5713 src/login/logind-user.h \
5714 src/login/logind-inhibit.c \
5715 src/login/logind-inhibit.h \
5716 src/login/logind-dbus.c \
5717 src/login/logind-session-dbus.c \
5718 src/login/logind-seat-dbus.c \
5719 src/login/logind-user-dbus.c \
5720 src/login/logind-acl.h
5721
5722 libsystemd_logind_core_la_LIBADD = \
5723 libsystemd-label.la \
5724 libsystemd-internal.la \
5725 libudev-internal.la \
5726 libsystemd-shared.la
5727
5728 if HAVE_ACL
5729 libsystemd_logind_core_la_SOURCES += \
5730 src/login/logind-acl.c
5731
5732 libsystemd_logind_core_la_LIBADD += \
5733 libsystemd-acl.la
5734 endif
5735
5736 noinst_LTLIBRARIES += \
5737 libsystemd-logind-core.la
5738
5739 systemd_user_sessions_SOURCES = \
5740 src/login/user-sessions.c
5741
5742 systemd_user_sessions_LDADD = \
5743 libsystemd-shared.la
5744
5745 rootlibexec_PROGRAMS += \
5746 systemd-logind \
5747 systemd-user-sessions
5748
5749 loginctl_SOURCES = \
5750 src/login/loginctl.c \
5751 src/login/sysfs-show.h \
5752 src/login/sysfs-show.c
5753
5754 loginctl_LDADD = \
5755 libsystemd-internal.la \
5756 libsystemd-logs.la \
5757 libsystemd-journal-internal.la \
5758 libudev-internal.la \
5759 libsystemd-shared.la
5760
5761 rootbin_PROGRAMS += \
5762 loginctl
5763
5764 dist_bashcompletion_DATA += \
5765 shell-completion/bash/loginctl
5766
5767 dist_zshcompletion_DATA += \
5768 shell-completion/zsh/_loginctl \
5769 shell-completion/zsh/_systemd-inhibit
5770
5771 systemd_inhibit_SOURCES = \
5772 src/login/inhibit.c
5773
5774 systemd_inhibit_LDADD = \
5775 libsystemd-internal.la \
5776 libsystemd-shared.la
5777
5778 rootbin_PROGRAMS += \
5779 systemd-inhibit
5780
5781 test_login_SOURCES = \
5782 src/libsystemd/sd-login/test-login.c
5783
5784 test_login_LDADD = \
5785 libsystemd-internal.la \
5786 libsystemd-shared.la
5787
5788 test_login_shared_SOURCES = \
5789 src/login/test-login-shared.c
5790
5791 test_login_shared_LDADD = \
5792 libsystemd-internal.la \
5793 libsystemd-shared.la
5794
5795 test_inhibit_SOURCES = \
5796 src/login/test-inhibit.c
5797
5798 test_inhibit_LDADD = \
5799 libsystemd-internal.la \
5800 libsystemd-shared.la
5801
5802 test_login_tables_SOURCES = \
5803 src/login/test-login-tables.c
5804
5805 test_login_tables_LDADD = \
5806 libsystemd-logind-core.la
5807
5808 manual_tests += \
5809 test-login \
5810 test-inhibit
5811
5812 tests += \
5813 test-login-tables \
5814 test-login-shared
5815
5816 if HAVE_PAM
5817 pam_systemd_la_SOURCES = \
5818 src/login/pam_systemd.sym \
5819 src/login/pam_systemd.c
5820
5821 pam_systemd_la_CFLAGS = \
5822 $(AM_CFLAGS) \
5823 $(PAM_CFLAGS) \
5824 -fvisibility=hidden
5825
5826 pam_systemd_la_LDFLAGS = \
5827 $(AM_LDFLAGS) \
5828 -module \
5829 -export-dynamic \
5830 -avoid-version \
5831 -shared \
5832 -Wl,--version-script=$(top_srcdir)/src/login/pam_systemd.sym
5833
5834 pam_systemd_la_LIBADD = \
5835 libsystemd-internal.la \
5836 libsystemd-shared.la \
5837 $(PAM_LIBS)
5838
5839 pamlib_LTLIBRARIES = \
5840 pam_systemd.la
5841
5842 dist_pamconf_DATA = \
5843 src/login/systemd-user
5844 endif
5845
5846 nodist_systemunit_DATA += \
5847 units/systemd-logind.service \
5848 units/systemd-user-sessions.service
5849
5850 dist_systemunit_DATA += \
5851 units/user.slice
5852
5853 dist_systemunit_DATA_busnames += \
5854 units/org.freedesktop.login1.busname
5855
5856 dist_dbussystemservice_DATA += \
5857 src/login/org.freedesktop.login1.service
5858
5859 dist_dbuspolicy_DATA += \
5860 src/login/org.freedesktop.login1.conf
5861
5862 dist_pkgsysconf_DATA += \
5863 src/login/logind.conf
5864
5865 polkitpolicy_files += \
5866 src/login/org.freedesktop.login1.policy
5867
5868 INSTALL_DIRS += \
5869 $(systemdstatedir)
5870
5871 MULTI_USER_TARGET_WANTS += \
5872 systemd-logind.service \
5873 systemd-user-sessions.service
5874
5875 SYSTEM_UNIT_ALIASES += \
5876 systemd-logind.service dbus-org.freedesktop.login1.service
5877
5878 BUSNAMES_TARGET_WANTS += \
5879 org.freedesktop.login1.busname
5880
5881 dist_udevrules_DATA += \
5882 src/login/70-uaccess.rules \
5883 src/login/70-power-switch.rules
5884
5885 nodist_udevrules_DATA += \
5886 src/login/71-seat.rules \
5887 src/login/73-seat-late.rules
5888
5889 CLEANFILES += \
5890 src/login/logind-gperf.c \
5891 src/login/71-seat.rules \
5892 src/login/73-seat-late.rules
5893 endif
5894
5895 polkitpolicy_in_files += \
5896 src/login/org.freedesktop.login1.policy.in
5897
5898 EXTRA_DIST += \
5899 src/login/logind-gperf.gperf \
5900 src/login/71-seat.rules.in \
5901 src/login/73-seat-late.rules.in \
5902 units/systemd-logind.service.in \
5903 units/systemd-user-sessions.service.in
5904
5905 # ------------------------------------------------------------------------------
5906 if HAVE_PYTHON_DEVEL
5907 pkgpyexec_LTLIBRARIES = \
5908 _journal.la \
5909 id128.la \
5910 _daemon.la \
5911 _reader.la \
5912 login.la
5913
5914 _journal_la_SOURCES = \
5915 src/python-systemd/_journal.c
5916
5917 _journal_la_CFLAGS = \
5918 $(AM_CFLAGS) \
5919 -fvisibility=default \
5920 $(PYTHON_DEVEL_CFLAGS)
5921
5922 _journal_la_LDFLAGS = \
5923 $(AM_LDFLAGS) \
5924 -shared \
5925 -module \
5926 -avoid-version
5927
5928 _journal_la_LIBADD = \
5929 $(PYTHON_DEVEL_LIBS) \
5930 libsystemd.la
5931
5932 id128_la_SOURCES = \
5933 src/python-systemd/id128.c \
5934 src/python-systemd/pyutil.c \
5935 src/python-systemd/pyutil.h
5936
5937 nodist_id128_la_SOURCES = \
5938 src/python-systemd/id128-constants.h
5939
5940 id128_la_CFLAGS = \
5941 $(AM_CFLAGS) \
5942 -fvisibility=default \
5943 $(PYTHON_DEVEL_CFLAGS) \
5944 -I$(top_builddir)/src/python-systemd
5945
5946 id128_la_LDFLAGS = \
5947 $(AM_LDFLAGS) \
5948 -shared \
5949 -module \
5950 -avoid-version
5951
5952 id128_la_LIBADD = \
5953 $(PYTHON_DEVEL_LIBS) \
5954 libsystemd-shared.la \
5955 libsystemd.la
5956
5957 _daemon_la_SOURCES = \
5958 src/python-systemd/_daemon.c \
5959 src/python-systemd/pyutil.c \
5960 src/python-systemd/pyutil.h
5961
5962 _daemon_la_CFLAGS = \
5963 $(AM_CFLAGS) \
5964 -fvisibility=default \
5965 $(PYTHON_DEVEL_CFLAGS) \
5966 -I$(top_builddir)/src/python-systemd
5967
5968 _daemon_la_LDFLAGS = \
5969 $(AM_LDFLAGS) \
5970 -shared \
5971 -module \
5972 -avoid-version
5973
5974 _daemon_la_LIBADD = \
5975 $(PYTHON_DEVEL_LIBS) \
5976 libsystemd-shared.la \
5977 libsystemd.la
5978
5979 _reader_la_SOURCES = \
5980 src/python-systemd/_reader.c \
5981 src/python-systemd/pyutil.c \
5982 src/python-systemd/pyutil.h
5983
5984 _reader_la_CFLAGS = \
5985 $(AM_CFLAGS) \
5986 -fvisibility=default \
5987 $(PYTHON_DEVEL_CFLAGS)
5988
5989 _reader_la_LDFLAGS = \
5990 $(AM_LDFLAGS) \
5991 -shared \
5992 -module \
5993 -avoid-version
5994
5995 _reader_la_LIBADD = \
5996 $(PYTHON_DEVEL_LIBS) \
5997 libsystemd-shared.la \
5998 libsystemd.la
5999
6000 login_la_SOURCES = \
6001 src/python-systemd/login.c \
6002 src/python-systemd/pyutil.c \
6003 src/python-systemd/pyutil.h
6004
6005 login_la_CFLAGS = \
6006 $(AM_CFLAGS) \
6007 -fvisibility=default \
6008 $(PYTHON_DEVEL_CFLAGS)
6009
6010 login_la_LDFLAGS = \
6011 $(AM_LDFLAGS) \
6012 -shared \
6013 -module \
6014 -avoid-version
6015
6016 login_la_LIBADD = \
6017 $(PYTHON_DEVEL_LIBS) \
6018 libsystemd-shared.la \
6019 libsystemd.la
6020
6021 dist_pkgpyexec_PYTHON = \
6022 src/python-systemd/journal.py \
6023 src/python-systemd/daemon.py \
6024 src/python-systemd/__init__.py
6025
6026 src/python-systemd/id128-constants.h: src/systemd/sd-messages.h
6027 $(AM_V_at)$(MKDIR_P) $(dir $@)
6028 $(AM_V_GEN)$(SED) -n -r 's/,//g; s/#define (SD_MESSAGE_[A-Z0-9_]+)\s.*/add_id(m, "\1", \1) JOINER/p' <$< >$@
6029
6030 BUILT_SOURCES += \
6031 src/python-systemd/id128-constants.h
6032
6033 SPHINXOPTS = -D version=$(VERSION) -D release=$(VERSION)
6034 sphinx-%:
6035 $(AM_V_at)test -n "$(SPHINX_BUILD)" || { echo " *** sphinx-build is not available"; exit 1; }
6036 $(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/
6037 $(AM_V_at)echo Output has been generated in $(abs_top_builddir)/docs/html/python-systemd/
6038
6039 python-shell:
6040 $(AM_V_at)echo "Starting python with $(DESTDIR)$(pyexecdir)"
6041 $(AM_V_at)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(PYTHON)
6042
6043 destdir-sphinx: all
6044 dir="$$(mktemp -d /tmp/systemd-install.XXXXXX)" && \
6045 $(MAKE) DESTDIR="$$dir" install && \
6046 $(MAKE) DESTDIR="$$dir" sphinx-html && \
6047 rm -rf "$$dir"
6048
6049 endif
6050
6051 CLEAN_LOCAL_HOOKS += clean-sphinx
6052
6053 .PHONY: python-shell destdir-sphinx clean-sphinx clean-python
6054
6055 clean-sphinx:
6056 -rm -rf docs/html/python-systemd/
6057
6058 # Remove Python stuff, e.g. to force rebuilding for a different Python version.
6059 clean-python:
6060 -rm -rf src/python-systemd/.libs src/python-systemd/*.l[ao]
6061 -rm -f _daemon.la id128.la _journal.la login.la _reader.la
6062
6063 # ------------------------------------------------------------------------------
6064 if ENABLE_COMPAT_LIBS
6065 EXTRA_DIST += \
6066 src/compat-libs/linkwarning.h
6067
6068 libsystemd-%.c: src/compat-libs/libsystemd-%.sym
6069 $(AM_V_at)$(MKDIR_P) $(dir $@)
6070 $(AM_V_GEN)sed -r -n 's/^ +(sd_.*);/obsolete_lib(\1,$(notdir $(basename $<)));/p' <$< >$@
6071
6072 BUILT_SOURCES += \
6073 libsystemd-journal.c \
6074 libsystemd-login.c \
6075 libsystemd-id128.c \
6076 libsystemd-daemon.c
6077
6078 libsystemd_journal_la_SOURCES = \
6079 libsystemd-journal.c \
6080 src/compat-libs/libsystemd-journal.sym
6081
6082 libsystemd_journal_la_CPPFLAGS = \
6083 $(AM_CFLAGS) \
6084 -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6085
6086 libsystemd_journal_la_LDFLAGS = \
6087 $(AM_LDFLAGS) \
6088 -version-info $(LIBSYSTEMD_JOURNAL_CURRENT):$(LIBSYSTEMD_JOURNAL_REVISION):$(LIBSYSTEMD_JOURNAL_AGE) \
6089 -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-journal.sym
6090
6091 libsystemd_journal_la_LIBADD = \
6092 libsystemd-journal-internal.la \
6093 libsystemd-internal.la \
6094 libsystemd-shared.la
6095
6096 libsystemd_login_la_SOURCES = \
6097 libsystemd-login.c \
6098 src/compat-libs/libsystemd-login.sym
6099
6100 libsystemd_login_la_CPPFLAGS = \
6101 $(AM_CFLAGS) \
6102 -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6103
6104 libsystemd_login_la_LDFLAGS = \
6105 $(AM_LDFLAGS) \
6106 -version-info $(LIBSYSTEMD_LOGIN_CURRENT):$(LIBSYSTEMD_LOGIN_REVISION):$(LIBSYSTEMD_LOGIN_AGE) \
6107 -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-login.sym
6108
6109 libsystemd_login_la_LIBADD = \
6110 libsystemd-internal.la \
6111 libsystemd-shared.la
6112
6113 libsystemd_id128_la_SOURCES = \
6114 libsystemd-id128.c \
6115 src/compat-libs/libsystemd-id128.sym
6116
6117 libsystemd_id128_la_CPPFLAGS = \
6118 $(AM_CFLAGS) \
6119 -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6120
6121 libsystemd_id128_la_LDFLAGS = \
6122 $(AM_LDFLAGS) \
6123 -version-info $(LIBSYSTEMD_ID128_CURRENT):$(LIBSYSTEMD_ID128_REVISION):$(LIBSYSTEMD_ID128_AGE) \
6124 -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-id128.sym
6125
6126 libsystemd_id128_la_LIBADD = \
6127 libsystemd-internal.la \
6128 libsystemd-shared.la
6129
6130 libsystemd_daemon_la_SOURCES = \
6131 libsystemd-daemon.c \
6132 src/compat-libs/libsystemd-daemon.sym
6133
6134 libsystemd_daemon_la_CPPFLAGS = \
6135 $(AM_CFLAGS) \
6136 -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6137
6138 libsystemd_daemon_la_LDFLAGS = \
6139 $(AM_LDFLAGS) \
6140 -version-info $(LIBSYSTEMD_DAEMON_CURRENT):$(LIBSYSTEMD_DAEMON_REVISION):$(LIBSYSTEMD_DAEMON_AGE) \
6141 -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-daemon.sym
6142
6143 libsystemd_daemon_la_LIBADD = \
6144 libsystemd-internal.la \
6145 libsystemd-shared.la
6146
6147 lib_LTLIBRARIES += \
6148 libsystemd-journal.la \
6149 libsystemd-login.la \
6150 libsystemd-id128.la \
6151 libsystemd-daemon.la
6152
6153 pkgconfiglib_DATA += \
6154 src/compat-libs/libsystemd-journal.pc \
6155 src/compat-libs/libsystemd-login.pc \
6156 src/compat-libs/libsystemd-id128.pc \
6157 src/compat-libs/libsystemd-daemon.pc
6158
6159 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
6160 compat-lib-install-hook:
6161 libname=libsystemd-login.so && $(move-to-rootlibdir)
6162 libname=libsystemd-journal.so && $(move-to-rootlibdir)
6163 libname=libsystemd-id128.so && $(move-to-rootlibdir)
6164 libname=libsystemd-daemon.so && $(move-to-rootlibdir)
6165
6166 compat-lib-uninstall-hook:
6167 rm -f $(DESTDIR)$(rootlibdir)/libsystemd-login.so*
6168 rm -f $(DESTDIR)$(rootlibdir)/libsystemd-journal.so*
6169 rm -f $(DESTDIR)$(rootlibdir)/libsystemd-id128.so*
6170 rm -f $(DESTDIR)$(rootlibdir)/libsystemd-daemon.so*
6171
6172 INSTALL_EXEC_HOOKS += compat-lib-install-hook
6173 UNINSTALL_EXEC_HOOKS += compat-lib-uninstall-hook
6174 endif
6175
6176 EXTRA_DIST += \
6177 src/compat-libs/libsystemd-journal.pc.in \
6178 src/compat-libs/libsystemd-login.pc.in \
6179 src/compat-libs/libsystemd-id128.pc.in \
6180 src/compat-libs/libsystemd-daemon.pc.in
6181
6182 # ------------------------------------------------------------------------------
6183 substitutions = \
6184 '|rootlibexecdir=$(rootlibexecdir)|' \
6185 '|rootbindir=$(rootbindir)|' \
6186 '|bindir=$(bindir)|' \
6187 '|SYSTEMCTL=$(rootbindir)/systemctl|' \
6188 '|SYSTEMD_NOTIFY=$(rootbindir)/systemd-notify|' \
6189 '|pkgsysconfdir=$(pkgsysconfdir)|' \
6190 '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
6191 '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
6192 '|pkgdatadir=$(pkgdatadir)|' \
6193 '|systemunitdir=$(systemunitdir)|' \
6194 '|userunitdir=$(userunitdir)|' \
6195 '|systempresetdir=$(systempresetdir)|' \
6196 '|userpresetdir=$(userpresetdir)|' \
6197 '|udevhwdbdir=$(udevhwdbdir)|' \
6198 '|udevrulesdir=$(udevrulesdir)|' \
6199 '|catalogdir=$(catalogdir)|' \
6200 '|tmpfilesdir=$(tmpfilesdir)|' \
6201 '|sysusersdir=$(sysusersdir)|' \
6202 '|sysctldir=$(sysctldir)|' \
6203 '|systemgeneratordir=$(systemgeneratordir)|' \
6204 '|usergeneratordir=$(usergeneratordir)|' \
6205 '|CERTIFICATEROOT=$(CERTIFICATEROOT)|' \
6206 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
6207 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
6208 '|PACKAGE_URL=$(PACKAGE_URL)|' \
6209 '|RANDOM_SEED_DIR=$(localstatedir)/lib/systemd/|' \
6210 '|RANDOM_SEED=$(localstatedir)/lib/systemd/random-seed|' \
6211 '|prefix=$(prefix)|' \
6212 '|exec_prefix=$(exec_prefix)|' \
6213 '|libdir=$(libdir)|' \
6214 '|includedir=$(includedir)|' \
6215 '|VERSION=$(VERSION)|' \
6216 '|rootprefix=$(rootprefix)|' \
6217 '|udevlibexecdir=$(udevlibexecdir)|' \
6218 '|SUSHELL=$(SUSHELL)|' \
6219 '|SULOGIN=$(SULOGIN)|' \
6220 '|DEBUGTTY=$(DEBUGTTY)|' \
6221 '|KILL=$(KILL)|' \
6222 '|KMOD=$(KMOD)|' \
6223 '|MKDIR_P=$(MKDIR_P)|' \
6224 '|QUOTAON=$(QUOTAON)|' \
6225 '|QUOTACHECK=$(QUOTACHECK)|' \
6226 '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
6227 '|VARLOGDIR=$(varlogdir)|' \
6228 '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
6229 '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
6230 '|PYTHON=$(PYTHON)|' \
6231 '|PYTHON_BINARY=$(PYTHON_BINARY)|' \
6232 '|NTP_SERVERS=$(NTP_SERVERS)|' \
6233 '|DNS_SERVERS=$(DNS_SERVERS)|' \
6234 '|systemuidmax=$(SYSTEM_UID_MAX)|' \
6235 '|systemgidmax=$(SYSTEM_GID_MAX)|' \
6236 '|TTY_GID=$(TTY_GID)|' \
6237 '|systemsleepdir=$(systemsleepdir)|' \
6238 '|systemshutdowndir=$(systemshutdowndir)|' \
6239 '|binfmtdir=$(binfmtdir)|' \
6240 '|modulesloaddir=$(modulesloaddir)|'
6241
6242 SED_PROCESS = \
6243 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
6244 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
6245 < $< > $@
6246
6247 units/%: units/%.in
6248 $(SED_PROCESS)
6249
6250 man/%: man/%.in
6251 $(SED_PROCESS)
6252
6253 sysctl.d/%: sysctl.d/%.in
6254 $(SED_PROCESS)
6255
6256 %.pc: %.pc.in
6257 $(SED_PROCESS)
6258
6259 %.conf: %.conf.in
6260 $(SED_PROCESS)
6261
6262 src/core/macros.%: src/core/macros.%.in
6263 $(SED_PROCESS)
6264
6265 src/%.policy.in: src/%.policy.in.in
6266 $(SED_PROCESS)
6267
6268 shell-completion/%: shell-completion/%.in
6269 $(SED_PROCESS)
6270
6271 %.rules: %.rules.in
6272 $(SED_PROCESS)
6273
6274 %.conf: %.conf.in
6275 $(SED_PROCESS)
6276
6277 %.sh: %.sh.in
6278 $(SED_PROCESS)
6279 $(AM_V_GEN)chmod +x $@
6280
6281 src/%.c: src/%.gperf
6282 $(AM_V_at)$(MKDIR_P) $(dir $@)
6283 $(AM_V_GPERF)$(GPERF) < $< > $@
6284
6285 src/%: src/%.m4
6286 $(AM_V_at)$(MKDIR_P) $(dir $@)
6287 $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6288
6289 sysusers.d/%: sysusers.d/%.m4
6290 $(AM_V_at)$(MKDIR_P) $(dir $@)
6291 $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6292
6293 tmpfiles.d/%: tmpfiles.d/%.m4
6294 $(AM_V_at)$(MKDIR_P) $(dir $@)
6295 $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6296
6297
6298 units/%: units/%.m4
6299 $(AM_V_at)$(MKDIR_P) $(dir $@)
6300 $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
6301
6302 units/user/%: units/user/%.m4
6303 $(AM_V_at)$(MKDIR_P) $(dir $@)
6304 $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
6305
6306 if ENABLE_POLKIT
6307 nodist_polkitpolicy_DATA = \
6308 $(polkitpolicy_files) \
6309 $(polkitpolicy_in_in_files:.policy.in.in=.policy)
6310 endif
6311
6312 EXTRA_DIST += \
6313 $(polkitpolicy_in_files) \
6314 $(polkitpolicy_in_in_files)
6315
6316 CLEANFILES += \
6317 $(nodist_systemunit_DATA) \
6318 $(nodist_userunit_DATA) \
6319 $(pkgconfiglib_DATA) \
6320 $(nodist_polkitpolicy_DATA)
6321
6322 # ------------------------------------------------------------------------------
6323 if ENABLE_MANPAGES
6324 man/custom-entities.ent: configure.ac
6325 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
6326 $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
6327 printf '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">\n,$(substitutions))))') \
6328 > $@ # '
6329
6330 DISTCLEANFILES += \
6331 man/custom-entities.ent
6332
6333 XSLTPROC_FLAGS = \
6334 --nonet \
6335 --xinclude \
6336 --stringparam man.output.quietly 1 \
6337 --stringparam funcsynopsis.style ansi \
6338 --stringparam man.authors.section.enabled 0 \
6339 --stringparam man.copyright.section.enabled 0 \
6340 --stringparam systemd.version $(VERSION) \
6341 --path '$(builddir)/man:$(srcdir)/man'
6342
6343 XSLTPROC_PROCESS_MAN = \
6344 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
6345
6346 XSLTPROC_PROCESS_HTML = \
6347 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
6348
6349 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
6350 $(XSLTPROC_PROCESS_MAN)
6351
6352 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
6353 $(XSLTPROC_PROCESS_MAN)
6354
6355 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
6356 $(XSLTPROC_PROCESS_MAN)
6357
6358 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
6359 $(XSLTPROC_PROCESS_MAN)
6360
6361 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
6362 $(XSLTPROC_PROCESS_MAN)
6363
6364 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
6365 $(XSLTPROC_PROCESS_HTML)
6366
6367 define html-alias
6368 $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
6369 endef
6370
6371 endif
6372
6373 EXTRA_DIST += \
6374 man/custom-html.xsl \
6375 man/custom-man.xsl
6376
6377 # ------------------------------------------------------------------------------
6378 if HAVE_SYSV_COMPAT
6379 sysvinit_DATA = \
6380 docs/sysvinit/README
6381
6382 varlog_DATA = \
6383 docs/var-log/README
6384
6385 docs/sysvinit/README: docs/sysvinit/README.in
6386 $(SED_PROCESS)
6387
6388 docs/var-log/README: docs/var-log/README.in
6389 $(SED_PROCESS)
6390
6391 CLEANFILES += \
6392 docs/sysvinit/README \
6393 docs/var-log/README
6394 endif
6395
6396 EXTRA_DIST += \
6397 docs/sysvinit/README.in \
6398 docs/var-log/README.in
6399
6400 SOCKETS_TARGET_WANTS += \
6401 systemd-initctl.socket \
6402 systemd-shutdownd.socket
6403
6404 if HAVE_UTMP
6405 if HAVE_SYSV_COMPAT
6406 RUNLEVEL1_TARGET_WANTS += \
6407 systemd-update-utmp-runlevel.service
6408 RUNLEVEL2_TARGET_WANTS += \
6409 systemd-update-utmp-runlevel.service
6410 RUNLEVEL3_TARGET_WANTS += \
6411 systemd-update-utmp-runlevel.service
6412 RUNLEVEL4_TARGET_WANTS += \
6413 systemd-update-utmp-runlevel.service
6414 RUNLEVEL5_TARGET_WANTS += \
6415 systemd-update-utmp-runlevel.service
6416 endif
6417
6418 SYSINIT_TARGET_WANTS += \
6419 systemd-update-utmp.service
6420 endif
6421
6422 SYSINIT_TARGET_WANTS += \
6423 systemd-update-done.service
6424
6425 LOCAL_FS_TARGET_WANTS += \
6426 systemd-remount-fs.service \
6427 tmp.mount
6428
6429 MULTI_USER_TARGET_WANTS += \
6430 getty.target \
6431 systemd-ask-password-wall.path
6432
6433 SYSINIT_TARGET_WANTS += \
6434 dev-hugepages.mount \
6435 dev-mqueue.mount \
6436 sys-kernel-config.mount \
6437 sys-kernel-debug.mount \
6438 sys-fs-fuse-connections.mount \
6439 systemd-sysctl.service \
6440 systemd-ask-password-console.path
6441
6442 if HAVE_SYSV_COMPAT
6443 SYSTEM_UNIT_ALIASES += \
6444 poweroff.target runlevel0.target \
6445 rescue.target runlevel1.target \
6446 multi-user.target runlevel2.target \
6447 multi-user.target runlevel3.target \
6448 multi-user.target runlevel4.target \
6449 graphical.target runlevel5.target \
6450 reboot.target runlevel6.target
6451 endif
6452
6453 SYSTEM_UNIT_ALIASES += \
6454 graphical.target default.target \
6455 reboot.target ctrl-alt-del.target \
6456 getty@.service autovt@.service
6457
6458 USER_UNIT_ALIASES += \
6459 $(systemunitdir)/shutdown.target shutdown.target \
6460 $(systemunitdir)/sockets.target sockets.target \
6461 $(systemunitdir)/timers.target timers.target \
6462 $(systemunitdir)/paths.target paths.target \
6463 $(systemunitdir)/bluetooth.target bluetooth.target \
6464 $(systemunitdir)/printer.target printer.target \
6465 $(systemunitdir)/sound.target sound.target \
6466 $(systemunitdir)/smartcard.target smartcard.target
6467
6468 if ENABLE_KDBUS
6469 USER_UNIT_ALIASES += \
6470 $(systemunitdir)/busnames.target busnames.target
6471 endif
6472
6473 GENERAL_ALIASES += \
6474 $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \
6475 $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \
6476 $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \
6477 $(dbussystemservicedir)/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service
6478
6479 if HAVE_SYSV_COMPAT
6480 INSTALL_DIRS += \
6481 $(systemunitdir)/runlevel1.target.wants \
6482 $(systemunitdir)/runlevel2.target.wants \
6483 $(systemunitdir)/runlevel3.target.wants \
6484 $(systemunitdir)/runlevel4.target.wants \
6485 $(systemunitdir)/runlevel5.target.wants
6486 endif
6487
6488 INSTALL_DIRS += \
6489 $(prefix)/lib/modules-load.d \
6490 $(sysconfdir)/modules-load.d \
6491 $(prefix)/lib/systemd/network \
6492 $(sysconfdir)/systemd/network \
6493 $(prefix)/lib/sysctl.d \
6494 $(sysconfdir)/sysctl.d \
6495 $(prefix)/lib/kernel/install.d \
6496 $(sysconfdir)/kernel/install.d \
6497 $(systemshutdowndir) \
6498 $(systemsleepdir) \
6499 $(systemgeneratordir) \
6500 $(usergeneratordir) \
6501 \
6502 $(userunitdir) \
6503 $(pkgsysconfdir)/system \
6504 $(pkgsysconfdir)/system/multi-user.target.wants \
6505 $(pkgsysconfdir)/system/getty.target.wants \
6506 $(pkgsysconfdir)/user \
6507 $(dbussessionservicedir) \
6508 $(sysconfdir)/xdg/systemd
6509
6510 install-exec-hook: $(INSTALL_EXEC_HOOKS)
6511
6512 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
6513
6514 install-data-hook: $(INSTALL_DATA_HOOKS)
6515
6516 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
6517
6518 clean-local: $(CLEAN_LOCAL_HOOKS)
6519 rm -rf $(abs_srcdir)/install-tree
6520 rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
6521 $(abs_srcdir)/hwdb/iab.txt
6522
6523 DISTCHECK_CONFIGURE_FLAGS = \
6524 --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
6525 --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
6526 --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
6527 --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
6528 --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
6529 --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
6530 --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
6531 --with-rootprefix=$$dc_install_base \
6532 --disable-split-usr \
6533 --enable-kdbus \
6534 --enable-compat-libs
6535
6536 if HAVE_SYSV_COMPAT
6537 DISTCHECK_CONFIGURE_FLAGS += \
6538 --with-sysvinit-path=$$dc_install_base/$(sysvinitdir) \
6539 --with-sysvrcnd-path=$$dc_install_base/$(sysvrcnddir)
6540 else
6541 DISTCHECK_CONFIGURE_FLAGS += \
6542 --with-sysvinit-path= \
6543 --with-sysvrcnd-path=
6544 endif
6545
6546 if HAVE_PYTHON
6547 DISTCHECK_CONFIGURE_FLAGS += \
6548 --with-python
6549 endif
6550
6551 if ENABLE_GTK_DOC
6552 DISTCHECK_CONFIGURE_FLAGS += \
6553 --enable-gtk-doc
6554 endif
6555
6556 #
6557 # Require python when making dist
6558 #
6559 .PHONY: dist-check-python dist-check-compat-libs dist-check-help
6560 dist-check-python:
6561 if !HAVE_PYTHON
6562 @echo "*** python and python-lxml module must be installed and enabled in order to make dist"
6563 @false
6564 endif
6565
6566 dist-check-compat-libs:
6567 if !ENABLE_COMPAT_LIBS
6568 @echo "*** compat-libs must be enabled in order to make dist"
6569 @false
6570 endif
6571
6572 dist-check-help: $(rootbin_PROGRAMS) $(bin_PROGRAMS)
6573 for i in $(abspath $^); do \
6574 if $$i --help | grep -v 'default:' | grep -E -q '.{80}.' ; then \
6575 echo "$(basename $$i) --help output is too wide:"; \
6576 $$i --help | awk 'length > 80' | grep -E --color=yes '.{80}'; \
6577 exit 1; \
6578 fi; done
6579
6580 dist: dist-check-python dist-check-compat-libs
6581
6582 # check "broken" platforms limited toolchains for link breakage before we release
6583 .PHONY: linkcheck
6584 linkcheck:
6585 $(MAKE) CFLAGS='-fno-lto' LDFLAGS='-Wl,-fuse-ld=gold -Wl,--as-needed -Wl,--no-gc-sections' distcheck
6586
6587 .PHONY: hwdb-update
6588 hwdb-update:
6589 ( cd $(top_srcdir)/hwdb && \
6590 wget -N http://www.linux-usb.org/usb.ids \
6591 http://pci-ids.ucw.cz/v2.2/pci.ids \
6592 http://standards.ieee.org/develop/regauth/oui/oui.txt \
6593 http://standards.ieee.org/develop/regauth/iab/iab.txt && \
6594 ./ids-update.pl )
6595
6596 .PHONY: kdbus-update
6597 kdbus-update:
6598 ( cd $(top_srcdir)/src/libsystemd/sd-bus/ && \
6599 wget -N https://d-bus.googlecode.com/git/kdbus.h )
6600
6601 .PHONY: git-tag
6602 git-tag:
6603 git tag -s "v$(VERSION)" -m "systemd $(VERSION)"
6604
6605 www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd
6606 .PHONY: upload
6607 upload: all check dist
6608 scp systemd-$(VERSION).tar.xz $(www_target)
6609
6610 .PHONY: doc-sync
6611 doc-sync: all destdir-sphinx
6612 gtkdoc-rebase --html-dir=docs/libudev/html --online
6613 rsync -rlv --delete docs/libudev/html/ --omit-dir-times $(www_target)/libudev/
6614 gtkdoc-rebase --html-dir=docs/gudev/html --online
6615 rsync -rlv --delete docs/gudev/html/ --omit-dir-times $(www_target)/gudev/
6616 rsync -rlv --delete-excluded --include="*.html" --exclude="*" --omit-dir-times man/ $(www_target)/man/
6617 rsync -rlv --delete --omit-dir-times docs/html/python-systemd/ $(www_target)/python-systemd/
6618
6619 .PHONY: gardel
6620 gardel: upload
6621 scp man/*.html gardel:public/systemd-man/
6622
6623 .PHONY: lennart-fedora
6624 lennart-fedora:
6625 cp -v systemd-$(VERSION).tar.xz /home/lennart/git.fedora/systemd/
6626
6627 .PHONY: install-tree
6628 install-tree: all
6629 rm -rf $(abs_srcdir)/install-tree
6630 $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
6631 tree $(abs_srcdir)/install-tree
6632
6633 # Let's run all tests of the test suite, but under valgrind. Let's
6634 # exclude the one perl script we have in there
6635 .PHONY: valgrind-tests
6636 valgrind-tests: $(TESTS)
6637 $(AM_V_GEN)for f in $(filter-out %.pl, $^); do \
6638 if file $$f | grep -q shell; then \
6639 echo -e "$${x}Skipping non-binary $$f"; else \
6640 echo -e "$${x}Running $$f"; \
6641 libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \
6642 x="\n\n"; \
6643 done
6644
6645 exported-%: %
6646 $(AM_V_GEN)$(NM) -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
6647
6648 exported: $(addprefix exported-, $(lib_LTLIBRARIES))
6649 $(AM_V_GEN)cat $^ > $@
6650
6651 .PHONY: check-api-docs
6652 check-api-docs: exported man
6653 $(AM_V_GEN)for symbol in `cat exported` ; do \
6654 if test -f $(builddir)/man/$$symbol.html ; then \
6655 echo " Symbol $$symbol() is documented." ; \
6656 else \
6657 echo "‣ Symbol $$symbol() lacks documentation." ; \
6658 fi ; \
6659 done
6660
6661 OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
6662 ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
6663
6664 undefined defined: $(ALL_OBJECTS)
6665 $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
6666 $(NM) -g --$@-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
6667 done | cut -c 20- | cut -d @ -f 1 | sort -u > $@
6668
6669 CLEANFILES += \
6670 defined \
6671 undefined
6672
6673 .PHONY: check-api-unused
6674 check-api-unused: defined undefined exported
6675 ( cat exported undefined ) | sort -u | diff -u - defined | grep ^+ | grep -v ^+++ | cut -c2-
6676
6677 .PHONY: check-includes
6678 check-includes: $(top_srcdir)/tools/check-includes.pl
6679 $(AM_V_GEN) find * -name '*.[hcS]' -type f -print | sort -u \
6680 | xargs $(top_srcdir)/tools/check-includes.pl
6681
6682 EXTRA_DIST += \
6683 $(top_srcdir)/tools/check-includes.pl
6684
6685 # Stupid test that everything purported to be exported really is
6686 define generate-sym-test
6687 $(AM_V_at)$(MKDIR_P) $(dir $@)
6688 $(AM_V_at)printf '#include <stdio.h>\n' > $@
6689 $(AM_V_at)printf '#include "%s"\n' $(notdir $(filter %.h, $^)) >> $@
6690 $(AM_V_at)printf 'void* functions[] = {\n' >> $@
6691 $(AM_V_GEN)sed -r -n 's/^ +([a-zA-Z0-9_]+);/\1,/p' $< >> $@
6692 $(AM_V_at)printf '};\nint main(void) {\n' >> $@
6693 $(AM_V_at)printf 'unsigned i; for (i=0;i<sizeof(functions)/sizeof(void*);i++) printf("%%p\\n", functions[i]);\n' >> $@
6694 $(AM_V_at)printf 'return 0; }\n' >> $@
6695 endef
6696
6697 test-libsystemd-sym.c: \
6698 $(top_builddir)/src/libsystemd/libsystemd.sym \
6699 src/systemd/sd-journal.h \
6700 src/systemd/sd-daemon.h \
6701 src/systemd/sd-login.h \
6702 src/systemd/sd-bus.h \
6703 src/systemd/sd-utf8.h \
6704 src/systemd/sd-resolve.h \
6705 src/systemd/sd-path.h
6706 $(generate-sym-test)
6707
6708 test-libudev-sym.c: \
6709 src/libudev/libudev.sym \
6710 src/udev/udev.h
6711 $(generate-sym-test)
6712
6713 test_libsystemd_sym_SOURCES = \
6714 test-libsystemd-sym.c
6715 test_libsystemd_sym_LDADD = \
6716 libsystemd.la
6717
6718 test_libudev_sym_SOURCES = \
6719 test-libudev-sym.c
6720 test_libudev_sym_CFLAGS = \
6721 $(AM_CFLAGS) \
6722 -Wno-deprecated-declarations
6723 test_libudev_sym_LDADD = \
6724 libudev.la
6725
6726 BUILT_SOURCES += \
6727 $(test_libsystemd_sym_SOURCES) \
6728 $(test_libudev_sym_SOURCES)
6729
6730 tests += \
6731 test-libsystemd-sym \
6732 test-libudev-sym
6733
6734 .PHONY: cppcheck
6735 cppcheck:
6736 cppcheck --enable=all -q $(top_srcdir)
6737
6738 # Used to extract compile flags for YCM.
6739 print-%:
6740 @echo $($*)
6741
6742 git-contrib:
6743 @git shortlog -s `git describe --abbrev=0`.. | cut -c8- | awk '{ print $$0 "," }' | sort -u
6744
6745 EXTRA_DIST += \
6746 tools/gdb-sd_dump_hashmaps.py
6747
6748 list-keys:
6749 gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --list-keys
6750
6751 add-key:
6752 gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --import -